add exchanges

This commit is contained in:
Dmitriy Pavlov
2023-09-08 11:13:46 +03:00
parent c47d1ed538
commit 50dbdce577
2 changed files with 13 additions and 6 deletions

View File

@@ -1,6 +1,6 @@
{
"name": "@orionprotocol/sdk",
"version": "0.19.80",
"version": "0.19.81-rc0",
"description": "Orion Protocol SDK",
"main": "./lib/index.cjs",
"module": "./lib/index.js",

View File

@@ -20,11 +20,18 @@ const exchangeToType: Partial<Record<string, Factory>> = {
'CHERRYSWAP': 'UniswapV2',
'OKXSWAP': 'UniswapV2',
'INTERNAL_POOL_V2': 'UniswapV2',
'INTERNAL_POOL_V3': "OrionV3",
'INTERNAL_POOL_V3_0_01': "OrionV3",
'INTERNAL_POOL_V3_0_05': "OrionV3",
'INTERNAL_POOL_V3_0_3': "OrionV3",
'INTERNAL_POOL_V3_1_0': "OrionV3",
'UniswapV3_0_05': 'UniswapV3',
'UniswapV3_0_3': 'UniswapV3',
'UniswapV3_1_0': 'UniswapV3',
'INTERNAL_POOL_V3': 'OrionV3',
'INTERNAL_POOL_V3_0_01': 'OrionV3',
'INTERNAL_POOL_V3_0_05': 'OrionV3',
'INTERNAL_POOL_V3_0_3': 'OrionV3',
'INTERNAL_POOL_V3_1_0': 'OrionV3',
'PancakeSwapV3_0_01': 'PancakeSwapV3',
'PancakeSwapV3_0_05': 'PancakeSwapV3',
'PancakeSwapV3_0_25': 'PancakeSwapV3',
'PancakeSwapV3_1_0': 'PancakeSwapV3',
'CURVE': "Curve",
'CURVE_FACTORY': "Curve",
}