New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

@near-wallet-selector/core

Package Overview
Dependencies
Maintainers
6
Versions
80
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@near-wallet-selector/core

This is the core package for NEAR Wallet Selector.

  • 4.1.1
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
12K
decreased by-34.74%
Maintainers
6
Weekly downloads
 
Created
Source

@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:

# 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 either mainnet, testnet or betanet.
    • 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.
  • debug (boolean?): Enable internal logging for debugging purposes. Defaults to false.
  • storage (StorageService?): Async storage implementation. Useful when localStorage is unavailable. Defaults to localStorage.
  • 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).

FAQs

Package last updated on 24 Jun 2022

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc