Skip to content

Commit

Permalink
Merge pull request #447 from ApeSwapFinance/staging
Browse files Browse the repository at this point in the history
soulzap univ2 base
  • Loading branch information
ape-fede authored Jul 3, 2024
2 parents be68586 + 50d36c2 commit 6ac39ce
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 3 deletions.
13 changes: 13 additions & 0 deletions config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -3137,6 +3137,19 @@
},
"active": true
},
"sqr": {
"symbol": "SQR",
"address": {
"56": "0x2B72867c32CF673F7b02d208B26889fEd353B1f8"
},
"decimals": {
"56": 8
},
"liquidityDex": {
"56": "PancakeSwapV3"
},
"active": true
},
"mfps": {
"symbol": "MFPS",
"address": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@ape.swap/apeswap-lists",
"version": "2.0.2",
"version": "2.0.5",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
4 changes: 3 additions & 1 deletion src/constants/dexFactories.ts
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import { ChainId, LiquidityDex, Protocols } from '../types'

export const dexFactories: Partial<
Record<ChainId, Partial<Record<LiquidityDex, { factory: string; protocol: Protocols }>>>
Record<ChainId, Partial<Record<LiquidityDex, { factory: string; router?: string; protocol: Protocols }>>>
> = {
[ChainId.MAINNET]: {
[LiquidityDex.ApeSwapV2]: {
Expand Down Expand Up @@ -134,6 +134,7 @@ export const dexFactories: Partial<
},
[LiquidityDex.Aerodrome]: {
factory: '0x420DD381b31aEf6683db6B902084cB0FFECe40Da',
router: '0xcF77a3Ba9A5CA399B7c97c74d54e5b1Beb874E43',
protocol: Protocols.Solidly,
},
[LiquidityDex.SmarDex]: {
Expand All @@ -142,6 +143,7 @@ export const dexFactories: Partial<
},
[LiquidityDex.UniswapV2]: {
factory: '0x8909Dc15e40173Ff4699343b6eB8132c65e18eC6',
router: '0x4752ba5dbc23f44d87826276bf6fd6b1c372ad24',
protocol: Protocols.V2,
},
},
Expand Down
2 changes: 1 addition & 1 deletion src/constants/dexToZapMapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ export const dexToZapMapping: Record<LiquidityDex, Partial<Record<ChainId, ZapVe
[LiquidityDex.UniswapV3]: {},
[LiquidityDex.ThenaV1]: {},
[LiquidityDex.UniswapV2]: {
[ChainId.BASE]: ZapVersion.External,
[ChainId.BASE]: ZapVersion.SoulZapApi,
},
[LiquidityDex.PancakeSwapV3]: {},
[LiquidityDex.External]: {},
Expand Down
11 changes: 11 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3059,6 +3059,17 @@ const tokens: Record<string, Token> = {
},
active: true,
},
sqr: {
symbol: 'SQR',
address: {
[ChainId.BSC]: '0x2B72867c32CF673F7b02d208B26889fEd353B1f8',
},
decimals: { [ChainId.BSC]: 8 },
liquidityDex: {
[ChainId.BSC]: LiquidityDex.PancakeSwapV3,
},
active: true,
},
mfps: {
symbol: 'MFPS',
address: {
Expand Down

0 comments on commit 6ac39ce

Please sign in to comment.