@flarenetwork/flarejs
Version:
Flare Platform JS Library
14 lines • 431 B
TypeScript
import type { AssetDict } from './models';
import type { Utxo } from '../../serializable/avax/utxo';
export declare class UtxoSet {
private utxos;
constructor(utxos: Utxo[]);
getUTXOs(): Utxo[];
getAssetDict(): AssetDict;
getAssetIDs(): string[];
push(utxo: Utxo): UtxoSet;
getUTXOIDs(): string[];
merge(set: UtxoSet): UtxoSet;
getTransferOuts(): UtxoSet;
}
//# sourceMappingURL=UTXOSet.d.ts.map