-
Notifications
You must be signed in to change notification settings - Fork 89
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
439 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -33,6 +33,7 @@ import transactionPreviewModule from '@web3-onboard/transaction-preview' | |
import venlyModule from '@web3-onboard/venly' | ||
import bloctoModule from '@web3-onboard/blocto' | ||
import bitgetModule from '@web3-onboard/bitget' | ||
import metamaskModule from '@web3-onboard/metamask' | ||
import arcanaAuthModule from '@web3-onboard/arcana-auth' | ||
|
||
// Replace with your DApp's Infura ID | ||
|
@@ -117,6 +118,17 @@ const enkrypt = enkryptModule() | |
const mewWallet = mewWalletModule() | ||
const blocto = bloctoModule() | ||
const bitget = bitgetModule() | ||
const metamask = metamaskModule({ | ||
options: { | ||
extensionOnly: false, | ||
i18nOptions: { | ||
enabled: true | ||
}, | ||
dappMetadata: { | ||
name: 'Web3Onboard React Demo' | ||
} | ||
} | ||
}) | ||
|
||
const trezorOptions = { | ||
email: '[email protected]', | ||
|
@@ -158,6 +170,7 @@ export const initWeb3Onboard = init({ | |
autoConnectAllPreviousWallet: true | ||
}, | ||
wallets: [ | ||
metamask, | ||
injected, | ||
ledger, | ||
trezor, | ||
|
Oops, something went wrong.