client-aftermath-ts-sdk
Version:
Client Aftermath TypeScript SDK
19 lines • 680 B
TypeScript
import { SuiSystemStateSummary } from "@mysten/sui/client";
import { Caller } from "../../general/utils/caller";
import { CallerConfig } from "../../types";
import { AftermathApi } from "../../general/providers";
export declare class Sui extends Caller {
private readonly Provider?;
static readonly constants: {
addresses: {
zero: string;
suiPackageId: string;
suiSystemStateId: string;
suiClockId: string;
};
};
constructor(config?: CallerConfig, Provider?: AftermathApi | undefined);
getSystemState(): Promise<SuiSystemStateSummary>;
private useProvider;
}
//# sourceMappingURL=sui.d.ts.map