# Python 3.12が必要。uvがインストール済みであることを前提とします。
git clone https://github.com/ethereum/execution-specs
cd execution-specs
uv python pin 3.12
uv sync
# Ethereumのハードフォーク一覧をPythonで確認
uv run python -c "
import pkgutil, importlib
import ethereum
forks = [m.name for m in pkgutil.iter_modules(ethereum.__path__)]
print('Ethereum forks in EELS:')
for f in sorted(forks):
    print(' -', f)
"
