UNPKG

@avalabs/avalanchejs

Version:
14 lines 487 B
import type { AssetDict } from './models'; import type { Utxo } from '../../serializable/avax/utxo'; export declare class UtxoSet { private utxos; constructor(utxos: Utxo[]); getUTXOs(): Utxo<import("../../serializable/common/types").Serializable>[]; getAssetDict(): AssetDict; getAssetIDs(): string[]; push(utxo: Utxo): UtxoSet; getUTXOIDs(): string[]; merge(set: UtxoSet): UtxoSet; getTransferOuts(): UtxoSet; } //# sourceMappingURL=UTXOSet.d.ts.map