mirror of
https://github.com/orionprotocol/sdk.git
synced 2026-03-15 14:42:38 +03:00
17 lines
421 B
TypeScript
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,
|
|
];
|