Skip to content

AccountManager

@algorandfoundation/algokit-utils / types/account-manager / AccountManager

types/account-manager.AccountManager

Creates and keeps track of signing accounts that can sign transactions for a sending address.

new AccountManager(clientManager): AccountManager

Create a new account manager.

NameTypeDescription
clientManagerClientManagerThe ClientManager client to use for algod and kmd clients

AccountManager

Example

const accountManager = new AccountManager(clientManager);

src/types/account-manager.ts:60

Private _accounts: Object = {}

▪ [address: string]: TransactionSignerAccount

src/types/account-manager.ts:49


Private _clientManager: ClientManager

src/types/account-manager.ts:47


Private Optional _defaultSigner: TransactionSigner

src/types/account-manager.ts:50


Private _kmdAccountManager: KmdAccountManager

src/types/account-manager.ts:48

get kmd(): KmdAccountManager

KMD account manager that allows you to easily get and create accounts using KMD.

KmdAccountManager

The KmdAccountManager instance.

Example

const kmdManager = accountManager.kmd;

src/types/account-manager.ts:81

_getComposer(getSuggestedParams?): TransactionComposer

NameType
getSuggestedParams?() => Promise<SuggestedParams>

TransactionComposer

src/types/account-manager.ts:65


_getEnsureFundedAmount(sender, minSpendingBalance, minFundingIncrement?): Promise<undefined | AlgoAmount>

NameType
senderAddress
minSpendingBalanceAlgoAmount
minFundingIncrement?AlgoAmount

Promise<undefined | AlgoAmount>

src/types/account-manager.ts:528


dispenserFromEnvironment(): Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

Returns an account (with private key loaded) that can act as a dispenser from environment variables, or against default LocalNet if no environment variables present.

Note: requires a Node.js environment to execute.

If present, it will load the account mnemonic stored in process.env.DISPENSER_MNEMONIC and optionally process.env.DISPENSER_SENDER if it’s a rekeyed account.

Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

The account

Example

const account = await accountManager.dispenserFromEnvironment();

src/types/account-manager.ts:441


ensureFunded(accountToFund, dispenserAccount, minSpendingBalance, options?): Promise<undefined | { confirmation: PendingTransactionResponse ; confirmations: PendingTransactionResponse[] ; groupId: string ; returns?: ABIReturn[] ; transaction: Transaction ; transactions: Transaction[] ; txIds: string[] } & EnsureFundedResult>

Funds a given account using a dispenser account as a funding source such that the given account has a certain amount of Algo free to spend (accounting for Algo locked in minimum balance requirement).

https://dev.algorand.co/concepts/smart-contracts/costs-constraints#mbr

NameTypeDescription
accountToFundstring | AddressThe account to fund
dispenserAccountstring | AddressThe account to use as a dispenser funding source
minSpendingBalanceAlgoAmountThe minimum balance of Algo that the account should have available to spend (i.e. on top of minimum balance requirement)
options?{ minFundingIncrement?: AlgoAmount } & SendParams & Omit<CommonTransactionParams, "sender">Optional parameters to control the funding increment, transaction or execution of the transaction

Promise<undefined | { confirmation: PendingTransactionResponse ; confirmations: PendingTransactionResponse[] ; groupId: string ; returns?: ABIReturn[] ; transaction: Transaction ; transactions: Transaction[] ; txIds: string[] } & EnsureFundedResult>

  • The result of executing the dispensing transaction and the amountFunded if funds were needed.
  • undefined if no funds were needed.

Example

// Basic example
await accountManager.ensureFunded('ACCOUNTADDRESS', 'DISPENSERADDRESS', algokit.algo(1));
// With configuration
await accountManager.ensureFunded('ACCOUNTADDRESS', 'DISPENSERADDRESS', algokit.algo(1), {
minFundingIncrement: algokit.algo(2),
fee: (1000).microAlgo(),
suppressLog: true,
});

src/types/account-manager.ts:561


