Skip to content

Commit

Permalink
Fixes to execution (#139)
Browse files Browse the repository at this point in the history
  • Loading branch information
stevieraykatz authored Mar 14, 2024
1 parent d3e114e commit cb4d553
Showing 1 changed file with 2 additions and 15 deletions.
17 changes: 2 additions & 15 deletions mainnet/2024-03-07-ecotone-sysconfig-updates/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,10 @@ sign-update-gas-config:
forge script --rpc-url $(L1_RPC_URL) UpdateGasConfig \
--sig "sign()"

.PHONY: approve-update-gas-config
approve-update-gas-config:
forge script --rpc-url $(L1_RPC_URL) UpdateGasConfig \
--sig "approve(address,bytes)" $(SYSTEM_CONFIG_OWNER) $(SIGNATURES) \
--ledger --hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0" \
--broadcast

.PHONY: execute
execute:
forge script --rpc-url $(L1_RPC_URL) UpdateGasConfig \
--sig "run()" --ledger -hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0"
--sig "run(bytes)" $(SIGNATURES) --ledger --hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0" --broadcast


.PHONY: sign-rollback-gas-config
Expand All @@ -31,14 +24,8 @@ sign-rollback-gas-config:
forge script --rpc-url $(L1_RPC_URL) RollbackGasConfig \
--sig "sign()"

.PHONY: approve-rollback-gas-config
approve-rollback-gas-config:
forge script --rpc-url $(L1_RPC_URL) RollbackGasConfig \
--sig "approve(address,bytes)" $(SYSTEM_CONFIG_OWNER) $(SIGNATURES) \
--ledger --hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0" \
--broadcast

.PHONY: execute-rollback
execute-rollback:
forge script --rpc-url $(L1_RPC_URL) RollbackGasConfig \
--sig "run()" --ledger -hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0"
--sig "run(bytes)" $(SIGNATURES) --ledger --hd-paths "m/44'/60'/$(LEDGER_ACCOUNT)'/0/0" --broadcast

0 comments on commit cb4d553

Please sign in to comment.