mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-17 00:31:34 +03:00
21 lines
520 B
TypeScript
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,
|
|
];
|