This is the core package for Utility Wallet Selector.
The easiest way to use this package is to install it from the NPM registry, this package requires web3-api-js
v1.0.0 or above:
# Using Yarn
yarn add web3-api-js
# Using NPM.
npm install web3-api-js
# Using Yarn
yarn add @web3-wallet-selector/core
# Using NPM.
npm install @web3-wallet-selector/core
Then use it in your dApp:
import { setupWalletSelector } from "@web3-wallet-selector/core";
import { setupMyNearWallet } from "@web3-wallet-selector/my-near-wallet";
// The entire set of options can be found in the section below.
const selector = await setupWalletSelector({
network: "testnet",
modules: [setupMyNearWallet()],
});
-
network
(NetworkId | Network
): Network ID or object matching that of your dApp configuration . Network ID can be eithermainnet
ortestnet
.-
networkId
(string
): Custom network ID (e.g.localnet
). -
nodeUrl
(string
): Custom URL for RPC requests. -
helperUrl
(string
): Custom URL for creating accounts. -
explorerUrl
(string
): Custom URL for the Utility explorer. -
indexerUrl
(string
): Custom URL for the Indexer service.
-
-
debug
(boolean?
): Enable internal logging for debugging purposes. Defaults tofalse
. -
optimizeWalletOrder
(boolean?
): Enable automatic wallet order. Reorders last signed in wallet on top, then installed wallets over not installed and deprecated wallets. -
randomizeWalletOrder
(boolean?
): Randomize wallets order in theMore
section of the UI. -
allowMultipleSelectors
(boolean?
): Optionally allow creating new instances of wallet selector. -
languageCode
(string?
): Optionally set specific ISO 639-1 two-letter language code, disables language detection based on the browser's settings. -
relayerUrl
(string?
): Optionally set the URL that meta-transaction enabled wallet modules can use to submit DelegateActions to a relayer -
storage
(StorageService?
): Async storage implementation. Useful whenlocalStorage
is unavailable. Defaults tolocalStorage
. -
modules
(Array<WalletModuleFactory>
): List of wallets to support in your dApp.
You can find the entire API reference for Wallet Selector here.
This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).