From eb14bd8c29ba145fa61a78bf30a22fb421b9dd39 Mon Sep 17 00:00:00 2001 From: Doublo Date: Tue, 8 Aug 2023 19:00:24 +0200 Subject: [PATCH] feat: added dexDisplayAttributes --- src/constants/dexDisplayAttributes.ts | 28 +++++++++++++++++++++++++++ src/constants/index.ts | 1 + 2 files changed, 29 insertions(+) create mode 100644 src/constants/dexDisplayAttributes.ts diff --git a/src/constants/dexDisplayAttributes.ts b/src/constants/dexDisplayAttributes.ts new file mode 100644 index 00000000..74054450 --- /dev/null +++ b/src/constants/dexDisplayAttributes.ts @@ -0,0 +1,28 @@ +import { LiquidityDex } from '../types' + +export const dexDisplayAttributes: Record = { + [LiquidityDex.ApeSwapV2]: { + icon: 'https://raw.githubusercontent.com/ApeSwapFinance/apeswap-token-lists/main/assets/APE-LP.svg', + tag: 'APESWAP LP', + }, + [LiquidityDex.Algebra]: { + icon: 'https://raw.githubusercontent.com/ApeSwapFinance/apeswap-token-lists/main/assets/QUICK.png', + tag: 'QUICKSWAP GAMMA LP', + }, + [LiquidityDex.PancakeSwapV2]: { + icon: 'https://raw.githubusercontent.com/ApeSwapFinance/apeswap-token-lists/main/assets/CAKE.png', + tag: 'PANCAKE LP', + }, + [LiquidityDex.QuickswapV2]: { + icon: 'https://raw.githubusercontent.com/ApeSwapFinance/apeswap-token-lists/main/assets/QUICK.png', + tag: 'QUICKSWAP LP', + }, + [LiquidityDex.ApeSwapV3]: { + icon: '', + tag: '', + }, + [LiquidityDex.UniswapV3]: { + icon: '', + tag: '', + }, +} diff --git a/src/constants/index.ts b/src/constants/index.ts index e48ebf11..09fcbe09 100644 --- a/src/constants/index.ts +++ b/src/constants/index.ts @@ -12,3 +12,4 @@ export { default as farmsV2 } from './farmsV2' export { default as vaultsV3 } from './vaultsV3' export * from './dexFactories' export * from './dexToZapMapping' +export * from './dexDisplayAttributes'