Type alias BitcoinTransactionNoChange

BitcoinTransactionNoChange: {
    didUtxoIndex?: number;
    didUtxoValue?: number;
    txHex: string;
    txid: Buffer;
}

A bitcoin transaction that fully consumes the UTXO and does not create a change output.

Type declaration

  • Optional didUtxoIndex?: number

    The index of the DID UTXO created in the transaction.

  • Optional didUtxoValue?: number

    The value of the DID UTXO created in the transaction.

  • txHex: string

    The serialized transaction in hexadecimal format.

  • txid: Buffer

    The hash of the transaction used to identify the transaction.