From 77d093babee9341223f039a8b1056e7fe5b95f8e Mon Sep 17 00:00:00 2001 From: Shawn Rizo Date: Wed, 24 Sep 2025 12:24:19 -0400 Subject: [PATCH 1/2] feat: Add Makefile Metadata Natspec Section Header --- makefile | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/makefile b/makefile index 36a3463..9fea503 100644 --- a/makefile +++ b/makefile @@ -408,3 +408,7 @@ emergency-withdraw: ## Emergency withdraw (requires EMERGENCY_TOKEN) @echo "$(RED)🚨 EMERGENCY WITHDRAWAL$(RESET)" cast send $(CONTRACT_ADDRESS) "emergencyWithdraw(address,uint256)" $(EMERGENCY_TOKEN) 0 \ --rpc-url $(MAINNET_RPC_URL) --private-key $(PRIVATE_KEY) + +# ================================================================ +# MAKEFILE METADATA +# ================================================================ \ No newline at end of file From c33e37c2ac10e2eef9a1292f141282126846d5c2 Mon Sep 17 00:00:00 2001 From: Shawn Rizo Date: Wed, 24 Sep 2025 12:31:26 -0400 Subject: [PATCH 2/2] feat: Add install update clean reset build rebuild build-optimized build-sizes --- makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/makefile b/makefile index 9fea503..72435f8 100644 --- a/makefile +++ b/makefile @@ -411,4 +411,6 @@ emergency-withdraw: ## Emergency withdraw (requires EMERGENCY_TOKEN) # ================================================================ # MAKEFILE METADATA -# ================================================================ \ No newline at end of file +# ================================================================ + +.PHONY: install update clean reset build rebuild build-optimized build-sizes