UNPKG

@lit-protocol/e2e

Version:

Lit Protocol E2E testing package for running comprehensive integration tests

16 lines 632 B
import { z } from 'zod'; declare const SupportedNetworkSchema: z.ZodEnum<["naga-dev", "naga-local", "naga-staging"]>; type SupportedNetwork = z.infer<typeof SupportedNetworkSchema>; declare const LogLevelSchema: z.ZodEnum<["silent", "info", "debug"]>; type LogLevel = z.infer<typeof LogLevelSchema>; export declare const init: (network?: SupportedNetwork, logLevel?: LogLevel) => Promise<{ litClient: any; authManager: any; localMasterAccount: any; aliceViemAccount: any; aliceViemAccountAuthData: any; aliceViemAccountPkp: any; aliceEoaAuthContext: any; }>; export {}; //# sourceMappingURL=init.d.ts.map