Skip to content

Commit 42cbad8

Browse files
feat: add binance-chain-wallet (#595)
* feat: add binance-chain-wallet * fix: run lint * Version bump Co-authored-by: Taylor Dawson <taylorjdawson@gmail.com>
1 parent e23d92f commit 42cbad8

File tree

4 files changed

+52
-1
lines changed

4 files changed

+52
-1
lines changed

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "bnc-onboard",
3-
"version": "1.33.0-0.2.2",
3+
"version": "1.33.0-0.3.2",
44
"description": "Onboard users to web3 by allowing them to select a wallet, get that wallet ready to transact and have access to synced wallet state.",
55
"keywords": [
66
"ethereum",

src/modules/select/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ import { getProviderName } from '../../utilities'
1111
const desktopDefaultWalletNames = [
1212
'detectedwallet',
1313
'metamask',
14+
'binance',
1415
'frame',
1516
'torus',
1617
'opera',
@@ -187,6 +188,8 @@ function getModule(name: string): Promise<{
187188
return import('./wallets/bitpie')
188189
case 'gnosis':
189190
return import('./wallets/gnosis')
191+
case 'binance':
192+
return import('./wallets/binance-chain-wallet')
190193
case 'detectedwallet':
191194
return import('./wallets/detectedwallet')
192195
case 'tp':

0 commit comments

Comments
 (0)