import { ScriptPubKey } from '@btc-vision/bitcoin-rpc'; export interface RawIUTXO { readonly transactionId: string; readonly outputIndex: number; readonly value: bigint | string; readonly scriptPubKey: ScriptPubKey; readonly raw?: number; } export interface IUTXO extends Omit { readonly raw: string; readonly witnessScript?: string | Uint8Array; } export interface ISpentUTXO { readonly transactionId: string; readonly outputIndex: number; }