Account information at a given round. Definition: data/basics/userBalance.go : AccountData

Hierarchy

Constructors

Properties

address: string

the account public key

amount: number | bigint

(algo) total number of MicroAlgos in the account

amountWithoutPendingRewards: number | bigint

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.

appsTotalExtraPages?: number | bigint

(teap) the sum of all extra application program pages for this account.

(tsch) stores the sum of all of the local schemas and global schemas in this account. Note: the raw account uses StateSchema for this type.

(asset) assets held by this account. Note the raw object uses map[int] -> AssetHolding for this type.

attribute_map: Record<string, string>
authAddr?: string

(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.

closedAtRound?: number | bigint

Round during which this account was most recently closed.

createdApps?: indexerModels.Application[]

(appp) parameters of applications created by this account including app global data. Note: the raw account uses map[int] -> AppParams for this type.

createdAssets?: indexerModels.Asset[]

(apar) parameters of assets created by this account. Note: the raw account uses map[int] -> Asset for this type.

createdAtRound?: number | bigint

Round during which this account first appeared in a transaction.

deleted?: boolean

Whether or not this account is currently closed.

AccountParticipation describes the parameters used by this account in consensus protocol.

pendingRewards: number | bigint

amount of MicroAlgos of pending rewards in this account.

rewardBase?: number | bigint

(ebase) used as part of the rewards computation. Only applicable to accounts which are participating.

rewards: number | bigint

(ern) total rewards of MicroAlgos the account has received, including pending rewards.

round: number | bigint

The round for which this information is relevant.

sigType?: string

Indicates what type of signature is used by this account, must be one of:

  • sig
  • msig
  • lsig
  • or null if unknown
status: string

(onl) delegation 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: number | bigint

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: number | bigint

The count of all assets that have been opted in, equivalent to the count of AssetHolding objects held by this account.

totalBoxBytes: number | bigint

For app-accounts only. The total number of bytes allocated for the keys and values of boxes which belong to the associated application.

totalBoxes: number | bigint

For app-accounts only. The total number of boxes which belong to the associated application.

totalCreatedApps: number | bigint

The count of all apps (AppParams objects) created by this account.

totalCreatedAssets: number | bigint

The count of all assets (AssetParams objects) created by this account.

Methods

  • Get an object ready for encoding to either JSON or msgpack.

    Parameters

    • binary: boolean = false

      Use true to indicate that the encoding can handle raw binary objects (Uint8Arrays). Use false to indicate that raw binary objects should be converted to base64 strings. True should be used for objects that will be encoded with msgpack, and false should be used for objects that will be encoded with JSON.

    Returns Record<string, any>

Generated using TypeDoc