chore(deps): update dependency hardhat to v2.24.2#133
Merged
renovate[bot] merged 1 commit intomainfrom Jun 4, 2025
Merged
Conversation
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Reviewer's GuideBumps the Hardhat dependency from v2.24.1 to v2.24.2 by updating the version in package.json and regenerating the lockfile to pull in the patch that wraps eth_accounts on HTTP providers for deprecated method support. Sequence Diagram: Hardhat HttpProvider Handling Deprecated eth_accountssequenceDiagram
actor Developer
participant HardhatProject as Hardhat Project
participant HttpProvider as Hardhat HttpProvider (v2.24.2)
participant EthereumNode as Ethereum Node
Developer->>HardhatProject: Run task requiring accounts (e.g., deploy, test)
HardhatProject->>HttpProvider: Request accounts
HttpProvider->>EthereumNode: Call eth_accounts RPC method
alt Node has deprecated eth_accounts
HttpProvider->>HttpProvider: Apply new logic to handle deprecated eth_accounts
EthereumNode-->>HttpProvider: Response indicating deprecation (e.g., error, empty list)
HttpProvider-->>HardhatProject: Accounts (e.g., from alternative source, or empty) or Processed Error
else Node supports eth_accounts (legacy behavior)
EthereumNode-->>HttpProvider: Accounts list
HttpProvider-->>HardhatProject: Accounts list
end
HardhatProject-->>Developer: Task result (e.g., deployment status, test results)
File-Level Changes
Possibly linked issues
Tips and commandsInteracting with Sourcery
Customizing Your ExperienceAccess your dashboard to:
Getting Help
|
📦 Packages
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
2.24.1->2.24.2Release Notes
nomiclabs/hardhat (hardhat)
v2.24.2: Hardhat v2.24.2Compare Source
This release is a small bug fix to deal with nodes that have deprecated support for the
eth_accountsRPC call.Changes
2bbb705: Wrap eth_accounts usage on http provider to handle method deprecation (#6632)Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR was generated by Mend Renovate. View the repository job log.
Summary by Sourcery
Upgrade Hardhat to v2.24.2 to incorporate a patch for handling deprecated eth_accounts RPC calls.
Bug Fixes:
Build: