Skip to content

Create Publication

We are looking for publications that demonstrate building dApps or smart contracts!
See the full list of Gitcoin bounties that are eligible for rewards.

types indexer.AccountResult

@algorandfoundation/algokit-utils / types/indexer / AccountResult

Interface: AccountResult

types/indexer.AccountResult

Account information at a given round https://developer.algorand.org/docs/rest-apis/indexer/#account

Hierarchy

  • Record\<string, any>

AccountResult

Table of contents

Properties

Properties

address

address: string

the account public key

Defined in

src/types/indexer.ts:192


amount

amount: number

[algo] total number of MicroAlgos in the account

Defined in

src/types/indexer.ts:194


amount-without-pending-rewards

amount-without-pending-rewards: number

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

Defined in

src/types/indexer.ts:196


apps-local-state

Optional apps-local-state: AppLocalState[]

[appl] applications local data stored in this account.

Note the raw object uses map[int] -> AppLocalState for this type.

Defined in

src/types/indexer.ts:201


apps-total-extra-pages

Optional apps-total-extra-pages: number

[teap] the sum of all extra application program pages for this account.

Defined in

src/types/indexer.ts:203


apps-total-schema

Optional apps-total-schema: StateSchema

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

Defined in

src/types/indexer.ts:208


assets

Optional assets: AssetHolding[]

[asset] assets held by this account.

Note the raw object uses map[int] -> AssetHolding for this type.

Defined in

src/types/indexer.ts:213


auth-addr

Optional auth-addr: 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.

Defined in

src/types/indexer.ts:220


closed-at-round

Optional closed-at-round: number

Round during which this account was most recently closed.

Defined in

src/types/indexer.ts:222


created-apps

Optional created-apps: ApplicationResult[]

[appp] parameters of applications created by this account including app global data.

Note: the raw account uses map[int] -> AppParams for this type.

Defined in

src/types/indexer.ts:227


created-assets

Optional created-assets: AssetResult[]

[apar] parameters of assets created by this account.

Note: the raw account uses map[int] -> Asset for this type.

Defined in

src/types/indexer.ts:232


created-at-round

Optional created-at-round: number

Round during which this account first appeared in a transaction.

Defined in

src/types/indexer.ts:234


deleted

Optional deleted: boolean

Whether or not this account is currently closed.

Defined in

src/types/indexer.ts:236


participation

Optional participation: AccountParticipation

If participating in consensus, the parameters used by this account in the consensus protocol.

Defined in

src/types/indexer.ts:238


pending-rewards

pending-rewards: number

amount of MicroAlgos of pending rewards in this account.

Defined in

src/types/indexer.ts:240


reward-base

Optional reward-base: number

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

Defined in

src/types/indexer.ts:242


rewards

rewards: number

[ern] total rewards of MicroAlgos the account has received, including pending rewards.

Defined in

src/types/indexer.ts:244


round

round: number

The round for which this information is relevant.

Defined in

src/types/indexer.ts:246


sig-type

sig-type: SignatureType

Indicates what type of signature is used by this account

Defined in

src/types/indexer.ts:248


status

status: AccountStatus

[onl] delegation status of the account's MicroAlgos

Defined in

src/types/indexer.ts:250


total-apps-opted-in

total-apps-opted-in: 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.

Defined in

src/types/indexer.ts:252


total-assets-opted-in

total-assets-opted-in: number

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

Defined in

src/types/indexer.ts:254


total-box-bytes

total-box-bytes: number

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

Defined in

src/types/indexer.ts:256


total-boxes

total-boxes: number

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

Defined in

src/types/indexer.ts:258


total-created-apps

total-created-apps: number

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

Defined in

src/types/indexer.ts:260


total-created-assets

total-created-assets: number

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

Defined in

src/types/indexer.ts:262