Skip to content

Commit 06b2807

Browse files
committed
feat(specs): add bpo1 fork
1 parent d1e7e6b commit 06b2807

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

52 files changed

+11373
-4
lines changed

src/ethereum/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121

2222
import sys
2323

24-
__version__ = "2.18.0"
24+
__version__ = "2.19.0"
2525

2626
#
2727
# Ensure we can reach 1024 frames of recursion
Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
"""
2+
The first blob parameter only (BPO) fork, BPO1, includes only changes to the
3+
blob fee schedule.
4+
5+
### Changes
6+
7+
- [EIP-7892: Blob Parameter Only Hardforks][EIP-7892]
8+
9+
### Upgrade Schedule
10+
11+
| Network | Timestamp | Date & Time (UTC) | Fork Hash | Beacon Chain Epoch |
12+
|---------|--------------|-------------------------|--------------|--------------------|
13+
| Holesky | `1759800000` | 2025-10-07 01:20:00 | `0xa280a45c` | `166400` |
14+
| Sepolia | `1761017184` | 2025-10-21 03:26:24 | `0x56078a1e` | `274176` |
15+
| Hoodi | `1762365720` | 2025-11-05 18:02:00 | `0x3893353e` | `52480` |
16+
| Mainnet | `1765290071` | 2025-12-09 14:21:11 | `0xcba2a1c0` | `412672` |
17+
18+
[EIP-7892]: https://eips.ethereum.org/EIPS/eip-7892
19+
""" # noqa: E501
20+
21+
from ethereum.fork_criteria import ByTimestamp, ForkCriteria
22+
23+
FORK_CRITERIA: ForkCriteria = ByTimestamp(1765290071)

0 commit comments

Comments
 (0)