Class PendingTransactionResponse

Details about a pending transaction. If the transaction was recently confirmed, includes confirmation details like the round and reward details.

Implements

Constructors

  • Creates a new PendingTransactionResponse object.

    Parameters

    • __namedParameters: {
          applicationIndex?: number | bigint;
          assetClosingAmount?: number | bigint;
          assetIndex?: number | bigint;
          closeRewards?: number | bigint;
          closingAmount?: number | bigint;
          confirmedRound?: number | bigint;
          globalStateDelta?: modelsv2.EvalDeltaKeyValue[];
          innerTxns?: PendingTransactionResponse[];
          localStateDelta?: modelsv2.AccountStateDelta[];
          logs?: Uint8Array[];
          poolError: string;
          receiverRewards?: number | bigint;
          senderRewards?: number | bigint;
          txn: SignedTransaction;
      }
      • Optional applicationIndex?: number | bigint
      • Optional assetClosingAmount?: number | bigint
      • Optional assetIndex?: number | bigint
      • Optional closeRewards?: number | bigint
      • Optional closingAmount?: number | bigint
      • Optional confirmedRound?: number | bigint
      • Optional globalStateDelta?: modelsv2.EvalDeltaKeyValue[]
      • Optional innerTxns?: PendingTransactionResponse[]
      • Optional localStateDelta?: modelsv2.AccountStateDelta[]
      • Optional logs?: Uint8Array[]
      • poolError: string
      • Optional receiverRewards?: number | bigint
      • Optional senderRewards?: number | bigint
      • txn: SignedTransaction

    Returns PendingTransactionResponse

Properties

applicationIndex?: bigint

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

assetClosingAmount?: bigint

The number of the asset's unit that were transferred to the close-to address.

assetIndex?: bigint

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

closeRewards?: bigint

Rewards in microalgos applied to the close remainder to account.

closingAmount?: bigint

Closing amount for the transaction.

confirmedRound?: bigint

The round where this transaction was confirmed, if present.

globalStateDelta?: modelsv2.EvalDeltaKeyValue[]

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

Inner transactions produced by application execution.

localStateDelta?: modelsv2.AccountStateDelta[]

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

logs?: Uint8Array[]

Logs for the application being executed by this transaction.

poolError: string

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?: bigint

Rewards in microalgos applied to the receiver account.

senderRewards?: bigint

Rewards in microalgos applied to the sender account.

The raw signed transaction.

encodingSchemaValue: undefined | Schema

Accessors

Methods

Generated using TypeDoc