UNPKG

@near-wallet-selector/core

Version:

This is the core package for NEAR Wallet Selector.

8 lines (7 loc) 386 B
import type { WalletSelector, WalletSelectorParams } from "./wallet-selector.types"; /** * Initiates a wallet selector instance * @param {WalletSelectorParams} params Selector parameters (network, modules...) * @returns {Promise<WalletSelector>} Returns a WalletSelector object */ export declare const setupWalletSelector: (params: WalletSelectorParams) => Promise<WalletSelector>;