atomicals-js
Version:
Atomicals JavaScript SDK and CLI
16 lines (15 loc) • 672 B
TypeScript
import { ElectrumApiInterface } from "../api/electrum-api.interface";
import { CommandInterface } from "./command.interface";
import { AtomicalStatus } from "../interfaces/atomical-status.interface";
export interface ResolvedRealm {
atomical: AtomicalStatus;
}
export declare class GetContainerItemValidatedByManifestCommand implements CommandInterface {
private electrumApi;
private container;
private requestDmitem;
private manifestJsonFile;
private checkWithoutSealed;
constructor(electrumApi: ElectrumApiInterface, container: string, requestDmitem: string, manifestJsonFile: string, checkWithoutSealed: boolean);
run(): Promise<any>;
}