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 Long
applicationIndex
The application index if the transaction was found and it created an application.Long
assetClosingAmount
The number of the asset's unit that were transferred to the close-to address.Long
assetIndex
The asset index if the transaction was found and it created an asset.Long
closeRewards
Rewards in microalgos applied to the close remainder to account.Long
closingAmount
Closing amount for the transaction.Long
confirmedRound
The round where this transaction was confirmed, if present.List<EvalDeltaKeyValue>
globalStateDelta
Global state key/value changes for the application being executed by this transaction.List<PendingTransactionResponse>
innerTxns
Inner transactions produced by application execution.List<AccountStateDelta>
localStateDelta
Local state key/value changes for the application being executed by this transaction.List<byte[]>
logs
Logs for the application being executed by this transaction.String
poolError
Indicates that the transaction was kicked out of this node's transaction pool (and specifies why that happened).Long
receiverRewards
Rewards in microalgos applied to the receiver account.Long
senderRewards
Rewards in microalgos applied to the sender account.SignedTransaction
txn
The raw signed transaction.
-
Constructor Summary
Constructors Constructor Description PendingTransactionResponse()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
equals(Object o)
List<String>
logs()
void
logs(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.
-
-