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
15 changes: 14 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -377,4 +377,17 @@ monitor: ## Monitor contract events

balance: ## Check contract balance
@echo "$(BLUE)💰 Checking contract balance...$(RESET)"
cast balance $(CONTRACT_ADDRESS) --rpc-url $(MAINNET_RPC_URL)
cast balance $(CONTRACT_ADDRESS) --rpc-url $(MAINNET_RPC_URL)

# ================================================================
# DEVELOPER WORKFLOW SHORTCUTS
# ================================================================

dev: install build test ## Quick development setup
@echo "$(GREEN)🚀 Development environment ready!$(RESET)"

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
Loading