UNPKG

opnet

Version:

The perfect library for building Bitcoin-based applications.

9 lines (8 loc) 257 B
import { ScriptPubKey } from '@btc-vision/bitcoin-rpc'; export interface IUTXO { readonly transactionId: string; readonly outputIndex: number; readonly value: bigint | string; readonly scriptPubKey: ScriptPubKey; readonly raw: string; }