Search Results for

    Show / Hide Table of Contents

    Struct PendingTransactionResponse

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

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

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

    CloseRewards

    Rewards in microalgos applied to the close remainder to account.

    Declaration
    [AlgoApiField("close-rewards")]
    public Optional<ulong> CloseRewards { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    ClosingAmount

    Closing amount for the transaction.

    Declaration
    [AlgoApiField("closing-amount")]
    public Optional<ulong> ClosingAmount { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    ConfirmedRound

    The round where this transaction was confirmed, if present.

    Declaration
    [AlgoApiField("confirmed-round")]
    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
    [AlgoApiField("global-state-delta")]
    public StateDelta GlobalStateDelta { get; set; }
    Property Value
    Type Description
    StateDelta

    InnerTxns

    Inner transactions produced by application execution.

    Declaration
    [AlgoApiField("inner-txns")]
    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
    [AlgoApiField("local-state-delta")]
    public AccountStateDelta[] LocalStateDelta { get; set; }
    Property Value
    Type Description
    AccountStateDelta[]

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

    ReceiverRewards

    Rewards in microalgos applied to the receiver account.

    Declaration
    [AlgoApiField("receiver-rewards")]
    public Optional<ulong> ReceiverRewards { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    SenderRewards

    Rewards in microalgos applied to the sender account.

    Declaration
    [AlgoApiField("sender-rewards")]
    public Optional<ulong> SenderRewards { get; set; }
    Property Value
    Type Description
    Optional<UInt64>

    Txn

    The raw signed transaction.

    Declaration
    [AlgoApiField("txn")]
    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
    ☀
    ☾