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