@web3-wallet-selector/narwallets
v1.0.2
Published
This is the Narwallets package for NEAR Wallet Selector.
Downloads
4
Readme
@web3-wallet-selector/narwallets
This is the Narwallets package for NEAR Wallet Selector.
Installation and Usage
The easiest way to use this package is to install it from the NPM registry:
# Using Yarn
yarn add @web3-wallet-selector/narwallets
# Using NPM.
npm install @web3-wallet-selector/narwallets
Then use it in your dApp:
import { setupWalletSelector } from "@web3-wallet-selector/core";
import { setupNarwallets } from "@web3-wallet-selector/narwallets";
// Narwallets for Wallet Selector can be setup without any params or it can take few optional params, see options below.
const narwallets = setupNarwallets({
iconUrl: "https://<Wallet Icon URL Here>" // optional
});
const selector = await setupWalletSelector({
network: "testnet",
modules: [narwallets],
});
Options
iconUrl
: (string?
): Image URL for the icon shown in the modal. This can also be a relative path or base64 encoded image. Defaults to./assets/narwallets-logo.png
.deprecated
: (boolean?
): Deprecated is optional. Default isfalse
.
Assets
Assets such as icons can be found in the /assets
directory of the package. Below is an example using Webpack:
import { setupNarwallets } from "@web3-wallet-selector/narwallets";
import narwalletsIconUrl from "@web3-wallet-selector/narwallets/assets/narwallets-icon.png";
const narwallets = setupNarwallets({
iconUrl: narwalletsIconUrl
});
License
This repository is distributed under the terms of both the MIT license and the Apache License (Version 2.0).