Algorand TypeScript
    Preparing search index...

    Type Alias Account

    Represents an Algorand Account and exposes properties and methods for reading account data

    type Account = {
        authAddress: Account;
        balance: uint64;
        bytes: bytes;
        minBalance: uint64;
        totalAppsCreated: uint64;
        totalAppsOptedIn: uint64;
        totalAssets: uint64;
        totalAssetsCreated: uint64;
        totalBoxBytes: uint64;
        totalBoxes: uint64;
        totalExtraAppPages: uint64;
        totalNumByteSlice: uint64;
        totalNumUint: uint64;
        isOptedIn(assetOrApp: Asset | Application): boolean;
    }
    Index

    Properties

    authAddress: Account

    Address the account is rekeyed to

    Account must be an available resource

    balance: uint64

    Account balance in microalgos

    Account must be an available resource

    bytes: bytes

    Get the accounts address in bytes

    minBalance: uint64

    Minimum required balance for account, in microalgos

    Account must be an available resource

    totalAppsCreated: uint64

    The number of existing apps created by this account.

    Account must be an available resource

    totalAppsOptedIn: uint64

    The number of apps this account is opted into.

    Account must be an available resource

    totalAssets: uint64

    The numbers of ASAs held by this account (including ASAs this account created).

    Account must be an available resource

    totalAssetsCreated: uint64

    The number of existing ASAs created by this account.

    Account must be an available resource

    totalBoxBytes: uint64

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

    Account must be an available resource

    totalBoxes: uint64

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

    Account must be an available resource

    totalExtraAppPages: uint64

    The number of extra app code pages used by this account.

    Account must be an available resource

    totalNumByteSlice: uint64

    The total number of byte array values allocated by this account in Global and Local States.

    Account must be an available resource

    totalNumUint: uint64

    The total number of uint64 values allocated by this account in Global and Local States.

    Account must be an available resource

    Methods