Skip to content

Commit

Permalink
fix openEth bond (#238)
Browse files Browse the repository at this point in the history
* chore: add liquidity url for openETH

* chore: remove arbitrum zap

* chore: Increase version
  • Loading branch information
ape-fede authored Nov 20, 2023
1 parent df89be3 commit 55e743c
Show file tree
Hide file tree
Showing 5 changed files with 17 additions and 5 deletions.
10 changes: 8 additions & 2 deletions config/bills.json
Original file line number Diff line number Diff line change
Expand Up @@ -10275,7 +10275,10 @@
"42161": 18
},
"active": true,
"lpToken": true
"lpToken": true,
"getLpUrl": {
"42161": "https://apeswap.finance/add-liquidity/ETH/0x58CB98A966F62aA6F2190eB3AA03132A0c3de3D5"
}
},
"earnToken": {
"symbol": "OPEN",
Expand Down Expand Up @@ -10432,7 +10435,10 @@
"42161": 18
},
"active": true,
"lpToken": true
"lpToken": true,
"getLpUrl": {
"42161": "https://apeswap.finance/add-liquidity/ETH/0x58CB98A966F62aA6F2190eB3AA03132A0c3de3D5"
}
},
"earnToken": {
"symbol": "OPEN",
Expand Down
5 changes: 4 additions & 1 deletion config/tokens.json
Original file line number Diff line number Diff line change
Expand Up @@ -3443,6 +3443,9 @@
"42161": 18
},
"active": true,
"lpToken": true
"lpToken": true,
"getLpUrl": {
"42161": "https://apeswap.finance/add-liquidity/ETH/0x58CB98A966F62aA6F2190eB3AA03132A0c3de3D5"
}
}
}
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": "1.5.50",
"version": "1.5.52",
"main": "dist/index.js",
"typings": "dist/index.d.ts",
"publishConfig": {
Expand Down
2 changes: 1 addition & 1 deletion src/constants/dexToZapMapping.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ export const dexToZapMapping: Record<LiquidityDex, Partial<Record<ChainId, ZapVe
[ChainId.MATIC]: ZapVersion.ZapV1,
[ChainId.MATIC_TESTNET]: ZapVersion.ZapV1,
[ChainId.MAINNET]: ZapVersion.ZapV1,
[ChainId.ARBITRUM]: ZapVersion.ZapV1,
[ChainId.ARBITRUM]: ZapVersion.External,
[ChainId.TLOS]: ZapVersion.ZapV1,
},
[LiquidityDex.Algebra]: {
Expand Down
3 changes: 3 additions & 0 deletions src/constants/tokens.ts
Original file line number Diff line number Diff line change
Expand Up @@ -3377,6 +3377,9 @@ const tokens: Record<string, Token> = {
decimals: { [ChainId.ARBITRUM]: 18 },
active: true,
lpToken: true,
getLpUrl: {
[ChainId.ARBITRUM]: 'https://apeswap.finance/add-liquidity/ETH/0x58CB98A966F62aA6F2190eB3AA03132A0c3de3D5',
},
},
}

Expand Down

0 comments on commit 55e743c

Please sign in to comment.