Search Results for

    Show / Hide Table of Contents

    Struct ApplicationParams

    Namespace: Algorand.Unity.Algod
    Assembly: cs.temp.dll.dll
    Syntax
    [AlgoApiObject("", "", 0)]
    [Serializable]
    public struct ApplicationParams : IEquatable<ApplicationParams>

    Properties

    ApprovalProgram

    [approv] approval program.

    Declaration
    [AlgoApiField("approval-program")]
    public CompiledTeal ApprovalProgram { get; set; }
    Property Value
    Type Description
    CompiledTeal

    ClearStateProgram

    [clearp] approval program.

    Declaration
    [AlgoApiField("clear-state-program")]
    public CompiledTeal ClearStateProgram { get; set; }
    Property Value
    Type Description
    CompiledTeal

    Creator

    The address that created this application. This is the address where the parameters and global state for this application can be found.

    Declaration
    [AlgoApiField("creator")]
    public Address Creator { get; set; }
    Property Value
    Type Description
    Address

    ExtraProgramPages

    [epp] the amount of extra program pages available to this app.

    Declaration
    [AlgoApiField("extra-program-pages")]
    public Optional<ulong> ExtraProgramPages { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    GlobalState

    [gs] global schema

    Declaration
    [AlgoApiField("global-state")]
    public TealKeyValueStore GlobalState { get; set; }
    Property Value
    Type Description
    TealKeyValueStore

    GlobalStateSchema

    [gsch] global schema

    Declaration
    [AlgoApiField("global-state-schema")]
    public ApplicationStateSchema GlobalStateSchema { get; set; }
    Property Value
    Type Description
    ApplicationStateSchema

    LocalStateSchema

    [lsch] local schema

    Declaration
    [AlgoApiField("local-state-schema")]
    public ApplicationStateSchema LocalStateSchema { get; set; }
    Property Value
    Type Description
    ApplicationStateSchema

    Methods

    Equals(ApplicationParams)

    Declaration
    public bool Equals(ApplicationParams other)
    Parameters
    Type Name Description
    ApplicationParams other
    Returns
    Type Description
    Boolean
    ☀
    ☾
    In This Article
    Back to top
    Generated by DocFX
    ☀
    ☾