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 java.lang.Long
applicationIndex
The application index if the transaction was found and it created an application.java.lang.Long
assetClosingAmount
The number of the asset's unit that were transferred to the close-to address.java.lang.Long
assetIndex
The asset index if the transaction was found and it created an asset.java.lang.Long
closeRewards
Rewards in microalgos applied to the close remainder to account.java.lang.Long
closingAmount
Closing amount for the transaction.java.lang.Long
confirmedRound
The round where this transaction was confirmed, if present.java.util.List<EvalDeltaKeyValue>
globalStateDelta
Global state key/value changes for the application being executed by this transaction.java.util.List<PendingTransactionResponse>
innerTxns
Inner transactions produced by application execution.java.util.List<AccountStateDelta>
localStateDelta
Local state key/value changes for the application being executed by this transaction.java.util.List<byte[]>
logs
Logs for the application being executed by this transaction.java.lang.String
poolError
Indicates that the transaction was kicked out of this node's transaction pool (and specifies why that happened).java.lang.Long
receiverRewards
Rewards in microalgos applied to the receiver account.java.lang.Long
senderRewards
Rewards in microalgos applied to the sender account.SignedTransaction
txn
The raw signed transaction. -
Constructor Summary
Constructors Constructor Description PendingTransactionResponse()
-
Method Summary
Methods inherited from class com.algorand.algosdk.v2.client.common.PathResponse
toString
Methods inherited from class java.lang.Object
clone, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Field Details
-
applicationIndex
public java.lang.Long applicationIndexThe application index if the transaction was found and it created an application. -
assetClosingAmount
public java.lang.Long assetClosingAmountThe number of the asset's unit that were transferred to the close-to address. -
assetIndex
public java.lang.Long assetIndexThe asset index if the transaction was found and it created an asset. -
closeRewards
public java.lang.Long closeRewardsRewards in microalgos applied to the close remainder to account. -
closingAmount
public java.lang.Long closingAmountClosing amount for the transaction. -
confirmedRound
public java.lang.Long confirmedRoundThe round where this transaction was confirmed, if present. -
globalStateDelta
Global state key/value changes for the application being executed by this transaction. -
innerTxns
Inner transactions produced by application execution. -
localStateDelta
Local state key/value changes for the application being executed by this transaction. -
logs
public java.util.List<byte[]> logsLogs for the application being executed by this transaction. -
poolError
public java.lang.String poolErrorIndicates 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 java.lang.Long receiverRewardsRewards in microalgos applied to the receiver account. -
senderRewards
public java.lang.Long senderRewardsRewards in microalgos applied to the sender account. -
txn
The raw signed transaction.
-
-
Constructor Details
-
PendingTransactionResponse
public PendingTransactionResponse()
-
-
Method Details
-
logs
public void logs(java.util.List<java.lang.String> base64Encoded) -
logs
public java.util.List<java.lang.String> logs() -
equals
public boolean equals(java.lang.Object o)- Overrides:
equals
in classjava.lang.Object
-