@web3-onboard/injected-wallets
Quickstart
To allow all injected wallets that are supported, don't pass in any options:
import Onboard from '@web3-onboard/core'
import injectedModule from '@web3-onboard/injected-wallets'
const MAINNET_RPC_URL = 'https://mainnet.infura.io/v3/<INFURA_KEY>'
const injected = injectedModule()
const onboard = Onboard({
wallets: [injected],
chains: [
{
id: '0x1',
token: 'ETH',
label: 'Ethereum Mainnet',
rpcUrl: MAINNET_RPC_URL
},
{
id: '0x2105',
token: 'ETH',
label: 'Base',
rpcUrl: 'https://mainnet.base.org'
}
],
appMetadata: {
name: 'My App',
icon: '<SVG_ICON_STRING>',
description: 'My app using Onboard'
}
})
const connectedWallets = await onboard.connectWallet()
console.log(connectedWallets)
Injected Wallets Supported Natively
- Metamask - Desktop & Mobile
- Binance - Desktop
- Coinbase - Desktop & Mobile
- Phantom - Desktop & Mobile
- SafePal - Desktop & Mobile
- Zerion - Desktop & Mobile
- OKX Wallet - Desktop & Mobile
- Taho (Previously named Tally Ho wallet) - Desktop
- Trust - Mobile
- 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
- Tokenpocket - Desktop & Mobile
- TP - Mobile
- xDefi - Desktop & 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
- Ronin Wallet - Desktop & Mobile
- Coin98 Wallet - Desktop & Mobile
- SubWallet - Desktop & Mobile
- Kayros - Desktop
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
:
import Onboard from '@web3-onboard/core'
import injectedModule, { ProviderLabel } from '@web3-onboard/injected-wallets'
const MAINNET_RPC_URL = 'https://mainnet.infura.io/v3/<INFURA_KEY>'
const injected = injectedModule({
filter: {
[ProviderLabel.Detected]: false
}
})
const onboard = Onboard({
wallets: [injected]
})
Or you may want to only filter the 'Detected Wallet' on a select few platforms:
import Onboard from '@web3-onboard/core'
import injectedModule, { ProviderLabel } from '@web3-onboard/injected-wallets'
const MAINNET_RPC_URL = 'https://mainnet.infura.io/v3/<INFURA_KEY>'
const injected = injectedModule({
filter: {
[ProviderLabel.Detected]: ['Android', 'desktop']
}
})
const onboard = Onboard({
wallets: [injected]
})
The following platforms can be used to filter wallets:
type Platform =
| 'Windows Phone'
| 'Windows'
| 'macOS'
| 'iOS'
| 'Android'
| 'Linux'
| 'Chrome OS'
| 'Android Browser'
| 'Chrome'
| 'Chromium'
| 'Firefox'
| 'Microsoft Edge'
| 'Opera'
| 'Safari'
| 'desktop'
| 'mobile'
| 'tablet'
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:
const equal = {
label: 'Equal',
injectedNamespace: 'ethereum',
checkProviderIdentity: ({ provider }) =>
!!provider && !!provider[ProviderIdentityFlag.MetaMask],
getIcon: async () => (await import('<PATH_TO_ICON>')).default,
getInterface: () => ({
provider: window.ethereum
}),
platforms: ['desktop'],
externalUrl: 'http://www.CoolEqualWalletDownload.com'
}
const injected = injectedModule({
custom: [equal]
})
const onboard = Onboard({
wallets: [injected]
})
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:
const injected = injectedModule({
displayUnavailable: true,
||
displayUnavailable: [ProviderLabel.MetaMask, ProviderLabel.Trust]
})
This can be set to an array top specify which unavailable injected wallets to show or set to true to display all unavailable injected wallets 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:
const injected = injectedModule({
displayUnavailable: [ProviderLabel.MetaMask, ProviderLabel.Trust],
sort: wallets => {
const metaMask = wallets.find(
({ label }) => label === ProviderLabel.MetaMask
)
const coinbase = wallets.find(
({ label }) => label === ProviderLabel.Coinbase
)
return (
[
metaMask,
coinbase,
...wallets.filter(
({ label }) =>
label !== ProviderLabel.MetaMask && label !== ProviderLabel.Coinbase
)
]
.filter(wallet => wallet)
)
}
})
You may want to display all unavailable injected 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:
const injected = injectedModule({
displayUnavailable: true,
filter: {
[ProviderLabel.Binance]: 'unavailable',
[ProviderLabel.Bitski]: 'unavailable'
},
sort: wallets => {
const metaMask = wallets.find(
({ label }) => label === ProviderLabel.MetaMask
)
const coinbase = wallets.find(
({ label }) => label === ProviderLabel.Coinbase
)
return (
[
metaMask,
coinbase,
...wallets.filter(
({ label }) =>
label !== ProviderLabel.MetaMask && label !== ProviderLabel.Coinbase
)
]
.filter(wallet => wallet)
)
}
})
If a wallet is selected, but is not available the default error message is: Oops ${wallet.label} is unavailable! Please <a href="${wallet.externalUrl}" target="_blank">install</a>
if a download link is available for that wallet. If there isn't a download link for that wallet the default is: Please install or enable ${walletName} to continue
. You may want to customize 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:
const injected = injectedModule({
custom: [
],
displayUnavailable: [ProviderLabel.MetaMask, ProviderLabel.Trust],
filter: {
[ProviderLabel.Binance]: 'unavailable',
[ProviderLabel.Bitski]: 'unavailable'
},
sort: wallets => {
const metaMask = wallets.find(
({ label }) => label === ProviderLabel.MetaMask
)
const coinbase = wallets.find(
({ label }) => label === ProviderLabel.Coinbase
)
return (
[
metaMask,
coinbase,
...wallets.filter(
({ label }) =>
label !== ProviderLabel.MetaMask && label !== ProviderLabel.Coinbase
)
]
.filter(wallet => wallet)
)
},
walletUnavailableMessage: wallet =>
wallet.externalUrl
? `Oops ${wallet.label} is unavailable! Please <a href="${wallet.externalUrl}" target="_blank">install</a>`
: `Oops ${wallet.label} is unavailable!`
})