Search Results for

    Show / Hide Table of Contents

    Struct EvalDelta<TTxn>

    Stores StateDelta for an application's global key/value store, and a number of accounts holding local state for that application.

    Implements
    IAppEvalDelta<TTxn>
    Namespace: Algorand.Unity
    Assembly: cs.temp.dll.dll
    Syntax
    [AlgoApiObject("", "", 0)]
    [Serializable]
    public struct EvalDelta<TTxn> : IEquatable<EvalDelta<TTxn>>, IAppEvalDelta<TTxn> where TTxn : IAppliedSignedTxn<TTxn>
    Type Parameters
    Name Description
    TTxn

    Properties

    GlobalDelta

    Global state delta

    Declaration
    [AlgoApiField("gd")]
    public StateDelta GlobalDelta { get; set; }
    Property Value
    Type Description
    StateDelta

    InnerTxns

    The inner transactions (if any) that were evaluated.

    Declaration
    [AlgoApiField("itx")]
    public TTxn[] InnerTxns { get; set; }
    Property Value
    Type Description
    TTxn[]

    LocalDeltas

    When decoding EvalDeltas, the integer key represents an offset into [txn.Sender, txn.Accounts[0], txn.Accounts[1], ...]

    Declaration
    [AlgoApiField("ld")]
    public StateDelta[] LocalDeltas { get; set; }
    Property Value
    Type Description
    StateDelta[]

    Logs

    Logs from application calls

    Declaration
    [AlgoApiField("lg")]
    public string[] Logs { get; set; }
    Property Value
    Type Description
    String[]

    Methods

    Equals(EvalDelta<TTxn>)

    Declaration
    public bool Equals(EvalDelta<TTxn> other)
    Parameters
    Type Name Description
    EvalDelta<TTxn> other
    Returns
    Type Description
    Boolean

    Implements

    IAppEvalDelta<TTxn>
    ☀
    ☾
    In This Article
    Back to top
    Generated by DocFX
    ☀
    ☾