15 lines
542 B
Bash
15 lines
542 B
Bash
|
|
#!/usr/bin/env bash
|
||
|
|
# Mainnet L1 deploy + L2 genesis checklist.
|
||
|
|
set -euo pipefail
|
||
|
|
|
||
|
|
cat <<'EOF'
|
||
|
|
Phase 2 — Mainnet deploy
|
||
|
|
========================
|
||
|
|
[ ] Confirm Sepolia gate signed off
|
||
|
|
[ ] Re-verify standard-versions-mainnet.toml vs pinned manifest
|
||
|
|
[ ] op-deployer against Ethereum mainnet (L1 system contracts)
|
||
|
|
[ ] Capture L1 addresses + L2 genesis/rollup config (artifact store + deployed/ notes)
|
||
|
|
[ ] op-validator on MAINNET artifacts — must be clean before registry PR
|
||
|
|
[ ] Record non-secrets under config/op-stack-superchain/deployed/
|
||
|
|
EOF
|