Interface ITransactionOutput

Interface defining the structure of a transaction output.

interface ITransactionOutput {
    scriptPublicKey: string | IScriptPublicKey;
    value: bigint;
    verboseData?: ITransactionOutputVerboseData;
}

Properties

scriptPublicKey: string | IScriptPublicKey
value: bigint

Optional verbose data provided by RPC

Generated using TypeDoc