Algorand TypeScript
    Preparing search index...

    Type Alias Application

    An Application on the Algorand network.

    type Application = {
        address: Account;
        approvalProgram: bytes;
        clearStateProgram: bytes;
        creator: Account;
        extraProgramPages: uint64;
        globalNumBytes: uint64;
        globalNumUint: uint64;
        id: uint64;
        localNumBytes: uint64;
        localNumUint: uint64;
    }
    Index

    Properties

    address: Account

    Address for which this application has authority

    approvalProgram: bytes

    Bytecode of Approval Program

    clearStateProgram: bytes

    Bytecode of Clear State Program

    creator: Account

    Creator address

    extraProgramPages: uint64

    Number of Extra Program Pages of code space

    globalNumBytes: uint64

    Number of byte array values allowed in Global State

    globalNumUint: uint64

    Number of uint64 values allowed in Global State

    id: uint64

    The id of this application on the current network

    localNumBytes: uint64

    Number of byte array values allowed in Local State

    localNumUint: uint64

    Number of uint64 values allowed in Local State