ensureFundedFromEnvironment(accountToFund, minSpendingBalance, options?): Promise<undefined | { confirmation: PendingTransactionResponse ; confirmations: PendingTransactionResponse[] ; groupId: string ; returns?: ABIReturn[] ; transaction: Transaction ; transactions: Transaction[] ; txIds: string[] } & EnsureFundedResult>

Funds a given account using a dispenser account retrieved from the environment, per the dispenserFromEnvironment method, as a funding source such that the given account has a certain amount of Algo free to spend (accounting for Algo locked in minimum balance requirement).

Note: requires a Node.js environment to execute.

The dispenser account is retrieved from the account mnemonic stored in process.env.DISPENSER_MNEMONIC and optionally process.env.DISPENSER_SENDER if it’s a rekeyed account, or against default LocalNet if no environment variables present.

https://dev.algorand.co/concepts/smart-contracts/costs-constraints#mbr

NameTypeDescription
accountToFundstring | AddressThe account to fund
minSpendingBalanceAlgoAmountThe minimum balance of Algo that the account should have available to spend (i.e. on top of minimum balance requirement)
options?{ minFundingIncrement?: AlgoAmount } & SendParams & Omit<CommonTransactionParams, "sender">Optional parameters to control the funding increment, transaction or execution of the transaction

Promise<undefined | { confirmation: PendingTransactionResponse ; confirmations: PendingTransactionResponse[] ; groupId: string ; returns?: ABIReturn[] ; transaction: Transaction ; transactions: Transaction[] ; txIds: string[] } & EnsureFundedResult>

  • The result of executing the dispensing transaction and the amountFunded if funds were needed.
  • undefined if no funds were needed.

Example

// Basic example
await accountManager.ensureFundedFromEnvironment('ACCOUNTADDRESS', algokit.algo(1));
// With configuration
await accountManager.ensureFundedFromEnvironment('ACCOUNTADDRESS', algokit.algo(1), {
minFundingIncrement: algokit.algo(2),
fee: (1000).microAlgo(),
suppressLog: true,
});

src/types/account-manager.ts:623


ensureFundedFromTestNetDispenserApi(accountToFund, dispenserClient, minSpendingBalance, options?): Promise<undefined | EnsureFundedResult>

Funds a given account using the TestNet Dispenser API as a funding source such that the account has a certain amount of Algo free to spend (accounting for Algo locked in minimum balance requirement).

https://dev.algorand.co/concepts/smart-contracts/costs-constraints#mbr

NameTypeDescription
accountToFundstring | AddressThe account to fund
dispenserClientTestNetDispenserApiClientThe TestNet dispenser funding client
minSpendingBalanceAlgoAmountThe minimum balance of Algo that the account should have available to spend (i.e. on top of minimum balance requirement)
options?ObjectOptional parameters to control the funding increment, transaction or execution of the transaction
options.minFundingIncrement?AlgoAmount-

Promise<undefined | EnsureFundedResult>

  • The result of executing the dispensing transaction and the amountFunded if funds were needed.
  • undefined if no funds were needed.

Example

// Basic example
await accountManager.ensureFundedFromTestNetDispenserApi(
'ACCOUNTADDRESS',
algorand.client.getTestNetDispenserFromEnvironment(),
algokit.algo(1),
);
// With configuration
await accountManager.ensureFundedFromTestNetDispenserApi(
'ACCOUNTADDRESS',
algorand.client.getTestNetDispenserFromEnvironment(),
algokit.algo(1),
{ minFundingIncrement: algokit.algo(2) },
);

src/types/account-manager.ts:679


fromEnvironment(name, fundWith?): Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

Tracks and returns an Algorand account with private key loaded by convention from environment variables based on the given name identifier.

