Interface IUTXO

Unspent Transaction Output

Interfaces

interface IUTXO {
    outputIndex: number;
    scriptPubKey: ScriptPubKey;
    transactionId: string;
    value: string | bigint;
}

Implemented by

Properties

outputIndex: number
scriptPubKey: ScriptPubKey
transactionId: string
value: string | bigint