Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: disable native and stable coins in Stargate V2, add cake between bnb and polygon zkevm #77

Merged
merged 2 commits into from
Aug 16, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .changeset/yellow-pianos-wink.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@protocolink/logics': patch
---

disable native and stable coins in Stargate V2, add cake between bnb and polygon zkevm
2 changes: 2 additions & 0 deletions .env.bnb
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHAIN_ID=56
HTTP_RPC_URL=https://rpc.ankr.com/bsc
2 changes: 2 additions & 0 deletions .env.polygonZkevm
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHAIN_ID=1101
HTTP_RPC_URL=https://zkevm-rpc.com
12 changes: 7 additions & 5 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,19 +20,21 @@
"lint": "eslint --fix src",
"prepublishOnly": "yarn build",
"test": "mocha",
"test:e2e:latest": "yarn run test:e2e:mainnet && yarn run test:e2e:metis",
"test:e2e:latest": "yarn run test:e2e:mainnet && yarn run test:e2e:metis && yarn run test:e2e:bnb && yarn run test:e2e:polygonZkevm",
"test:e2e:mainnet": "env-cmd -f .env.mainnet hardhat test --grep 'mainnet:'",
"test:e2e:mainnet:pb": "env-cmd -f .env.mainnet.pb hardhat test --grep 'mainnet-pb:'",
"test:e2e:optimism:pb": "env-cmd -f .env.optimism.pb hardhat test --grep 'optimism-pb:'",
"test:e2e:iota:pb": "env-cmd -f .env.iota.pb hardhat test --grep 'iota-pb:'",
"test:e2e:metis": "env-cmd -f .env.metis hardhat test --grep 'metis:'",
"test:e2e:bnb": "env-cmd -f .env.bnb hardhat test --grep 'bnb:'",
"test:e2e:polygonZkevm": "env-cmd -f .env.polygonZkevm hardhat test --grep 'polygonZkevm:'",
"test:unit": "mocha --recursive src"
},
"dependencies": {
"@paraswap/sdk": "^6.6.0",
"@protocolink/common": "^0.5.3",
"@protocolink/core": "^0.6.2",
"@protocolink/smart-accounts": "^0.1.6",
"@protocolink/common": "^0.5.4",
"@protocolink/core": "^0.6.3",
"@protocolink/smart-accounts": "^0.1.7",
"@types/lodash": "^4.14.195",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^3.2.6",
Expand All @@ -50,7 +52,7 @@
"@nomicfoundation/hardhat-chai-matchers": "^1.0.6",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@protocolink/test-helpers": "^0.4.4",
"@protocolink/test-helpers": "^0.4.5",
"@typechain/ethers-v5": "^11.0.0",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
Expand Down
Loading
Loading