@cashlab/common
    Preparing search index...

    Type Alias ChainedTxResult

    A data type representing a chain of transactions.

    type ChainedTxResult = {
        chain: TxResult[];
        payouts: UTXO[];
        txfee: bigint;
    }
    Index

    Properties

    Properties

    chain: TxResult[]

    A list of transaction results, These transactions may spend the utxo of their previous transactions in the list.

    payouts: UTXO[]

    A list of payouts from all of the generated transactions.

    txfee: bigint

    The amount paid to the miner in sats.