Struct EvalDelta<TTxn>
Stores StateDelta for an application's global key/value store,
and a number of accounts holding local state for that application.
Assembly: cs.temp.dll.dll
Syntax
[AlgoApiObject("", "", 0)]
[Serializable]
public struct EvalDelta<TTxn> : IEquatable<EvalDelta<TTxn>>, IAppEvalDelta<TTxn> where TTxn : IAppliedSignedTxn<TTxn>
Type Parameters
Properties
GlobalDelta
Declaration
[AlgoApiField("gd")]
public StateDelta GlobalDelta { get; set; }
Property Value
InnerTxns
The inner transactions (if any) that were evaluated.
Declaration
[AlgoApiField("itx")]
public TTxn[] InnerTxns { get; set; }
Property Value
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
Logs
Logs from application calls
Declaration
[AlgoApiField("lg")]
public string[] Logs { get; set; }
Property Value
Methods
Equals(EvalDelta<TTxn>)
Declaration
public bool Equals(EvalDelta<TTxn> other)
Parameters
Returns
Implements