UNPKG

@test-org122/hypernet-core

Version:

Hypernet Core. Represents the SDK for running the Hypernet Protocol.

12 lines 629 B
import { IConfigProvider } from "@interfaces/utilities/IConfigProvider"; import { HypernetConfig } from "@interfaces/objects/HypernetConfig"; import { EBlockchainNetwork } from "@interfaces/types"; import { ResultAsync } from "@interfaces/objects"; import { ILogUtils } from "@interfaces/utilities"; export declare class ConfigProvider implements IConfigProvider { protected logUtils: ILogUtils; protected config: HypernetConfig; constructor(network: EBlockchainNetwork, logUtils: ILogUtils, config?: HypernetConfig); getConfig(): ResultAsync<HypernetConfig, never>; } //# sourceMappingURL=ConfigProvider.d.ts.map