Transaction

interface Transaction {
    blockHash: `mh_${string}`;
    blockHeight: number;
    encodedTx: `tx_${string}`;
    hash: `th_${string}`;
    microIndex: number;
    microTime: Date;
    signatures: string[];
    tx: Record<string, unknown>;
}

Properties

blockHash: `mh_${string}`

Micro block hash

blockHeight: number

The block height

encodedTx: `tx_${string}`

Encoded transaction

hash: `th_${string}`

Transaction hash

microIndex: number

The micro block index

microTime: Date

The unix timestamp

signatures: string[]

The signatures

tx: Record<string, unknown>

The transaction