UNPKG

atomicals-js

Version:
15 lines (14 loc) 484 B
import { ElectrumApiInterface } from "../api/electrum-api.interface"; import { CommandInterface } from "./command.interface"; export interface GetSubrealmInfoCommandResultInterface { success: boolean; data?: {}; message?: any; error?: any; } export declare class GetRealmInfoCommand implements CommandInterface { private electrumApi; private realmOrSubrealm; constructor(electrumApi: ElectrumApiInterface, realmOrSubrealm: any); run(): Promise<any>; }