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

Properties

blockHash?: string

Base58Check encoded tagged hash

blockHeight?: number
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.