Files
orionprotocol-sdk/src/constants/chains.ts
2023-02-20 18:28:19 +04:00

18 lines
448 B
TypeScript

import { SupportedChainId } from '../types';
export const developmentChains = [
SupportedChainId.BSC_TESTNET,
SupportedChainId.ROPSTEN,
SupportedChainId.GOERLI,
SupportedChainId.FANTOM_TESTNET,
SupportedChainId.POLYGON_TESTNET,
SupportedChainId.OKC_TESTNET,
];
export const productionChains = [
SupportedChainId.MAINNET,
SupportedChainId.BSC,
SupportedChainId.FANTOM_OPERA,
SupportedChainId.POLYGON,
SupportedChainId.OKC,
];