Skip to content

feat: v103#70

Open
frisitano wants to merge 128 commits intoscrollfrom
feat/v103
Open

feat: v103#70
frisitano wants to merge 128 commits intoscrollfrom
feat/v103

Conversation

@frisitano
Copy link
Collaborator

No description provided.

rakita and others added 30 commits October 15, 2025 02:27
* revert: JumpTable old serde format

* fix resize and bump all test fixtures

* rm unused import

* Update crates/bytecode/src/legacy/jump_map.rs

Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com>

---------

Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* feat: Optional Bytecode in CallInput

* fmt
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
* chore: journal transfer fn cleanup

* reintroduce caller touch

* Update crates/context/src/journal/inner.rs

Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com>

---------

Co-authored-by: Arsenii Kulikov <klkvrr@gmail.com>
…bluealloy#3093)

* chore(inspector): remove redundant EthInterpreter import in either.rs

* fmt
…uealloy#3094)

* fix(op-revm): add missing enveloped_tx validation in validate_env

* cargo fmt
…y#3091)

* chore(precompile): remove unused mainnet_address() function

* nit
…luealloy#3105)

* remove redundant alloy-eip7702 from handler dev-dependencies

* cleanup

* more clean up

* revert wrong ci fix
* feat: dont load access list immediatly

* nits fmt

* nit, rm clone
…associated with Jovian. (bluealloy#3120)

* fix(jovian/storage): fix jovian's storage slot for da footprint gas scalar

* fix(jovian): fix l1 hardfork matching jovian. expose da footprint gas scalar getter
…lloy#3086)

* JournaledAcccount

* PoC: JournaledAccount, a nice way to update and track changes

* cleanup

* rm artifact

* inline some of host fn

* beneficiary refactor

* nit

* nits

* fmt

* rename and make old fn deprecated
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
) (bluealloy#3134)

* feat(precompiles/jovian): add jovian precompiles to revm (bluealloy#3128)

* clippy fix

---------

Co-authored-by: theo <80177219+theochap@users.noreply.github.com>
Wodann and others added 30 commits December 31, 2025 11:24
…lloy#3267)

* Add Display trait for ExecutionResult and related types

* fix fmt
* add optimization for push and pop

* format

* format

* add assume and unlikely instrincts

* revert

* Update crates/interpreter/src/interpreter/stack.rs
* feat: move GasParams to Cfg

* propagate spec id

* use cfg spec when evm is created

* nits

* nit

* doc tests

* use derive-where to skip fn

* Move SetSpecTr and use it as main tr

* remove SetSpecTr, introduce is_custom_gas_param flag

* simplification

* nits and tests fix

* morf spec type

* dont compare ptr

* import fix

* typo

* ref alloy-eips

* add core::error::Error impl to BalError

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* send/sync on GasParams

* relex generic for some Cfg functions

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
* feat: move GasParams to Cfg

* propagate spec id

* use cfg spec when evm is created

* nits

* nit

* doc tests

* use derive-where to skip fn

* Move SetSpecTr and use it as main tr

* feat: add codedeposit price in GasParams

* remove SetSpecTr, introduce is_custom_gas_param flag

* simplification

* nits and tests fix

* morf spec type

* dont compare ptr

* import fix

* typo

* ref alloy-eips

* add core::error::Error impl to BalError

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>

* send/sync on GasParams

* relex generic for some Cfg functions

* load_account_mut_skip_cold

* WIP

* move initial tx gas calc to GasParams

* fixes

---------

Co-authored-by: Claude Opus 4.5 <noreply@anthropic.com>
* fix(database): make DatabaseCommit dyn-compatible

* fix performance & improve API

* fix(database): make DatabaseCommit dyn-compatible by changing commit_iter to use &mut dyn Iterator
…AlloyDB (bluealloy#3284)

* fix(database): return error instead of panic when block not found in AlloyDB

- Change DBTransportError struct to AlloyDBError enum
- Add BlockNotFound variant for missing block errors
- Handle None case in block_hash_async_ref gracefully

This fixes potential panics when:
- Using pruned nodes with deleted block data
- Using light clients without full block data
- Requesting future or non-existent block numbers

Closes bluealloy#3278

* Apply suggestion from @rakita
…luealloy#3282)

* feat(inspector): make TestInspector public for testing EVM variants

* fix ci
- state.rs: Fix 'After block is finishes' -> 'After block finishes'
- state.rs: Fix 'Addition layer' -> 'Additional layer', 'fetched' -> 'fetch'
- state.rs: Fix 'Takess' -> 'Takes'
- bundle_state.rs: Fix incomplete sentence to match function docs
- async_db.rs: Fix incorrect doc reference to actual method called
…alloy#3262)

Eliminate code duplication by consolidating three separate implementations
of find_all_json_tests into a single shared implementation in the dir_utils
module. This reduces maintenance burden and ensures consistent behavior
across blockchaintest and statetest commands.
…cy (bluealloy#3294)

* Update README.md

* Fix typo in MIGRATION_GUIDE.md

Corrected a typo in the description of `PrecompileError`.

* Update inspector.md

* Update revme.md

* Update contact.md

* Update documentation comment for isthmus function

* Update awesome.md

* Update architecture.md

* Update README.md

* Update README.md
* chore: apply improvements from ai-bot labeled PRs

This commit consolidates improvements from 8 community PRs with the ai-bot label:

- fix: correct debug log for blob gas fields in blockchaintest (bluealloy#3291)
  Split blob_excess_gas_and_price into separate debug outputs for clarity

- perf(state): remove redundant clones in account_info.rs (bluealloy#3287)
  Eliminate unnecessary clone operations in test code

- docs: fix duplicate word in MIGRATION_GUIDE.md (bluealloy#3209)
  Remove duplicate "allows" in PrecompileError documentation

- fix: return G2NotInSubgroup for G2 subgroup check failure (bluealloy#3179)
  Correct error type from G1NotInSubgroup to G2NotInSubgroup in BLS12-381

- refactor: reuse bound tx and remove redundant context.tx() calls (bluealloy#3176)
  Optimize validation by reusing transaction binding

- docs: fix incorrect reth references in blockchain.rs comments (bluealloy#3169)
  Update comments to use correct terminology instead of "reth"

- perf: use lazy defaults for env vars in burntpix benchmark (bluealloy#3071)
  Replace unwrap_or with unwrap_or_else to avoid unnecessary allocations

All changes have been tested with cargo check and cargo test.

* fmt
…Outcome, and FrameResult (bluealloy#3309)

Add convenience constructors for creating out-of-gas results:
- `InterpreterResult::new_oog(gas_limit)`
- `CallOutcome::new_oog(gas_limit, memory_offset)`
- `CreateOutcome::new_oog(gas_limit)`
- `FrameResult::new_call_oog(gas_limit, memory_offset)`
- `FrameResult::new_create_oog(gas_limit)`
…12_381 (bluealloy#3301)

* Create pairing_common.rs

* Update bls12_381.rs

* Update arkworks.rs

* Update blst.rs

* fmt
…oy#3310)

Add `sstore_set_refund` and `sstore_reset_refund` GasIds so that
`sstore_refund` no longer depends on `sstore_set_without_load_cost`
and `sstore_reset_without_cold_load_cost` which are used in
`sstore_dynamic_gas`. This allows the two functions to have
independent gas parameters while maintaining the same values.
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.