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

Implements

Constructors

  • Creates a new Account object.

    Parameters

    • __namedParameters: {
          address: string;
          amount: number | bigint;
          amountWithoutPendingRewards: number | bigint;
          appsLocalState?: modelsv2.ApplicationLocalState[];
          appsTotalExtraPages?: number | bigint;
          appsTotalSchema?: modelsv2.ApplicationStateSchema;
          assets?: modelsv2.AssetHolding[];
          authAddr?: string | Address;
          createdApps?: modelsv2.Application[];
          createdAssets?: modelsv2.Asset[];
          incentiveEligible?: boolean;
          lastHeartbeat?: number | bigint;
          lastProposed?: number | bigint;
          minBalance: number | bigint;
          participation?: modelsv2.AccountParticipation;
          pendingRewards: number | bigint;
          rewardBase?: number | bigint;
          rewards: number | bigint;
          round: number | bigint;
          sigType?: string;
          status: string;
          totalAppsOptedIn: number | bigint;
          totalAssetsOptedIn: number | bigint;
          totalBoxBytes?: number | bigint;
          totalBoxes?: number | bigint;
          totalCreatedApps: number | bigint;
          totalCreatedAssets: number | bigint;
      }
      • address: string
      • amount: number | bigint
      • amountWithoutPendingRewards: number | bigint
      • Optional appsLocalState?: modelsv2.ApplicationLocalState[]
      • Optional appsTotalExtraPages?: number | bigint
      • Optional appsTotalSchema?: modelsv2.ApplicationStateSchema
      • Optional assets?: modelsv2.AssetHolding[]
      • Optional authAddr?: string | Address
      • Optional createdApps?: modelsv2.Application[]
      • Optional createdAssets?: modelsv2.Asset[]
      • Optional incentiveEligible?: boolean
      • Optional lastHeartbeat?: number | bigint
      • Optional lastProposed?: number | bigint
      • minBalance: number | bigint
      • Optional participation?: modelsv2.AccountParticipation
      • pendingRewards: number | bigint
      • Optional rewardBase?: number | bigint
      • rewards: number | bigint
      • round: number | bigint
      • Optional sigType?: string
      • status: string
      • totalAppsOptedIn: number | bigint
      • totalAssetsOptedIn: number | bigint
      • Optional totalBoxBytes?: number | bigint
      • Optional totalBoxes?: number | bigint
      • totalCreatedApps: number | bigint
      • totalCreatedAssets: number | bigint

    Returns modelsv2.Account

Properties

address: string

the account public key

amount: bigint

(algo) total number of MicroAlgos in the account

amountWithoutPendingRewards: bigint

specifies the amount of MicroAlgos in the account, without the pending rewards.

appsLocalState?: modelsv2.ApplicationLocalState[]

(appl) applications local data stored in this account. Note the raw object uses map[int] -> AppLocalState for this type.

appsTotalExtraPages?: number

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

authAddr?: Address

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

createdApps?: modelsv2.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?: modelsv2.Asset[]

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

incentiveEligible?: boolean

Whether or not the account can receive block incentives if its balance is in range at proposal time.

lastHeartbeat?: number

The round in which this account last went online, or explicitly renewed their online status.

lastProposed?: number

The round in which this account last proposed the block.

minBalance: bigint

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.

pendingRewards: bigint

amount of MicroAlgos of pending rewards in this account.

rewardBase?: bigint

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

rewards: bigint

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

round: 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
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

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

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

totalBoxBytes?: number

(tbxb) The total number of bytes used by this account's app's box keys and values.

totalBoxes?: number

(tbx) The number of existing boxes created by this account's app.

totalCreatedApps: number

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

totalCreatedAssets: number

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

encodingSchemaValue: undefined | Schema

Accessors

Methods

Generated using TypeDoc