Class DryrunState
Stores the TEAL eval step data
Inheritance
object
DryrunState
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Algorand.Algod.Model
Assembly: Algorand.dll
Syntax
public class DryrunState
Properties
| Improve this Doc View SourceError
Declaration
[JsonProperty("error", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public string Error { get; set; }
Property Value
Type | Description |
---|---|
string |
Line
Declaration
[JsonProperty("line", Required = Required.Always)]
[Required]
public ulong Line { get; set; }
Property Value
Type | Description |
---|---|
ulong |
Pc
Declaration
[JsonProperty("pc", Required = Required.Always)]
[Required]
public ulong Pc { get; set; }
Property Value
Type | Description |
---|---|
ulong |
Scratch
Declaration
[JsonProperty("scratch", Required = Required.Default, NullValueHandling = NullValueHandling.Ignore)]
public ICollection<TealValue> Scratch { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<T><TealValue> |
Stack
Declaration
[JsonProperty("stack", Required = Required.Always)]
[Required]
public ICollection<TealValue> Stack { get; set; }
Property Value
Type | Description |
---|---|
System.Collections.Generic.ICollection<T><TealValue> |