Class DryrunRequest
Request data type for dryrun endpoint. Given the Transactions and simulated ledger state upload, run TEAL scripts and return debugging information.
Inheritance
DryrunRequest
Assembly: Algorand.dll
Syntax
[MessagePackObject(false)]
public class DryrunRequest
Properties
|
Edit this page
View Source
Accounts
Declaration
[JsonProperty("accounts", Required = Required.Always)]
[Key("accounts")]
[Required]
public ICollection<Account> Accounts { get; set; }
Property Value
|
Edit this page
View Source
Apps
Declaration
[JsonProperty("apps", Required = Required.Always)]
[Key("apps")]
[Required]
public ICollection<Application> Apps { get; set; }
Property Value
|
Edit this page
View Source
LatestTimestamp
Declaration
[JsonProperty("latest-timestamp", Required = Required.Always)]
[Key("latest-timestamp")]
[Required]
public ulong LatestTimestamp { get; set; }
Property Value
|
Edit this page
View Source
ProtocolVersion
Declaration
[JsonProperty("protocol-version", Required = Required.Always)]
[Key("protocol-version")]
[Required]
public string ProtocolVersion { get; set; }
Property Value
|
Edit this page
View Source
Round
Declaration
[JsonProperty("round", Required = Required.Always)]
[Key("round")]
[Required]
public ulong Round { get; set; }
Property Value
|
Edit this page
View Source
Sources
Declaration
[JsonProperty("sources", Required = Required.Always)]
[Key("sources")]
[Required]
public ICollection<DryrunSource> Sources { get; set; }
Property Value
|
Edit this page
View Source
Txns
Declaration
[JsonProperty("txns", Required = Required.Always)]
[Key("txns")]
[Required]
public ICollection<SignedTransaction> Txns { get; set; }
Property Value