Files
orionprotocol-sdk/src/constants/exchangesMap.ts
Aleksandr Kraiz 8588b55725 ESM
2023-03-31 17:47:56 +04:00

27 lines
522 B
TypeScript

import type exchanges from './exchanges.js';
const mapping: Record<
typeof exchanges[number],
string
> = {
// CEXes
ASCENDEX: 'AscendEx',
OKX: 'OKX',
BINANCE: 'Binance',
KUCOIN: 'KuCoin',
ORION: 'Orion', // Internal
// DEXes
SPOOKYSWAP: 'SpookySwap',
PANCAKESWAP: 'PancakeSwap',
UNISWAP: 'Uniswap',
QUICKSWAP: 'QuickSwap',
ORION_POOL: 'Orion Pool',
CHERRYSWAP: 'CherrySwap',
OKXSWAP: 'OKXSwap',
CURVE: 'Curve',
CURVE_FACTORY: 'Curve Factory',
} as const;
export default mapping;