@cashlab/common
    Preparing search index...

    Type Alias TxResult

    Result of a generated transaction.

    type TxResult = {
        libauth_source_outputs: libauthOutput[];
        libauth_transaction: libauthTransaction;
        payouts: UTXO[];
        txbin: Uint8Array;
        txfee: bigint;
        txhash: Uint8Array;
    }
    Index

    Properties

    libauth_source_outputs: libauthOutput[]
    libauth_transaction: libauthTransaction
    payouts: UTXO[]

    A list of payouts.

    txbin: Uint8Array

    Encoded transaction.

    txfee: bigint

    The amount of fee paid to the miner in sats.

    txhash: Uint8Array

    The hash of the encoded transaction, In ui order, AKA txid as a binary data.