Files
orionprotocol-sdk/src/constants/chains.ts
Aleksandr Kraiz 88010c8364 Updated README
2022-11-14 14:07:15 +04:00

17 lines
421 B
TypeScript

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