Class PendingTransactionResponse
- java.lang.Object
-
- com.algorand.algosdk.v2.client.common.PathResponse
-
- com.algorand.algosdk.v2.client.model.PendingTransactionResponse
-
public class PendingTransactionResponse extends PathResponse
Details about a pending transaction. If the transaction was recently confirmed, includes confirmation details like the round and reward details.
-
-
Field Summary
Fields Modifier and Type Field Description LongapplicationIndexThe application index if the transaction was found and it created an application.LongassetClosingAmountThe number of the asset's unit that were transferred to the close-to address.LongassetIndexThe asset index if the transaction was found and it created an asset.LongcloseRewardsRewards in microalgos applied to the close remainder to account.LongclosingAmountClosing amount for the transaction.LongconfirmedRoundThe round where this transaction was confirmed, if present.List<EvalDeltaKeyValue>globalStateDeltaGlobal state key/value changes for the application being executed by this transaction.List<PendingTransactionResponse>innerTxnsInner transactions produced by application execution.List<AccountStateDelta>localStateDeltaLocal state key/value changes for the application being executed by this transaction.List<byte[]>logsLogs for the application being executed by this transaction.StringpoolErrorIndicates that the transaction was kicked out of this node's transaction pool (and specifies why that happened).LongreceiverRewardsRewards in microalgos applied to the receiver account.LongsenderRewardsRewards in microalgos applied to the sender account.SignedTransactiontxnThe raw signed transaction.
-
Constructor Summary
Constructors Constructor Description PendingTransactionResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleanequals(Object o)List<String>logs()voidlogs(List<String> base64Encoded)-
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
-
-
-
-
Field Detail
-
applicationIndex
public Long applicationIndex
The application index if the transaction was found and it created an application.
-
assetClosingAmount
public Long assetClosingAmount
The number of the asset's unit that were transferred to the close-to address.
-
assetIndex
public Long assetIndex
The asset index if the transaction was found and it created an asset.
-
closeRewards
public Long closeRewards
Rewards in microalgos applied to the close remainder to account.
-
closingAmount
public Long closingAmount
Closing amount for the transaction.
-
confirmedRound
public Long confirmedRound
The round where this transaction was confirmed, if present.
-
globalStateDelta
public List<EvalDeltaKeyValue> globalStateDelta
Global state key/value changes for the application being executed by this transaction.
-
innerTxns
public List<PendingTransactionResponse> innerTxns
Inner transactions produced by application execution.
-
localStateDelta
public List<AccountStateDelta> localStateDelta
Local state key/value changes for the application being executed by this transaction.
-
logs
public List<byte[]> logs
Logs for the application being executed by this transaction.
-
poolError
public String poolError
Indicates that the transaction was kicked out of this node's transaction pool (and specifies why that happened). An empty string indicates the transaction wasn't kicked out of this node's txpool due to an error.
-
receiverRewards
public Long receiverRewards
Rewards in microalgos applied to the receiver account.
-
senderRewards
public Long senderRewards
Rewards in microalgos applied to the sender account.
-
txn
public SignedTransaction txn
The raw signed transaction.
-
-