/** * viem client factory for fourMM. * * Builds a public client from the current config — respects rpcUrl and * fallbackRpcUrls from ~/.fourmm/config.json. */ import { type PublicClient } from 'viem'; import { type SupportedChainName } from './const.js'; export declare function getPublicClient(network?: SupportedChainName | undefined): PublicClient; /** Reset all cached clients (exposed for tests) */ export declare function resetPublicClients(): void; //# sourceMappingURL=viem.d.ts.map