atomicals-js
Version:
Atomicals JavaScript SDK and CLI
10 lines (9 loc) • 432 B
TypeScript
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;
constructor(electrumApi: ElectrumApiInterface, atomicalAliasOrId: any, fetchType?: AtomicalsGetFetchType);
run(): Promise<any>;
}