Struct PendingTransactionResponse
Assembly: cs.temp.dll.dll
Syntax
[AlgoApiObject("", "", 0)]
[Serializable]
public struct PendingTransactionResponse : IEquatable<PendingTransactionResponse>
Properties
ApplicationIndex
The application index if the transaction was found and it created an application.
Declaration
[AlgoApiField("application-index")]
public Optional<ulong> ApplicationIndex { get; set; }
Property Value
AssetClosingAmount
The number of the asset's unit that were transferred to the close-to address.
Declaration
[AlgoApiField("asset-closing-amount")]
public Optional<ulong> AssetClosingAmount { get; set; }
Property Value
AssetIndex
The asset index if the transaction was found and it created an asset.
Declaration
[AlgoApiField("asset-index")]
public Optional<ulong> AssetIndex { get; set; }
Property Value
CloseRewards
Rewards in microalgos applied to the close remainder to account.
Declaration
[AlgoApiField("close-rewards")]
public Optional<ulong> CloseRewards { get; set; }
Property Value
ClosingAmount
Closing amount for the transaction.
Declaration
[AlgoApiField("closing-amount")]
public Optional<ulong> ClosingAmount { get; set; }
Property Value
ConfirmedRound
The round where this transaction was confirmed, if present.
Declaration
[AlgoApiField("confirmed-round")]
public Optional<ulong> ConfirmedRound { get; set; }
Property Value
GlobalStateDelta
[gd] Global state key/value changes for the application being executed by this transaction.
Declaration
[AlgoApiField("global-state-delta")]
public StateDelta GlobalStateDelta { get; set; }
Property Value
InnerTxns
Inner transactions produced by application execution.
Declaration
[AlgoApiField("inner-txns")]
public PendingTransactionResponse[] InnerTxns { get; set; }
Property Value
LocalStateDelta
[ld] Local state key/value changes for the application being executed by this transaction.
Declaration
[AlgoApiField("local-state-delta")]
public AccountStateDelta[] LocalStateDelta { get; set; }
Property Value
Logs
[lg] Logs for the application being executed by this transaction.
Declaration
[AlgoApiField("logs")]
public byte[][] Logs { get; set; }
Property Value
Type |
Description |
Byte[][] |
|
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.
Declaration
[AlgoApiField("pool-error")]
public string PoolError { get; set; }
Property Value
ReceiverRewards
Rewards in microalgos applied to the receiver account.
Declaration
[AlgoApiField("receiver-rewards")]
public Optional<ulong> ReceiverRewards { get; set; }
Property Value
SenderRewards
Rewards in microalgos applied to the sender account.
Declaration
[AlgoApiField("sender-rewards")]
public Optional<ulong> SenderRewards { get; set; }
Property Value
Txn
The raw signed transaction.
Declaration
[AlgoApiField("txn")]
public SignedTxn Txn { get; set; }
Property Value
Methods
Equals(PendingTransactionResponse)
Declaration
public bool Equals(PendingTransactionResponse other)
Parameters
Returns