-
Notifications
You must be signed in to change notification settings - Fork 5
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
Feat/upgrade dependencies Next/React #65
Conversation
Dependency ReviewThe following issues were found:
|
src/app/lib/action.ts
Fixed
logger.dispensed(dispenseAddress, txHash); | ||
|
||
try { | ||
const currentAddress = faucetHistory[dispenseAddress]; | ||
currentAddress.loading = true; | ||
const receipt = await web3.eth.sendSignedTransaction(encodedTx); | ||
|
||
const receipt = await web3.eth.sendSignedTransaction(signedTx.rawTransaction); |
Check notice
Code scanning / CodeQL
Unused variable, import, function or class Note
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is solved in further commit (5ba4786)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
This is an upgrade of different critical dependencies, included the next:
React from 18 to 19
Next from 14 to 15
Important change: Previous react-card-carousel was not compatible with this upgrade (hasn't been maintained since 4 years ago) so it was changed to swiper carousel package (which is currently maintained)
Also upgrading some other minor dependencies.