UNPKG

atomicals-js

Version:
10 lines (9 loc) 417 B
import { ElectrumApiInterface } from "../api/electrum-api.interface"; import { AtomicalsGetFetchType, CommandInterface } from "./command.interface"; export declare class GetByTickerCommand implements CommandInterface { private electrumApi; private ticker; private fetchType; constructor(electrumApi: ElectrumApiInterface, ticker: string, fetchType?: AtomicalsGetFetchType); run(): Promise<any>; }