@blockchain-api/bitcoin-js
Version:
Blockchain Api Bitcoin JS
33 lines (32 loc) • 586 B
TypeScript
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;
}