Create an instance of AlgorandAccountsStore.
The Algorand client instance.
Private
ALGO_Private
__accountsPrivate
__clientPrivate
__multisigsAdds a new Algorand account to the store.
Rest
...args: [sk: Uint8Array] | [mnemonic: string]Either the secret key (as a Uint8Array) or the mnemonic (as a string) for the account.
Adds a new multi-signature Algorand account to the store.
The addresses of the participants in the multi-signature account.
The minimum number of signatures required to authorize a transaction.
Optional
version: number = 1The version of the multi-signature account.
Creates a new Algorand account.
Creates a new Algorand account with a specified prefix for the address.
The prefix for the address.
Optional
tries: number = 10000The maximum number of attempts to find an available address.
Retrieves the account information for a specified account.
Either the account address (as a string) or the AlgorandAccount object.
Retrieves the Algo balance of a specified address.
The address for which to retrieve the Algo balance.
Retrieves the balance of a specific standard asset for a specified address.
The address for which to retrieve the asset balance.
The token configuration object for the standard asset.
Signs and sends an array of multisig transactions using the specified signers and multisig metadata.
The grouped transactions to sign and send.
The multisig metadata object.
The signers for the multisig account.
Signs and sends an array of transactions using the specified signer address.
The transactions to sign and send.
The address of the signer.
Updates the account details for a specified Algorand account.
The Algorand account to update.
Generated using TypeDoc
Class representing an Algorand accounts store.