import { AddressTxsUtxo } from '@saturnbtcio/psbt'; export type CollectionType = 'rune' | 'btc'; export interface Wallet { address: string; balance: bigint; utxos: Array; } export interface CollectionUtxo extends AddressTxsUtxo { collectionStatuses: Array; hasInscription: boolean; } export interface Collection { id: string; type: CollectionType; } export interface CollectionAmount extends Collection { amount: bigint; }