Class DryrunRequest
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.DryrunRequest
-
public class DryrunRequest extends PathResponse
Request data type for dryrun endpoint. Given the Transactions and simulated ledger state upload, run TEAL scripts and return debugging information.
-
-
Field Summary
Fields Modifier and Type Field Description List<Account>
accounts
List<Application>
apps
Long
latestTimestamp
LatestTimestamp is available to some TEAL scripts.String
protocolVersion
ProtocolVersion specifies a specific version string to operate under, otherwise whatever the current protocol of the network this algod is running in.BigInteger
round
Round is available to some TEAL scripts.List<DryrunSource>
sources
List<SignedTransaction>
txns
-
Constructor Summary
Constructors Constructor Description DryrunRequest()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
apps
public List<Application> apps
-
latestTimestamp
public Long latestTimestamp
LatestTimestamp is available to some TEAL scripts. Defaults to the latest confirmed timestamp this algod is attached to.
-
protocolVersion
public String protocolVersion
ProtocolVersion specifies a specific version string to operate under, otherwise whatever the current protocol of the network this algod is running in.
-
round
public BigInteger round
Round is available to some TEAL scripts. Defaults to the current round on the network this algod is attached to.
-
sources
public List<DryrunSource> sources
-
txns
public List<SignedTransaction> txns
-
-