Class SimulationOpcodeTraceUnit
Inheritance
SimulationOpcodeTraceUnit
Assembly: Algorand.dll
Syntax
[MessagePackObject(false)]
public class SimulationOpcodeTraceUnit
Properties
|
Edit this page
View Source
Pc
Declaration
[JsonProperty("pc", Required = Required.Always)]
[Key("pc")]
[Required]
public ulong Pc { get; set; }
Property Value
|
Edit this page
View Source
ScratchChanges
Declaration
[JsonProperty("scratch-changes", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("scratch-changes")]
public ICollection<ScratchChange> ScratchChanges { get; set; }
Property Value
|
Edit this page
View Source
SpawnedInners
Declaration
[JsonProperty("spawned-inners", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("spawned-inners")]
public ICollection<ulong> SpawnedInners { get; set; }
Property Value
|
Edit this page
View Source
StackAdditions
Declaration
[JsonProperty("stack-additions", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("stack-additions")]
public ICollection<AvmValue> StackAdditions { get; set; }
Property Value
|
Edit this page
View Source
StackPopCount
Declaration
[JsonProperty("stack-pop-count", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("stack-pop-count")]
public ulong? StackPopCount { get; set; }
Property Value
|
Edit this page
View Source
StateChanges
Declaration
[JsonProperty("state-changes", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("state-changes")]
public ICollection<ApplicationStateOperation> StateChanges { get; set; }
Property Value