Interface TxInput

interface TxInput {
    hash: Uint8Array;
    index: number;
    script: Uint8Array;
    sequence: number;
    witness: Uint8Array[];
}

Properties

hash: Uint8Array
index: number
script: Uint8Array
sequence: number
witness: Uint8Array[]