interface SignedTx {
    blockHash: string;
    blockHeight: string;
    encodedTx?: string;
    hash: string;
    signatures: string[];
    tx: Tx;
}

Properties

blockHash: string

Base58Check encoded tagged hash

blockHeight: string
encodedTx?: string

Base64Check encoded tagged byte array

hash: string

Base58Check encoded tagged hash

signatures: string[]

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

tx: Tx

A mix of all transaction types.

Generated using TypeDoc