interface SendTransactionReturnType {
    blockHash?: string;
    blockHeight?: number;
    confirmationHeight?: number;
    encodedTx?: string;
    hash: `th_${string}`;
    rawTx: `tx_${string}`;
    signatures?: string[];
    tx?: Tx;
}

Hierarchy

  • Partial<SignedTx>
    • SendTransactionReturnType

Properties

blockHash?: string

Base58Check encoded tagged hash

blockHeight?: number
confirmationHeight?: number
encodedTx?: string

Base64Check encoded tagged byte array

hash: `th_${string}`

Base58Check encoded tagged hash

rawTx: `tx_${string}`
signatures?: string[]

At least one signature is required unless for Generalized Account Meta transactions

tx?: Tx

A mix of all transaction types.