UNPKG

@lit-protocol/e2e

Version:

Lit Protocol E2E testing package for running comprehensive integration tests

10 lines (9 loc) 400 B
export declare const SUPPORTED_NETWORKS: readonly ["naga-local", "naga-test", "naga-dev", "naga-staging", "naga-proto", "naga"]; export type SupportedNetwork = (typeof SUPPORTED_NETWORKS)[number]; export type EnvVars = { network: SupportedNetwork; privateKey: `0x${string}`; rpcUrl?: string | undefined; localContextPath?: string; }; export declare function createEnvVars(): EnvVars;