John Kane
John Kane
We see lots of issues with `hardhat-verify` that are really temporary issues with the block explorer or an odd setup, or just a block explorer that doesn't meet the expected...
Replace `ethereumjs` usages with [micro-eth-signer](https://github.com/paulmillr/micro-eth-signer) for Hardhat v3. With EDR replacing the Hardhat Network with a rust implementation we are using Ethereumjs less. We suspect our remaining usages are related...
To reduce the number of CI fails due to a solc compiler download failure we should add OS specific cache for the solc cache folder. We shouldn't need cache invalidation...
Whenever we add a new package, which will happen over and over in v3, we need to add a specific CI workflow. We want to investigate simplifying our workflows down...
As part of the Hardhat v3 work we want to make the build system a top level component. Currently it is expressed as a collection of tasks. Our intent is...
Create a utility package that abstracts some of our use of Node APIs in Hardhat. We have not explicit goal to support alternate javascript runtimes (i.e. bun, deno), but as...
The boilerplate project (https://github.com/NomicFoundation/hardhat-boilerplate) uses Ignition, but it is having to invoke it through run rather than a cleaner use of `ignition-core` utils. With the latest version of Hardhat Ignition...
After HH + EDR, fork `main` and split out the mocha test runner. We want to add an abstraction that will allow plugins to swap in an alternative test runner....
Originally mentioned here: https://github.com/NomicFoundation/hardhat/issues/5058?notification_referrer_id=NT_kwDNXd6xMTAwOTEzMDgyODI6MjQwMzA#issuecomment-2031605197 If the user adds `hardhat-verify` after `@openzeppelin/hardhat-upgrades` they will get: ```shell Error HH210: Redefinition of task verify failed. Unsupported operation adding positional param definitions in an...
If you use the `hh` shorthand cli tool on Windows, it opens the HTML help app:  Initially raised in this discussion: https://github.com/NomicFoundation/hardhat/discussions/4971 ## Reproduction steps 1. Install the `hh`...