Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Loading