Note: This function expects to run in a Node.js environment.

  • Non-LocalNet: will load process.env[‘{NAME}_MNEMONIC’] as a mnemonic secret; Note: Be careful how the mnemonic is handled, never commit it into source control and ideally load it via a secret storage service rather than the file system. If process.env[‘{NAME}_SENDER’] is defined then it will use that for the sender address (i.e. to support rekeyed accounts)
  • LocalNet: will load the account from a KMD wallet called {NAME} and if that wallet doesn’t exist it will create it and fund the account for you

This allows you to write code that will work seamlessly in production and local development (LocalNet) without manual config locally (including when you reset the LocalNet).

NameTypeDescription
namestringThe name identifier of the account
fundWith?AlgoAmountThe optional amount to fund the account with when it gets created (when targeting LocalNet), if not specified then 1000 ALGO will be funded from the dispenser account

Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

The account

Example

If you have a mnemonic secret loaded into process.env.MY_ACCOUNT_MNEMONIC then you can call the following to get that private key loaded into an account object:

const account = await accountManager.fromEnvironment('MY_ACCOUNT');

If that code runs against LocalNet then a wallet called MY_ACCOUNT will automatically be created with an account that is automatically funded with 1000 (default) ALGO from the default LocalNet dispenser. If not running against LocalNet then it will use proces.env.MY_ACCOUNT_MNEMONIC as the private key and (if present) process.env.MY_ACCOUNT_SENDER as the sender address.

src/types/account-manager.ts:334


fromKmd(name, predicate?, sender?): Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

Tracks and returns an Algorand account with private key loaded from the given KMD wallet (identified by name).

NameTypeDescription
namestringThe name of the wallet to retrieve an account from
predicate?(account: Record<string, any>) => booleanAn optional filter to use to find the account (otherwise it will return a random account from the wallet)
sender?string | AddressThe optional sender address to use this signer for (aka a rekeyed account)

Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

The account

Example

const defaultDispenserAccount = await accountManager.fromKmd(
'unencrypted-default-wallet',
a => a.status !== 'Offline' && a.amount > 1_000_000_000,
);

src/types/account-manager.ts:370


fromMnemonic(mnemonicSecret, sender?): Address & TransactionSignerAccount & { account: SigningAccount }

Tracks and returns an Algorand account with secret key loaded (i.e. that can sign transactions) by taking the mnemonic secret.

NameTypeDescription
mnemonicSecretstringThe mnemonic secret representing the private key of an account; Note: Be careful how the mnemonic is handled, never commit it into source control and ideally load it from the environment (ideally via a secret storage service) rather than the file system.
sender?string | AddressThe optional sender address to use this signer for (aka a rekeyed account)

Address & TransactionSignerAccount & { account: SigningAccount }

The account

Example

const account = accountManager.fromMnemonic('mnemonic secret ...');
const rekeyedAccount = accountManager.fromMnemonic('mnemonic secret ...', 'SENDERADDRESS...');

src/types/account-manager.ts:286


getAccount(sender): TransactionSignerAccount

Returns the TransactionSignerAccount for the given sender address.

If no signer has been registered for that address then an error is thrown.

NameTypeDescription
senderstring | AddressThe sender address

TransactionSignerAccount

The TransactionSignerAccount or throws an error if not found

Example

const sender = accountManager.random();
// ...
// Returns the `TransactionSignerAccount` for `sender` that has previously been registered
const account = accountManager.getAccount(sender);

src/types/account-manager.ts:222


getInformation(sender): Promise<AccountInformation>

Returns the given sender account’s current status, balance and spendable amounts.

Response data schema details

NameTypeDescription
senderstring | AddressThe account / address to look up

Promise<AccountInformation>

The account information

Example

const address = 'XBYLS2E6YI6XXL5BWCAMOA4GTWHXWENZMX5UHXMRNWWUQ7BXCY5WC5TEPA';
const accountInfo = await accountManager.getInformation(address);

src/types/account-manager.ts:241


getSigner(sender): TransactionSigner

Returns the TransactionSigner for the given sender address, ready to sign a transaction for that sender.

If no signer has been registered for that address then the default signer is used if registered and if not then an error is thrown.

NameTypeDescription
senderstring | AddressThe sender address

