interface TxProof {
    data: Uint8Array;
    proof: {
        aunts: readonly Uint8Array[];
        index: number;
        leafHash: Uint8Array;
        total: number;
    };
    rootHash: Uint8Array;
}

Properties

Properties

data: Uint8Array
proof: {
    aunts: readonly Uint8Array[];
    index: number;
    leafHash: Uint8Array;
    total: number;
}
rootHash: Uint8Array