Hacktoberfest 2026: the issues maintainers tagged for October, open and beginner-friendly. Browse Hacktoberfest issues

Feature: Pre-built Emergency Address Freeze Hardfork

Open
#110 0 comments 0 reactions 0 assignees View on GitHub

Nobody has claimed this yet.

Assessment

Difficulty
5/5
Estimated time
Over a week
Newbie friendliness
25/100
Issue type
Feature
Clarity
Mostly clear
Activity status
Stale
Tech stack
rust

Research direction

Start by reading the block validation entry point validate_post_block_execution and the block-building commit conditions described in the issue. Compare the proposed hardfork and oracle approaches, then use the acceptance criteria to scope the Kurtosis tests, transfer coverage, and deployment documentation needed for completion.

Written by the indexing model from the issue text.

Description

enhancement

Summary

Chains using Reth lack ready-to-deploy tooling for freezing wallet activity during active exploits. This issue proposes a pre-tested hardfork template that can restrict token transfers from arbitrary addresses with minimal configuration.

Problem

When an exploit occurs, engineering teams must build and test address-freezing logic under time pressure. This introduces risk of mistakes and extends chain downtime. A pre-built solution would let teams respond faster and with more confidence.

Proposed Solution

1. Emergency Freeze Hardfork Template

A tested, documented hardfork module that can:

  • Freeze native token, ERC20, and ERC721 movement from a configurable address list
  • Allow transfers only to a designated rescue address
  • Deploy with config-only changes (no code modifications required)
  • Include pre-written tests for all freeze scenarios

Implementation locations:

  • Block validation (validate_post_block_execution): Reject blocks containing prohibited transfers by inspecting receipt logs for Transfer events
  • Block building (commit conditions): Prevent validators from proposing invalid blocks
2. Oracle-based Address Blocklist (Exploratory)

Investigate mechanisms to freeze addresses without chain downtime:

Option A: Consensus client maintains a blocklist oracle, injected into execution client via Engine API

Option B: Authorized oracle submits blocked addresses to an on-chain contract, read during post-block execution

Trade-offs to consider:

  • Race condition risk (attacker may transact before rules update)
  • Decentralization implications of authorized oracles
  • Effectiveness depends on control over block builders

Acceptance Criteria

  • Emergency freeze hardfork template with configurable address list
  • Coverage for native token, ERC20, and ERC721 transfers
  • Kurtosis-based test suite validating freeze behavior
  • Deployment documentation
  • (Optional) Evaluation of oracle-based approach

References

Dominant language
Rust
Stars
8
Forks
9
Avg merge
3d 17h
Merged PRs (30d)
4

Contributor guide

Open the contributing guide

First steps

  1. Read the whole issue, then the project's contributing guide.
  2. Comment on the issue to say you are picking it up — it saves two people doing the same work.
  3. Fork the repository and make your change on a branch.
  4. Open a pull request that references the issue number.

More from evstack/ev-reth

All issues in evstack/ev-reth

Similar issues

More Rust issues

Get new issues in your inbox

A short digest of beginner-friendly GitHub issues.