TransactionSigner

The TransactionSigner or throws an error if not found and no default signer is set

Example

const signer = accountManager.getSigner('SENDERADDRESS');

src/types/account-manager.ts:202


localNetDispenser(): Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

Returns an Algorand account with private key loaded for the default LocalNet dispenser account (that can be used to fund other accounts).

Promise<Address & TransactionSignerAccount & { account: SigningAccount }>

The account

Example

const account = await accountManager.localNetDispenser();

src/types/account-manager.ts:460


logicsig(program, args?): Address & TransactionSignerAccount & { account: LogicSigAccount }

Tracks and returns an account that represents a logic signature.

NameTypeDescription
programUint8ArrayThe bytes that make up the compiled logic signature
args?Uint8Array[]The (binary) arguments to pass into the logic signature

Address & TransactionSignerAccount & { account: LogicSigAccount }

A logic signature account wrapper

Example

const account = accountManager.logicsig(program, [new Uint8Array(3, ...)])

src/types/account-manager.ts:408


multisig(multisigParams, signingAccounts): Address & TransactionSignerAccount & { account: MultisigAccount }

Tracks and returns an account that supports partial or full multisig signing.

NameTypeDescription
multisigParamsMultisigMetadataThe parameters that define the multisig account
signingAccounts(default | SigningAccount)[]The signers that are currently present

Address & TransactionSignerAccount & { account: MultisigAccount }

A multisig account wrapper

Example

const account = accountManager.multisig(
{ version: 1, threshold: 1, addrs: ['ADDRESS1...', 'ADDRESS2...'] },
[(await accountManager.fromEnvironment('ACCOUNT1')).account],
);

src/types/account-manager.ts:393


random(): Address & TransactionSignerAccount & { account: default }

Tracks and returns a new, random Algorand account with secret key loaded.

Address & TransactionSignerAccount & { account: default }

The account

Example

const account = accountManager.random();

src/types/account-manager.ts:421


rekeyAccount(account, rekeyTo, options?): Promise<{ confirmation: PendingTransactionResponse ; confirmations: PendingTransactionResponse[] ; groupId: string ; returns?: ABIReturn[] ; transaction: Transaction ; transactions: Transaction[] ; txIds: string[] }>

Rekey an account to a new address.

Note: Please be careful with this function and be sure to read the official rekey guidance.

NameTypeDescription
accountstring | AddressThe account to rekey
rekeyTostring | Address | TransactionSignerAccountThe account address or signing account of the account that will be used to authorise transactions for the rekeyed account going forward. If a signing account is provided that will now be tracked as the signer for account in this AccountManager
options?Omit<CommonTransactionParams, "sender"> & SendParamsAny parameters to control the transaction or execution of the transaction

Promise<{ confirmation: PendingTransactionResponse ; confirmations: PendingTransactionResponse[] ; groupId: string ; returns?: ABIReturn[] ; transaction: Transaction ; transactions: Transaction[] ; txIds: string[] }>

The result of the transaction and the transaction that was sent

Example

await accountManager.rekeyAccount({ account: 'ACCOUNTADDRESS', rekeyTo: 'NEWADDRESS' });

Example

await accountManager.rekeyAccount({ account: account1, rekeyTo: newSignerAccount });

Example

await accountManager.rekeyAccount({
account: 'ACCOUNTADDRESS',
rekeyTo: 'NEWADDRESS',
lease: 'lease',
note: 'note',
firstValidRound: 1000n,
validityWindow: 10,
extraFee: (1000).microAlgo(),
staticFee: (1000).microAlgo(),
// Max fee doesn't make sense with extraFee AND staticFee
// already specified, but here for completeness
maxFee: (3000).microAlgo(),
maxRoundsToWaitForConfirmation: 5,
suppressLog: true,
});

src/types/account-manager.ts:503


rekeyed(sender, account): Address & TransactionSignerAccount & { account: { addr: Address ; signer: TransactionSigner = account.signer } }

