Class DryrunState
Stores the TEAL eval step data
Assembly: Algorand.dll
Syntax
[MessagePackObject(false)]
public class DryrunState
Properties
|
Edit this page
View Source
Error
Declaration
[JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("error")]
public string Error { get; set; }
Property Value
|
Edit this page
View Source
Line
Declaration
[JsonProperty("line", Required = Required.Always)]
[Key("line")]
[Required]
public ulong Line { get; set; }
Property Value
|
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
Scratch
Declaration
[JsonProperty("scratch", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
[Key("scratch")]
public ICollection<TealValue> Scratch { get; set; }
Property Value
|
Edit this page
View Source
Stack
Declaration
[JsonProperty("stack", Required = Required.Always)]
[Key("stack")]
[Required]
public ICollection<TealValue> Stack { get; set; }
Property Value