bitverse-atomicals-js
Version:
Atomicals Javascript Library and CLI - atomicals.xyz
26 lines (25 loc) • 837 B
TypeScript
import { ElectrumApiInterface } from "../api/electrum-api.interface";
import { CommandInterface } from "./command.interface";
export interface SummaryContainersCommandResultInterface {
success: boolean;
message?: string;
data?: any;
error?: any;
}
export interface ContainersSummaryItemInterface {
atomical_id: string;
atomical_number: number;
request_full_realm_name: string;
full_realm_name?: string;
status: string;
}
export interface ContainersSummaryItemMapInterface {
[key: string]: ContainersSummaryItemInterface | any;
}
export declare class SummaryContainersCommand implements CommandInterface {
private electrumApi;
private address;
private filter?;
constructor(electrumApi: ElectrumApiInterface, address: string, filter?: string | undefined);
run(): Promise<any>;
}