Search Results for

    Show / Hide Table of Contents

    Struct PendingTransactionResponse

    Namespace: Algorand.Unity.Algod
    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
    Type Description
    Optional<UInt64>

    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
    Type Description
    Optional<UInt64>

    AssetIndex

    The asset index if the transaction was found and it created an asset.

    Declaration
    public Optional<ulong> AssetIndex { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    CloseRewards

    Rewards in microalgos applied to the close remainder to account.

    Declaration
    public Optional<ulong> CloseRewards { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    ClosingAmount

    Closing amount for the transaction.

    Declaration
    public Optional<ulong> ClosingAmount { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    ConfirmedRound

    The round where this transaction was confirmed, if present.

    Declaration
    public Optional<ulong> ConfirmedRound { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    GlobalStateDelta

    [gd] Global state key/value changes for the application being executed by this transaction.

    Declaration
    public StateDelta GlobalStateDelta { get; set; }
    Property Value
    Type Description
    StateDelta

    InnerTxns

    Inner transactions produced by application execution.

    Declaration
    public PendingTransactionResponse[] InnerTxns { get; set; }
    Property Value
    Type Description
    PendingTransactionResponse[]

    LocalStateDelta

    [ld] Local state key/value changes for the application being executed by this transaction.

    Declaration
    public AccountStateDelta[] LocalStateDelta { get; set; }
    Property Value
    Type Description
    AccountStateDelta[]

    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
    Type Description
    String

    ReceiverRewards

    Rewards in microalgos applied to the receiver account.

    Declaration
    public Optional<ulong> ReceiverRewards { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    SenderRewards

    Rewards in microalgos applied to the sender account.

    Declaration
    public Optional<ulong> SenderRewards { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    Txn

    The raw signed transaction.

    Declaration
    public SignedTxn Txn { get; set; }
    Property Value
    Type Description
    SignedTxn

    Methods

    Equals(PendingTransactionResponse)

    Declaration
    public bool Equals(PendingTransactionResponse other)
    Parameters
    Type Name Description
    PendingTransactionResponse other
    Returns
    Type Description
    Boolean
    ☀
    ☾
    In This Article
    Back to top
    Generated by DocFX
    ☀
    ☾