UNPKG

atomicals-js

Version:
10 lines (9 loc) 372 B
import { ElectrumApiInterface } from "../api/electrum-api.interface"; import { CommandInterface } from "./command.interface"; export declare class AwaitUtxoCommand implements CommandInterface { private electrumApi; private address; private amount; constructor(electrumApi: ElectrumApiInterface, address: string, amount: number); run(): Promise<any>; }