edr
edr copied to clipboard
### Describe the feature Currently if there is an error from EDR, only the name of the error is thrown on the javascript side, with empty data. https://github.com/NomicFoundation/edr/blob/cffc411f04777f90a40f055e368585c88d3a3102/crates/edr_provider/src/requests/eth/transactions.rs#L460 For e.g....
### Version of Hardhat 2.22.3 ### What happened? Forked arbitrum sepolia with `npx hardhat node`, when trying to run a typescript script that calls any function on-chain (even simple view...
**Definition of done** `hardhat-tracer` should work with HH+EDR as well as it works with HH+EJS. Performance is not significantly degraded when used with HH+EDR. **To-do** - [x] #331 - [x]...
Currently, the `optimism` feature flag removes part of the default feature set of REVM. This prevents us from using vanilla Ethereum and Optimism side-by-side. **Definition of Done** - Ensure that...
Add an entry in the EDR book about how to use `pnpm link` to work on changes that involve both Hardhat and EDR.
The [EDR](https://github.com/NomicFoundation/edr/actions/workflows/edr-ci.yml) workflow takes more than 25 minutes to run. We should check if there's room for improvement here. One easy gain is to remove the dependency between the tests...
This PR was opened by the [Changesets release](https://github.com/changesets/action) GitHub action. When you're ready to do a release, you can merge this and publish to npm yourself or [setup this action...
Related issues and PRs: - NomicFoundation/hardhat#2425
- Adds verbose tracing option which includes full stack and memory on the Rust side for https://github.com/NomicFoundation/edr/issues/331 - Adds `isStaticCall` flag to `BeforeMessage` on the Rust side for https://github.com/NomicFoundation/edr/issues/333 -...
### Describe the feature I have this utility created to see the bitwise values in a word for testing and debugging contract logic, particularly when using bit masks. Wondering if...