Class DryrunRequest
Request data type for dryrun endpoint. Given the Transactions and simulated ledger state upload, run TEAL scripts and return debugging information.
Inheritance
object
    DryrunRequest
  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 DryrunRequest
  Properties
| Improve this Doc View SourceAccounts
Declaration
[JsonProperty("accounts", Required = Required.Always)]
[Required]
public ICollection<Account> Accounts { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.ICollection<T><Account> | 
Apps
Declaration
[JsonProperty("apps", Required = Required.Always)]
[Required]
public ICollection<Application> Apps { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.ICollection<T><Application> | 
LatestTimestamp
Declaration
[JsonProperty("latest-timestamp", Required = Required.Always)]
[Required]
public ulong LatestTimestamp { get; set; }
  Property Value
| Type | Description | 
|---|---|
| ulong | 
ProtocolVersion
Declaration
[JsonProperty("protocol-version", Required = Required.Always)]
[Required]
public string ProtocolVersion { get; set; }
  Property Value
| Type | Description | 
|---|---|
| string | 
Round
Declaration
[JsonProperty("round", Required = Required.Always)]
[Required]
public ulong Round { get; set; }
  Property Value
| Type | Description | 
|---|---|
| ulong | 
Sources
Declaration
[JsonProperty("sources", Required = Required.Always)]
[Required]
public ICollection<DryrunSource> Sources { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.ICollection<T><DryrunSource> | 
Txns
Declaration
[JsonProperty("txns", Required = Required.Always)]
[Required]
public ICollection<SignedTransaction> Txns { get; set; }
  Property Value
| Type | Description | 
|---|---|
| System.Collections.Generic.ICollection<T><SignedTransaction> |