@cashlab/common
    Preparing search index...

    Type Alias UTXO<OutputType>

    Data type representing an unspent output of a transaction with the reference to its source transaction.

    type UTXO<OutputType = Output> = {
        block_height?: number;
        outpoint: Outpoint;
        output: OutputType;
    }

    Type Parameters

    Index

    Properties

    block_height?: number

    The height of the block that contains the source transaction.

    outpoint: Outpoint
    output: OutputType