UNPKG

@bancor/carbon-sdk

Version:

The SDK is a READ-ONLY tool, intended to facilitate working with Carbon contracts. It's a convenient wrapper around our matching algorithm, allowing programs and users get a ready to use transaction data that will allow them to manage strategies and fulfi

9 lines 370 B
/** * This module provides a way to read runtime configuration passed by means of global object. * This is useful in case the configuration is not available at compile time, such as log verbosity. */ export type RuntimeConfig = { logVerbosityLevel: number; }; export declare function getRuntimeConfig(): RuntimeConfig; //# sourceMappingURL=runtime-config.d.ts.map