Fix mapping

This commit is contained in:
Aleksandr Kraiz
2023-08-09 19:31:14 +04:00
parent 0fcc180b08
commit 7b32a6d52a
2 changed files with 3 additions and 8 deletions

View File

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

View File

@@ -1,9 +1,4 @@
import type exchanges from './exchanges.js';
const mapping: Record<
typeof exchanges[number],
string
> = {
const mapping: Record<string, string> = {
// CEXes
ASCENDEX: 'AscendEx',
OKX: 'OKX',
@@ -28,6 +23,6 @@ const mapping: Record<
OKXSWAP: 'OKXSwap',
CURVE: 'Curve',
CURVE_FACTORY: 'Curve Factory',
} as const;
};
export default mapping;