UNPKG

sth-ts

Version:

An SmartHoldem API wrapper, written in TypeScript to interact with SmartHoldem blockchain.

30 lines (29 loc) 640 B
/** Loader model. */ export declare class LoaderStatus { success: boolean; loaded: false; now: number; blocksCount: number; constructor(); } export declare class LoaderStatusSync { success: boolean; syncing: false; blocks: number; height: number; id: string; constructor(); } export declare class LoaderNetworkResponse { nethash: string; token: string; symbol: string; explorer: string; version: number; constructor(); } export declare class LoaderAutoConfigure { success: boolean; network: LoaderNetworkResponse; constructor(); }