Tracks and returns an Algorand account that is a rekeyed version of the given account to a new sender.

NameTypeDescription
senderstring | AddressThe sender address to use as the new sender
accountTransactionSignerAccountThe account to use as the signer for this new rekeyed account

Address & TransactionSignerAccount & { account: { addr: Address ; signer: TransactionSigner = account.signer } }

The account

Example

const account = accountManager.fromMnemonic('mnemonic secret ...');
const rekeyedAccount = accountManager.rekeyed(account, 'SENDERADDRESS...');

src/types/account-manager.ts:303


setDefaultSigner(signer): AccountManager

Sets the default signer to use if no other signer is specified.

If this isn’t set an a transaction needs signing for a given sender then an error will be thrown from getSigner / getAccount.

NameTypeDescription
signerTransactionSigner | TransactionSignerAccountThe signer to use, either a TransactionSigner or a TransactionSignerAccount

AccountManager

The AccountManager so method calls can be chained

Example

const signer = accountManager.random(); // Can be anything that returns a `algosdk.TransactionSigner` or `TransactionSignerAccount`
accountManager.setDefaultSigner(signer);
// When signing a transaction, if there is no signer registered for the sender then the default signer will be used
const signer = accountManager.getSigner('SENDERADDRESS');

src/types/account-manager.ts:101


setSigner(sender, signer): AccountManager

Tracks the given algosdk.TransactionSigner against the given sender address for later signing.

NameTypeDescription
senderstring | AddressThe sender address to use this signer for
signerTransactionSignerThe algosdk.TransactionSigner to sign transactions with for the given sender

AccountManager

The AccountManager instance for method chaining

Example

const accountManager = new AccountManager(clientManager).setSigner(
'SENDERADDRESS',
transactionSigner,
);

src/types/account-manager.ts:165


setSignerFromAccount(account): AccountManager

Tracks the given account for later signing.

Note: If you are generating accounts via the various methods on AccountManager (like random, fromMnemonic, logicsig, etc.) then they automatically get tracked.

NameTypeDescription
accountMultisigAccount | default | SigningAccount | TransactionSignerAccount | LogicSigAccountThe account to register, which can be a TransactionSignerAccount or a algosdk.Account, algosdk.LogicSigAccount, SigningAccount or MultisigAccount

AccountManager

The AccountManager instance for method chaining

Example

const accountManager = new AccountManager(clientManager)
.setSignerFromAccount(algosdk.generateAccount())
.setSignerFromAccount(new algosdk.LogicSigAccount(program, args))
.setSignerFromAccount(new SigningAccount(mnemonic, sender))
.setSignerFromAccount(
new MultisigAccount({ version: 1, threshold: 1, addrs: ['ADDRESS1...', 'ADDRESS2...'] }, [
account1,
account2,
]),
)
.setSignerFromAccount({ addr: 'SENDERADDRESS', signer: transactionSigner });

src/types/account-manager.ts:149


setSigners(anotherAccountManager, overwriteExisting?): AccountManager

Takes all registered signers from the given AccountManager and adds them to this AccountManager.

This is useful for situations where you have multiple contexts you are building accounts in such as unit tests.

NameTypeDefault valueDescription
anotherAccountManagerAccountManagerundefinedAnother account manager with signers registered
overwriteExistingbooleantrueWhether or not to overwrite any signers that have the same sender address with the ones in the other account manager or not (default: true)

AccountManager

The AccountManager instance for method chaining

Example

accountManager2.setSigners(accountManager1);

src/types/account-manager.ts:182


signerAccount<T>(account): Address & TransactionSignerAccount & { account: T }

Records the given account (that can sign) against the address of the provided account for later retrieval and returns a TransactionSignerAccount along with the original account in an account property.

NameType
Textends MultisigAccount | default | SigningAccount | TransactionSignerAccount | LogicSigAccount
NameType
accountT

Address & TransactionSignerAccount & { account: T }

src/types/account-manager.ts:111