Wallets
Injected Wallets
This module lets web3-onboard automatically detect Browser Injected Wallets such as Metamask or Coinbase Wallet. We recommend you install this module to get the most out of your w3o implementation. This module supports EIP-1193 and recognizes many injected wallets natively.
Note: Make sure to install the core module before installing other modules to w3o.
Install
- Yarn
- Npm
Quickstart
To allow all injected wallets that are supported, don't pass in any options:
Filtering Wallets
Injected wallets that you do not want to support can be filtered based on the Platform
the user is on. For example you may not want to support the 'Detected Wallet' that is detected automatically and filter it via all platforms by passing false
:
Or you may want to only filter the 'Detected Wallet' on a select few platforms:
The following platforms can be used to filter wallets:
Adding Custom Injected Wallets
If there is an injected wallet that you would like to support in your app, but is not yet included in this repo, you can add a custom wallet module in the custom
field:
Display Unavailable Wallets
You may want to display injected wallets that are not currently available to the user and you can use the displayUnavailable
option to do that:
This will render every injected wallet as regardless of whether it has been detected in the window, happy days.
Then the issue of the order of wallets displayed becomes apparent when you have 21 injected wallets at the top of the wallets list. To solve this, all injected wallets are sorted alphabetically by default and there is an additional sort
parameter which receives the final list of wallets and then returns the list to be rendered. This allows for example setting MetaMask and Coinbase first and then just the rest alphabetically:
You may want to display all wallets, but filter out specific wallets based on their availability. For example I may want to display all unavailable wallets except when Binance and Bitski wallet is unavailable, then don't show them, but if they are available, then do show them. To do this, the filters value has been extended to have a new value: 'unavailable'
, as in; remove this wallet if it is unavailable, even though displayUnavailable
wallets is set:
If a wallet is selected, but is not available the default error message is: Please install or enable ${walletName} to continue
. You may want to customise that message, so there is the walletUnavailableMessage
parameter which is a function that takes the wallet object that is unavailable and returns a string which is the message to display:
Injected Wallets Supported Natively
- Metamask - Desktop & Mobile
- Binance - Desktop
- Coinbase - Desktop & Mobile
- Phantom - Desktop & Mobile
- Trust - Desktop & Mobile
- SafePal - Desktop & Mobile
- Zerion - Desktop & Mobile
- OKX Wallet - Desktop
- Taho (Previously named Tally Ho wallet) - Desktop
- Opera - Desktop & Mobile
- Status - Mobile
- Alphawallet - Mobile
- Atoken - Mobile
- Bitpie - Mobile
- Blockwallet - Desktop
- Brave - Desktop & Mobile
- D'Cent - Mobile
- Frame - Desktop
- Huobiwallet - Mobile
- Hyperpay - Mobile
- IMtoken - Mobile
- Liquality - Desktop
- Meetone - Mobile
- Mykey - Mobile
- Ownbit - Mobile
- xDefi - Desktop & Mobile
- Tokenpocket - Desktop & Mobile
- TP - Mobile
- 1inch - Mobile
- Tokenary - Mobile
- GameStop - Desktop
- Rabby - Desktop
- MathWallet - Desktop & Mobile
- Gamestop - Desktop
- Bitkeep - Desktop & Mobile
- Sequence - Desktop & Mobile
- Core - Desktop
- Bitski - Desktop & Mobile
- Enkrypt - Desktop & Mobile
- Zeal - Desktop
- Exodus - Desktop & Mobile
- Frontier - Desktop & Mobile
- Rainbow - Desktop & Mobile
- DeFiWallet - Desktop & Mobile
- ApexWallet - Desktop
- BifrostWallet - Desktop & Mobile
- Safeheron - Desktop
- Talisman - Desktop
Build Environments
For build env configurations and setups please see the Build Env section here