19 lines
974 B
Bash
19 lines
974 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Print superchain-registry PR checklist (Standard Rollup).
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
cat <<'EOF'
|
||
|
|
Superchain registry PR — operator checklist
|
||
|
|
============================================
|
||
|
|
Reference: https://github.com/ethereum-optimism/superchain-registry/blob/main/docs/ops.md#adding-a-chain
|
||
|
|
|
||
|
|
[ ] Local superchain-registry validation passes (per upstream guide / Makefile)
|
||
|
|
[ ] Chain metadata + TOML/JSON artifacts match op-deployer output for YOUR L1/L2
|
||
|
|
[ ] L2 chain ID unique; documented as distinct from Besu DBIS 138 if parallel
|
||
|
|
[ ] op-validator clean on MAINNET artifacts (run before opening PR)
|
||
|
|
[ ] standard-versions / bytecode alignment with standard-versions-mainnet.toml
|
||
|
|
[ ] PR description includes release tags, L1 network (ethereum mainnet), Security Council / roles pointers
|
||
|
|
[ ] Off-chain: Optimism Foundation review items (security config, governance authenticity)
|
||
|
|
[ ] After merge: plan --network / --op-network for node hard-fork inheritance
|
||
|
|
EOF
|