UNPKG

myathhhh

Version:

Atomicals Javascript Library and CLI - atomicals.xyz

30 lines (29 loc) 623 B
/// <reference types="node" /> export interface UTXO { txid: string; txId: string; index: number; vout: number; value: number; script?: string; height?: number; outputIndex: number; atomicals?: any[]; atomicals_at_location?: any[]; nonWitnessUtxo?: Buffer; } export interface BalanceData { balance: string; unconfirmed: number; confirmed: number; utxos: UTXO[]; } export interface IInputUtxoPartial { hash: string; index: number; address: string; witnessUtxo: { value: number; script: Buffer; }; }