Package Exports
- @near-wallet-selector/core
- @near-wallet-selector/core/index.cjs
- @near-wallet-selector/core/index.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@near-wallet-selector/core) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
@near-wallet-selector/core
This is the core package for NEAR Wallet Selector.
Installation and Usage
The easiest way to use this package is to install it from the NPM registry, this package requires near-api-js
v0.44.2 or above:
# Using Yarn
yarn add near-api-js
# Using NPM.
npm install near-api-js
# Using Yarn
yarn add @near-wallet-selector/core
# Using NPM.
npm install @near-wallet-selector/core
Then use it in your dApp:
import { setupWalletSelector } from "@near-wallet-selector/core";
import { setupNearWallet } from "@near-wallet-selector/near-wallet";
// The entire set of options can be found in the section below.
const selector = await setupWalletSelector({
network: "testnet",
modules: [setupNearWallet()],
});
Options
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 NEAR 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.allowMultipleSelectors
(boolean?
): Optionally allow creating new instances of wallet selector.storage
(StorageService?
): Async storage implementation. Useful whenlocalStorage
is unavailable. Defaults tolocalStorage
.modules
(Array<WalletModuleFactory>
): List of wallets to support in your dApp.
API Reference
You can find the entire API reference for Wallet Selector here.
License
This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).