UNPKG

bitverse-atomicals-js

Version:

Atomicals Javascript Library and CLI - atomicals.xyz

11 lines (10 loc) 485 B
import { ElectrumApiInterface } from "../api/electrum-api.interface"; import { AtomicalsGetFetchType, CommandInterface } from "./command.interface"; export declare class ResolveCommand implements CommandInterface { private electrumApi; private atomicalAliasOrId; private fetchType; private verbose?; constructor(electrumApi: ElectrumApiInterface, atomicalAliasOrId: any, fetchType?: AtomicalsGetFetchType, verbose?: boolean | undefined); run(): Promise<any>; }