Struct PendingTransactionResponse
Assembly: cs.temp.dll.dll
Syntax
public struct PendingTransactionResponse : IEquatable<PendingTransactionResponse>
Properties
ApplicationIndex
The application index if the transaction was found and it created an application.
Declaration
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
public Optional<ulong> AssetClosingAmount { get; set; }
Property Value
AssetIndex
The asset index if the transaction was found and it created an asset.
Declaration
public Optional<ulong> AssetIndex { get; set; }
Property Value
CloseRewards
Rewards in microalgos applied to the close remainder to account.
Declaration
public Optional<ulong> CloseRewards { get; set; }
Property Value
ClosingAmount
Closing amount for the transaction.
Declaration
public Optional<ulong> ClosingAmount { get; set; }
Property Value
ConfirmedRound
The round where this transaction was confirmed, if present.
Declaration
public Optional<ulong> ConfirmedRound { get; set; }
Property Value
GlobalStateDelta
[gd] Global state key/value changes for the application being executed by this transaction.
Declaration
public StateDelta GlobalStateDelta { get; set; }
Property Value
InnerTxns
Inner transactions produced by application execution.
Declaration
public PendingTransactionResponse[] InnerTxns { get; set; }
Property Value
LocalStateDelta
[ld] Local state key/value changes for the application being executed by this transaction.
Declaration
public AccountStateDelta[] LocalStateDelta { get; set; }
Property Value
Logs
[lg] Logs for the application being executed by this transaction.
Declaration
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
public string PoolError { get; set; }
Property Value
ReceiverRewards
Rewards in microalgos applied to the receiver account.
Declaration
public Optional<ulong> ReceiverRewards { get; set; }
Property Value
SenderRewards
Rewards in microalgos applied to the sender account.
Declaration
public Optional<ulong> SenderRewards { get; set; }
Property Value
Txn
The raw signed transaction.
Declaration
public SignedTxn Txn { get; set; }
Property Value
Methods
Equals(PendingTransactionResponse)
Declaration
public bool Equals(PendingTransactionResponse other)
Parameters
Returns