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: 7 additions & 1 deletion makefile
Original file line number Diff line number Diff line change
Expand Up @@ -181,4 +181,10 @@ lint: ## Run solhint linter

analyze: ## Run slither static analysis
@echo "$(BLUE)🔬 Running static analysis...$(RESET)"
slither src/
slither src/

mythril: ## Run mythril security analysis
@echo "$(BLUE)🛡️ Running security analysis...$(RESET)"
myth analyze src/ImprovedFlashArbitrageV3.sol

audit-prep: fmt build analyze ## Prepare for security audit
Loading