mirror of
https://github.com/vacp2p/rln-interep-contract.git
synced 2025-03-01 06:30:33 +00:00
6 lines
178 B
TypeScript
6 lines
178 B
TypeScript
export const devNets = ["hardhat", "localhost", "goerli"];
|
|
|
|
export const prodNets = ["mainnet"];
|
|
|
|
export const isDevNet = (networkName: string) => devNets.includes(networkName);
|