Files
orionprotocol-sdk/src/constants/chains.ts
Slava Startsev 8dead845d1 Update to event horizon testnet (#262)
* chore: update EH variable name for tn

* chore: bump v
2024-06-18 18:26:17 +03:00

21 lines
520 B
TypeScript

import { SupportedChainId } from '../types.js';
export const developmentChains = [
SupportedChainId.BSC_TESTNET,
SupportedChainId.SEPOLIA,
SupportedChainId.EVENT_HORIZON_TESTNET,
];
export const productionChains = [
SupportedChainId.MAINNET,
SupportedChainId.BSC,
SupportedChainId.FANTOM_OPERA,
SupportedChainId.POLYGON,
SupportedChainId.OKC,
SupportedChainId.ARBITRUM,
SupportedChainId.OPBNB,
SupportedChainId.INEVM,
SupportedChainId.LINEA,
SupportedChainId.AVAX,
SupportedChainId.BASE,
];