saepenatus
Version:
Web3-Onboard makes it simple to connect Ethereum hardware and software wallets to your dapp. Features standardised spec compliant web3 providers for all supported wallets, framework agnostic modern javascript UI with code splitting, CSS customization, mul
27 lines (26 loc) • 765 B
text/typescript
// Maps a wallet name from the provider to its display name
// Keys are the lower cased name derived from the `is` prop on the provider
// Example: provider.isCoinbaseWallet -> coinbasewallet
export const WALLET_NAMES: { [key: string]: string } = {
alphawallet: 'AlphaWallet',
apexwallet: 'Apex Wallet',
atoken: 'AToken',
binance: 'Binance Chain Wallet',
bitpie: 'Bitpie',
bitski: 'Bitski',
coinbasewallet: 'Coinbase Wallet',
dcentwallet: "D'CENT",
metamask: 'MetaMask',
detected: 'Detected Wallet',
meetone: 'MeetOne',
frame: 'Frame',
bitkeep: 'BitKeep',
sequence: 'Sequence',
core: 'Core',
enkrypt: 'Enkrypt',
trust: 'Trust Wallet',
frontier: 'Frontier',
zerion: 'Zerion',
rainbow: 'Rainbow',
defiwallet: 'DeFi Wallet'
}