Account
Account =
object
Defined in: packages/indexer_client/src/models/account.ts:30
Account information at a given round.
Definition: data/basics/userBalance.go : AccountData
Properties
Section titled “Properties”address
Section titled “address”address:
string
Defined in: packages/indexer_client/src/models/account.ts:34
the account public key
amount
Section titled “amount”amount:
bigint
Defined in: packages/indexer_client/src/models/account.ts:39
total number of MicroAlgos in the account
amountWithoutPendingRewards
Section titled “amountWithoutPendingRewards”amountWithoutPendingRewards:
bigint
Defined in: packages/indexer_client/src/models/account.ts:51
specifies the amount of MicroAlgos in the account, without the pending rewards.
appsLocalState?
Section titled “appsLocalState?”
optionalappsLocalState:ApplicationLocalState[]
Defined in: packages/indexer_client/src/models/account.ts:58
application local data stored in this account.
Note the raw object uses map[int] -> AppLocalState for this type.
appsTotalExtraPages?
Section titled “appsTotalExtraPages?”
optionalappsTotalExtraPages:number
Defined in: packages/indexer_client/src/models/account.ts:64
the sum of all extra application program pages for this account.
appsTotalSchema?
Section titled “appsTotalSchema?”
optionalappsTotalSchema:ApplicationStateSchema
Defined in: packages/indexer_client/src/models/account.ts:59
assets?
Section titled “assets?”
optionalassets:AssetHolding[]
Defined in: packages/indexer_client/src/models/account.ts:71
assets held by this account.
Note the raw object uses map[int] -> AssetHolding for this type.
authAddr?
Section titled “authAddr?”
optionalauthAddr:Address
Defined in: packages/indexer_client/src/models/account.ts:163
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.
closedAtRound?
Section titled “closedAtRound?”
optionalclosedAtRound:bigint
Defined in: packages/indexer_client/src/models/account.ts:188
Round during which this account was most recently closed.
createdApps?
Section titled “createdApps?”
optionalcreatedApps:Application[]
Defined in: packages/indexer_client/src/models/account.ts:78
parameters of applications created by this account including app global data.
Note: the raw account uses map[int] -> AppParams for this type.
createdAssets?
Section titled “createdAssets?”
optionalcreatedAssets:Asset[]
Defined in: packages/indexer_client/src/models/account.ts:85
parameters of assets created by this account.
Note: the raw account uses map[int] -> Asset for this type.
createdAtRound?
Section titled “createdAtRound?”
optionalcreatedAtRound:bigint
Defined in: packages/indexer_client/src/models/account.ts:183
Round during which this account first appeared in a transaction.
deleted?
Section titled “deleted?”
optionaldeleted:boolean
Defined in: packages/indexer_client/src/models/account.ts:178
Whether or not this account is currently closed.
incentiveEligible?
Section titled “incentiveEligible?”
optionalincentiveEligible:boolean
Defined in: packages/indexer_client/src/models/account.ts:91
can the account receive block incentives if its balance is in range at proposal time.
lastHeartbeat?
Section titled “lastHeartbeat?”
optionallastHeartbeat:bigint
Defined in: packages/indexer_client/src/models/account.ts:173
The round in which this account last went online, or explicitly renewed their online status.
lastProposed?
Section titled “lastProposed?”
optionallastProposed:bigint
Defined in: packages/indexer_client/src/models/account.ts:168
The round in which this account last proposed the block.
minBalance
Section titled “minBalance”minBalance:
bigint
Defined in: packages/indexer_client/src/models/account.ts:46
MicroAlgo balance required by the account.
The requirement grows based on asset and application usage.
participation?
Section titled “participation?”
optionalparticipation:AccountParticipation
Defined in: packages/indexer_client/src/models/account.ts:86
pendingRewards
Section titled “pendingRewards”pendingRewards:
bigint
Defined in: packages/indexer_client/src/models/account.ts:96
amount of MicroAlgos of pending rewards in this account.
rewardBase?
Section titled “rewardBase?”
optionalrewardBase:bigint
Defined in: packages/indexer_client/src/models/account.ts:101
used as part of the rewards computation. Only applicable to accounts which are participating.
rewards
Section titled “rewards”rewards:
bigint
Defined in: packages/indexer_client/src/models/account.ts:106
total rewards of MicroAlgos the account has received, including pending rewards.
round:
bigint
Defined in: packages/indexer_client/src/models/account.ts:111
The round for which this information is relevant.
sigType?
Section titled “sigType?”
optionalsigType:"sig"|"msig"|"lsig"
Defined in: packages/indexer_client/src/models/account.ts:128
the type of signature used by this account, must be one of:
- sig
- msig
- lsig
- or null if unknown
status
Section titled “status”status:
string
Defined in: packages/indexer_client/src/models/account.ts:119
voting status of the account’s MicroAlgos
- Offline - indicates that the associated account is delegated.
- Online - indicates that the associated account used as part of the delegation pool.
- NotParticipating - indicates that the associated account is neither a delegator nor a delegate.
totalAppsOptedIn
Section titled “totalAppsOptedIn”totalAppsOptedIn:
number
Defined in: packages/indexer_client/src/models/account.ts:133
The count of all applications that have been opted in, equivalent to the count of application local data (AppLocalState objects) stored in this account.
totalAssetsOptedIn
Section titled “totalAssetsOptedIn”totalAssetsOptedIn:
number
Defined in: packages/indexer_client/src/models/account.ts:138
The count of all assets that have been opted in, equivalent to the count of AssetHolding objects held by this account.
totalBoxBytes
Section titled “totalBoxBytes”totalBoxBytes:
number
Defined in: packages/indexer_client/src/models/account.ts:143
For app-accounts only. The total number of bytes allocated for the keys and values of boxes which belong to the associated application.
totalBoxes
Section titled “totalBoxes”totalBoxes:
number
Defined in: packages/indexer_client/src/models/account.ts:148
For app-accounts only. The total number of boxes which belong to the associated application.
totalCreatedApps
Section titled “totalCreatedApps”totalCreatedApps:
number
Defined in: packages/indexer_client/src/models/account.ts:153
The count of all apps (AppParams objects) created by this account.
totalCreatedAssets
Section titled “totalCreatedAssets”totalCreatedAssets:
number
Defined in: packages/indexer_client/src/models/account.ts:158
The count of all assets (AssetParams objects) created by this account.