diff --git a/makefile b/makefile index 352856d..f184d44 100644 --- a/makefile +++ b/makefile @@ -391,3 +391,11 @@ quick-test: build test-unit ## Quick test cycle deploy-test: deploy-sepolia interact-testnet ## Deploy and test on testnet full-check: fmt build test-coverage gas-snapshot analyze ## Complete code quality check + +# ================================================================ +# EMERGENCY COMMANDS +# ================================================================ + +emergency-pause: ## Emergency pause contract (requires CONTRACT_ADDRESS) + @echo "$(RED)🚨 EMERGENCY PAUSE$(RESET)" + cast send $(CONTRACT_ADDRESS) "pause()" --rpc-url $(MAINNET_RPC_URL) --private-key $(PRIVATE_KEY)