Refresh package-lock.json for the moved hardhat-tron main - #152
Merged
Conversation
The @openzeppelin/hardhat-tron git dependency tracks main. Their main now consumes @openzeppelin/tron-runtime ^0.1.0 from npm and bumps tronweb to 6.5.0, so npm ci fails against the stale lockfile on every branch. Re-resolve the lockfile. The jar-patch source pin follows the lockfile, so TRE jars now build from hardhat-tron 603106cd. Validated locally: clean npm ci, jar rebuild via build-tre-fork.sh (tre_version reports v1.0.4-oz-tron), tron-solc compile, and TRE smoke tests (P256 and Create2 suites) against the rebuilt jar. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
ethers 6.17 adds a width parameter to toBeArray. Array.map passes the element index as the second argument, so .map(ethers.toBeArray) now throws a NUMERIC_FAULT overflow for width 0. Call it with the value only, matching upstream openzeppelin-contracts. Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
… into refresh-hardhat-tron-lockfile
luiz-lvj
approved these changes
Aug 24, 2026
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.
@openzeppelin/hardhat-tronis a git dependency onmain. Their main moved on 2026-08-21/22: it now consumes@openzeppelin/tron-runtime ^0.1.0from npm and bumpstronwebto 6.5.0 (withethers6.17.0 and friends).npm civalidates the lockfile against the branch HEAD manifest, so every CI job that installs dependencies now fails on every branch, including master.This PR only re-resolves
package-lock.json. Side effect: the TRE jar-patch source pin follows the lockfile, so jars now build from hardhat-tron603106cd(which includes thetre_mineAtomicBoolean fix).Validated locally:
npm cipassesscripts/build-tre-fork.shbuilds against the new pin;tre_versionreportsv1.0.4-oz-tronPR #150 will be stacked on this branch.
🤖 Generated with Claude Code