Socket
Book a DemoInstallSign in
Socket

@near-wallet-selector/core

Package Overview
Dependencies
Maintainers
3
Versions
96
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.

9.4.0
latest
Source
npmnpm
Version published
Maintainers
3
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, this package requires near-api-js v1.0.0 or above:

# Using Yarn
pnpm add -w near-api-js

# Using NPM.
npm install near-api-js
# Using Yarn
pnpm add -w @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 { setupMyNearWallet } from "@near-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()],
});

// Example with createAccessKeyFor for limited access keys
const selectorWithLimitedAccess = await setupWalletSelector({
  network: "testnet",
  modules: [setupMyNearWallet()],
  createAccessKeyFor: {
    contractId: "guest-book.testnet",
    methodNames: ["addMessage", "getMessages"]
  },
});

Options

  • network (NetworkId | Network): Network ID or object matching that of your dApp configuration . Network ID can be either mainnet or testnet.
    • 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 to false.
  • 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 the More 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
  • createAccessKeyFor (object?): The contract ID and method names to create a function call access key for. This allows wallets to create limited access keys for specific contract methods.
    • contractId (string): The contract ID to create the access key for.
    • methodNames (Array<string>): Array of method names that the access key will be limited to.
  • 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).

Keywords

near

FAQs

Package last updated on 28 Aug 2025

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

About

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.

  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc

U.S. Patent No. 12,346,443 & 12,314,394. Other pending.