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

chore: update Curve dependencies #584

Merged
merged 1 commit into from
Jan 7, 2025
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
2 changes: 1 addition & 1 deletion apps/dao/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"typescript": "*"
},
"dependencies": {
"@curvefi/api": "^2.65.25",
"@curvefi/api": "^2.65.26",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.9.0",
"@lingui/react": "^4.6.0",
Expand Down
2 changes: 1 addition & 1 deletion apps/main/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"typescript": "*"
},
"dependencies": {
"@curvefi/api": "^2.65.25",
"@curvefi/api": "^2.65.26",
"@hookform/error-message": "^2.0.1",
"@hookform/resolvers": "^3.9.0",
"@lingui/react": "^4.6.0",
Expand Down
14 changes: 14 additions & 0 deletions update-curve.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
cd apps/dao
yarn add @curvefi/api
cd ../../apps/lend
yarn add @curvefi/lending-api
cd ../../apps/loan
yarn add @curvefi/lending-api
yarn add @curvefi/stablecoin-api
cd ../../apps/main
yarn add @curvefi/api
cd ../..
git add .
git commit -m "chore: update Curve API dependencies"
git push
gh pr create --title "chore: update Curve dependencies" --body "- Update Curve API dependencies"
12 changes: 6 additions & 6 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -3328,16 +3328,16 @@ __metadata:
languageName: node
linkType: hard

"@curvefi/api@npm:^2.65.25":
version: 2.65.25
resolution: "@curvefi/api@npm:2.65.25"
"@curvefi/api@npm:^2.65.26":
version: 2.65.26
resolution: "@curvefi/api@npm:2.65.26"
dependencies:
"@curvefi/ethcall": "npm:6.0.7"
axios: "npm:^0.21.1"
bignumber.js: "npm:^9.0.1"
ethers: "npm:^6.11.0"
memoizee: "npm:^0.4.15"
checksum: 10c0/457b62ed1a8a1ac8f910cf4be070b7a4a17ebc6992b4a1594dbc24c517d027c6f59f640ca73be89a75976e975be88db4b86175122200ebd2306a4ea8524457a7
checksum: 10c0/b83287109410ce7308311c61ee4b632a2e1c9d1be26173dec26ab98ed6dd0fcd9206c21204cc9843ae8a66cd7b4a08a609ac21eb47ebfdad313a5dc9397fcb39
languageName: node
linkType: hard

Expand Down Expand Up @@ -15374,7 +15374,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "dao@workspace:apps/dao"
dependencies:
"@curvefi/api": "npm:^2.65.25"
"@curvefi/api": "npm:^2.65.26"
"@hookform/error-message": "npm:^2.0.1"
"@hookform/resolvers": "npm:^3.9.0"
"@lingui/cli": "npm:^4.6.0"
Expand Down Expand Up @@ -21421,7 +21421,7 @@ __metadata:
version: 0.0.0-use.local
resolution: "main@workspace:apps/main"
dependencies:
"@curvefi/api": "npm:^2.65.25"
"@curvefi/api": "npm:^2.65.26"
"@hookform/error-message": "npm:^2.0.1"
"@hookform/resolvers": "npm:^3.9.0"
"@lingui/cli": "npm:^4.6.0"
Expand Down
Loading