Skip to content

Commit

Permalink
Add different signing tasks for op and cb
Browse files Browse the repository at this point in the history
  • Loading branch information
0x00101010 committed Dec 4, 2024
1 parent 3d26cfd commit 3758737
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 4 deletions.
3 changes: 3 additions & 0 deletions mainnet/2024-11-18-increase-max-gas-limit/.env
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@ OPTIMISM_REPO=https://github.com/ethereum-optimism/optimism.git
OPTIMISM_VERSION=op-contracts/v1.5.0
OPTIMISM_CONTRACT_PATCH=patch/max-gas-limit.patch

OP_MULTISIG=0x2501c477D0A35545a387Aa4A3EEe4292A9a8B3F0
CB_MULTISIG=0x6e1DFd5C1E22A4677663A81D24C6BA03561ef0f6

SAFE_ADDRESS=0x7bb41c3008b3f03fe483b28b8db90e19cf07595c
PROXY_ADMIN_ADDRESS=0x0475cBCAebd9CE8AfA5025828d5b98DFb67E059E
SYSTEM_CONFIG_ADDRESS=0x73a79Fab69143498Ed3712e519A88a918e1f4072
Expand Down
12 changes: 9 additions & 3 deletions mainnet/2024-11-18-increase-max-gas-limit/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,17 @@ deploy:
$(GOPATH)/bin/eip712sign --ledger --hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0" -- \
forge script --rpc-url $(L1_RPC_URL) DeploySystemConfig --sig "sign(address)"

.PHONY: sign
sign:
.PHONY: sign-cb
sign-cb:
$(GOPATH)/bin/eip712sign --ledger --hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0" -- \
forge script --rpc-url $(L1_RPC_URL) UpgradeSystemConfig \
--sig "sign()"
--sig "sign(address)" $(CB_MULTISIG)

.PHONY: sign-op
sign-op:
$(GOPATH)/bin/eip712sign --ledger --hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0" -- \
forge script --rpc-url $(L1_RPC_URL) UpgradeSystemConfig \
--sig "sign(address)" $(OP_MULTISIG)

.PHONY: run-upgrade
run-upgrade:
Expand Down
2 changes: 1 addition & 1 deletion mainnet/2024-11-18-increase-max-gas-limit/README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
## Upgrade to new system config with 400m max gas limit
## [READY TO SIGN] Upgrade to new system config with 400m max gas limit

Base is continuing to scale and we need higher block gas limit to support the increased demand.

Expand Down

0 comments on commit 3758737

Please sign in to comment.