UNPKG

@blockchain-api/bitcoin-js

Version:
34 lines (32 loc) 588 B
export interface UTXO { /** * Sent amount in satoshis. * @type {number} * @memberof UTXO */ value: number; /** * Transaction script. * @type {string} * @memberof UTXO */ script: string; /** * Recipient address. * @type {string} * @memberof UTXO */ address: string; /** * Tx output index. * @type {number} * @memberof UTXO */ index: number; /** * Tx hash. * @type {string} * @memberof UTXO */ txHash: string; }