# @web3-onboard/walletlink

> (DEPRECATED. Use @web3-onboard/coinbase instead) WalletLink SDK wallet module for connecting to Web3-Onboard. Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers

Latest version **2.1.8** (published 2024-06-05) · MIT license · 0 weekly downloads

## Install

```sh
npm install @web3-onboard/walletlink
pnpm add @web3-onboard/walletlink
yarn add @web3-onboard/walletlink
bun add @web3-onboard/walletlink
```

## Health

**Score 35/100 (D)** — status: abandoned.

Positive: has types; esm support; no vulnerabilities.

Warnings: low downloads.

Negative: abandoned.

## Facts

| | |
|---|---|
| Version | 2.1.8 |
| Published | 2024-06-05 |
| First published | 2022-02-21 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 2 |
| Unpacked size | 5.9 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 920 |
| Maintainers | aaronbarnard1, cmeisl |
| Keywords | Ethereum, Web3, EVM, dapp, Multichain, Wallet, Transaction, Provider, Hardware Wallet, Notifications, React, Svelte, Vue, Next, Nuxt, MetaMask, Coinbase, WalletConnect, Ledger, Trezor, Connect Wallet, Ethereum Hooks, Blocknative, Mempool, pending, confirmed, Injected Wallet, Crypto, Crypto Wallet |

## Links

- npm: https://www.npmjs.com/package/@web3-onboard/walletlink
- Repository: https://github.com/blocknative/web3-onboard
- Homepage: https://onboard.blocknative.com
- Issues: https://github.com/blocknative/web3-onboard/issues
- npm.io page: https://npm.io/package/@web3-onboard/walletlink

## Dependencies (2)

- [walletlink](https://npm.io/package/walletlink.md) ^2.5.0
- [@web3-onboard/common](https://npm.io/package/@web3-onboard/common.md) ^2.4.1

## Alternatives

- [mobx-react](https://npm.io/package/mobx-react.md) — 2.8M weekly downloads
- [rc-tree](https://npm.io/package/rc-tree.md) — 2.6M weekly downloads
- [@react-oauth/google](https://npm.io/package/@react-oauth/google.md) — 1.3M weekly downloads
- [@wagmi/connectors](https://npm.io/package/@wagmi/connectors.md) — 877.0K weekly downloads
- [vee-validate](https://npm.io/package/vee-validate.md) — 836.4K weekly downloads

## Recent versions

- 2.1.8 (latest) — 2024-06-05
- 2.1.7-alpha.1 (next) — 2023-05-19
- 2.1.7 — 2023-05-19
- 2.1.6 — 2023-05-11
- 2.1.6-alpha.2 — 2023-05-09
- 2.1.6-alpha.1 — 2023-05-08
- 2.1.5 — 2023-04-07
- 2.1.5-alpha.1 — 2023-04-06
- 2.1.4 — 2023-03-28
- 2.1.4-alpha.1 — 2023-03-24
- 2.1.3 — 2022-09-26
- 2.1.3-alpha.1 — 2022-09-22
- 2.1.2 — 2022-09-06
- 2.1.2-alpha.1 — 2022-09-02
- 2.1.1 — 2022-08-24
- … 20 more at https://npm.io/package/@web3-onboard/walletlink/versions

## README

# @web3-onboard/walletlink

## (Deprecated) Wallet module for connecting WalletLink to web3-onboard
_Use [@web3-onboard/coinbase](../coinbase/README.md)_

### Install

`npm i @web3-onboard/walletlink`

## Options

```typescript
type WalletLinkOptions = {
  darkMode: boolean // default = false
}
```

## Usage

```typescript
import Onboard from '@web3-onboard/core'
import walletLinkModule from '@web3-onboard/walletlink'

// initialize the module with options
const walletLink = walletLinkModule({ darkMode: true })

// can also initialize with no options...
// const walletLink = walletLinkModule()

const onboard = Onboard({
  // ... other Onboard options
  wallets: [
    walletLink
    //... other wallets
  ]
})

const connectedWallets = await onboard.connectWallet()
console.log(connectedWallets)
```

---
_Source: https://npm.io/package/@web3-onboard/walletlink · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
