Pending Transaction

interface PendingTransaction {
    blockHash: string;
    blockHeight: number;
    encodedTx: `tx_${string}`;
    failures: number;
    hash: `th_${string}`;
    signatures: string[];
    tx: Tx;
}

Properties

blockHash: string

The block hash, but since it's pending it's always "none"

blockHeight: number

The block height, but since it's pending it's always -1

encodedTx: `tx_${string}`

Encoded transaction

failures: number

The failures count

hash: `th_${string}`

Transaction hash

signatures: string[]

The signatures

tx: Tx

The transaction