Skip to content

Commit

Permalink
Merge pull request #196 from ApeSwapFinance/feat/nonApeBond-design-co…
Browse files Browse the repository at this point in the history
…nfig

feat: added dexDisplayAttributes
  • Loading branch information
Doublo54 authored Aug 9, 2023
2 parents aa47d2b + eb14bd8 commit 0cfa4e8
Show file tree
Hide file tree
Showing 2 changed files with 29 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/constants/dexDisplayAttributes.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
import { LiquidityDex } from '../types'

export const dexDisplayAttributes: Record<LiquidityDex, { icon: string; tag: string }> = {
[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: '',
},
}
1 change: 1 addition & 0 deletions src/constants/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -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'

0 comments on commit 0cfa4e8

Please sign in to comment.