UNPKG

@dethcrypto/eth-sdk

Version:

🛠 Generate type-safe, lightweight SDK for your Ethereum smart contracts

10 lines (9 loc) • 286 B
import { EthSdkConfig } from './types'; export declare function readConfig(filePath: string, requireJs: Require): Promise<EthSdkConfig>; /** @internal */ export interface Require { (id: string): unknown; extensions?: { [K in string]?: (...args: any[]) => void; }; }