Skip to content

Commit

Permalink
feat: support Morphoblue on Goerli
Browse files Browse the repository at this point in the history
Jeff-CCH committed Jan 2, 2024

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
1 parent fc14d7c commit ffd0faa
Showing 37 changed files with 4,391 additions and 18 deletions.
5 changes: 5 additions & 0 deletions .changeset/tame-keys-decide.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
'@protocolink/logics': patch
---

support Morphoblue on Goerli
2 changes: 2 additions & 0 deletions .env.goerli
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
CHAIN_ID=5
HTTP_RPC_URL=https://rpc.ankr.com/eth_goerli
9 changes: 5 additions & 4 deletions package.json
Original file line number Diff line number Diff line change
@@ -20,17 +20,18 @@
"lint": "eslint --fix src",
"prepublishOnly": "yarn build",
"test": "mocha",
"test:e2e": "yarn run test:e2e:mainnet && yarn run test:e2e:polygon && yarn run test:e2e:metis && yarn run test:e2e:arbitrum",
"test:e2e": "yarn run test:e2e:mainnet && yarn run test:e2e:goerli && yarn run test:e2e:polygon && yarn run test:e2e:metis && yarn run test:e2e:arbitrum",
"test:e2e:mainnet": "env-cmd -f .env.mainnet hardhat test --grep 'mainnet'",
"test:e2e:goerli": "env-cmd -f .env.arbitrum hardhat test --grep 'goerli'",
"test:e2e:polygon": "env-cmd -f .env.polygon hardhat test --grep 'polygon'",
"test:e2e:metis": "env-cmd -f .env.metis hardhat test --grep 'metis'",
"test:e2e:arbitrum": "env-cmd -f .env.arbitrum hardhat test --grep 'arbitrum'",
"test:unit": "mocha --recursive src"
},
"dependencies": {
"@paraswap/sdk": "^6.2.2",
"@protocolink/common": "^0.3.5",
"@protocolink/core": "^0.4.5",
"@protocolink/common": "^0.3.6",
"@protocolink/core": "^0.4.6",
"@types/lodash": "^4.14.195",
"@uniswap/sdk-core": "^3.2.6",
"@uniswap/token-lists": "^1.0.0-beta.31",
@@ -47,7 +48,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.3.4",
"@protocolink/test-helpers": "^0.3.5",
"@typechain/ethers-v5": "^11.0.0",
"@types/chai": "^4.3.5",
"@types/fs-extra": "^11.0.1",
1 change: 1 addition & 0 deletions src/logics/index.ts
Original file line number Diff line number Diff line change
@@ -3,6 +3,7 @@ export * as aavev3 from './aave-v3';
export * as balancerv2 from './balancer-v2';
export * as compoundv2 from './compound-v2';
export * as compoundv3 from './compound-v3';
export * as morphoblue from './morphoblue';
export * as openoceanv2 from './openocean-v2';
export * as paraswapv5 from './paraswap-v5';
export * as permit2 from './permit2';
Loading

0 comments on commit ffd0faa

Please sign in to comment.