Class MultiContractKeyStoreAbstract
Constructors
Methods
Abstract
getAccounts
getAccounts(networkId: string): Promise<string[]> Returns Promise<string[]>
Abstract
getContracts
getContracts(networkId: string, accountId: string): Promise<string[]> Parameters
- networkId: string
- accountId: string
Returns Promise<string[]>
Abstract
getKey
getKey( networkId: string, accountId: string, contractId: string,): Promise<KeyPair> Parameters
- networkId: string
- accountId: string
- contractId: string
Returns Promise<KeyPair>
Abstract
getNetworks
getNetworks(): Promise<string[]> Returns Promise<string[]>
Abstract
removeKey
removeKey( networkId: string, accountId: string, contractId: string,): Promise<void> Parameters
- networkId: string
- accountId: string
- contractId: string
Returns Promise<void>
Abstract
setKey
setKey( networkId: string, accountId: string, keyPair: KeyPair, contractId: string,): Promise<void> Parameters
- networkId: string
- accountId: string
- keyPair: KeyPair
- contractId: string
Returns Promise<void>
KeyStores are passed to near!Near via near!NearConfig and are used by the signer!InMemorySigner to sign transactions.
See
connect