Utxo: {
    confirmations?: number;
    status?: {
        confirmed: boolean;
    };
    tx_hash?: string;
    txid?: string;
}

Type declaration

  • Optional confirmations?: number

    Number of confirmations.

  • Optional status?: {
        confirmed: boolean;
    }

    Status of the transaction.

    • confirmed: boolean

      Flag indicating if the transaction has been confirmed.

  • Optional tx_hash?: string

    Transaction hash if txid is not available

  • Optional txid?: string

    Transaction hash if tx_hash is not available

Generated using TypeDoc