Added exchanges map

This commit is contained in:
Aleksandr Kraiz
2022-12-14 18:37:50 +04:00
parent 60a2bc0bcd
commit 363dafc45c
9 changed files with 59 additions and 28 deletions

View File

@@ -0,0 +1,26 @@
import exchanges from './exchanges';
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;