Accounts
Last updated
Last updated
Given a specific account public key, this call returns the accounts status, balance and spendable amounts
An account public key
[A-Z0-9]{58}
AccountResponse wraps the Account type in a response.
the account public key
[algo] total number of MicroAlgos in the account
specifies the amount of MicroAlgos in the account, without the pending rewards.
[appl] applications local data stored in this account.
Note the raw object uses map[int] -> AppLocalState
for this type.
[teap] the sum of all extra application program pages for this account.
Specifies maximums on the number of each type that may be stored.
[asset] assets held by this account.
Note the raw object uses map[int] -> AssetHolding
for this type.
[spend] the address against which signing should be checked. If empty, the address of the current account is used. This field can be updated in any transaction by setting the RekeyTo field.
[appp] parameters of applications created by this account including app global data.
Note: the raw account uses map[int] -> AppParams
for this type.
[apar] parameters of assets created by this account.
Note: the raw account uses map[int] -> Asset
for this type.
MicroAlgo balance required by the account.
The requirement grows based on asset and application usage.
AccountParticipation describes the parameters used by this account in consensus protocol.
amount of MicroAlgos of pending rewards in this account.
[ebase] used as part of the rewards computation. Only applicable to accounts which are participating.
[ern] total rewards of MicroAlgos the account has received, including pending rewards.
The round for which this information is relevant.
Indicates what type of signature is used by this account, must be one of:
[onl] delegation status of the account's MicroAlgos
The count of all applications that have been opted in, equivalent to the count of application local data (AppLocalState objects) stored in this account.
The count of all assets that have been opted in, equivalent to the count of AssetHolding objects held by this account.
[tbxb] The total number of bytes used by this account's app's box keys and values.
[tbx] The number of existing boxes created by this account's app.
The count of all apps (AppParams objects) created by this account.
The count of all assets (AssetParams objects) created by this account.