@@ -74,38 +74,41 @@ The `Makefile` is the target launcher of the project. It's the recommended way t
7474
7575```
7676$ make
77- Available targets :
77+ Available recipes :
7878
79- - make help Display the available targets
80-
81- - make init Check the dependencies and prompt to install if needed
82- - make clean Clean the build artifacts
79+ make init Check the dependencies and prompt to install if needed
80+ make clean Clean the build artifacts
8381
8482Testing lifecycle:
8583
86- - make test Run unit tests, locally
87- - make test-fork Run fork tests, using RPC_URL
88- - make test-coverage Generate an HTML coverage report under ./report
84+ make test Run unit tests, locally
85+ make test-fork Run fork tests, using RPC_URL
86+ make test-coverage Generate an HTML coverage report under ./report
8987
90- - make sync-tests Scaffold or sync test definitions into solidity tests
91- - make check-tests Checks if the solidity test files are out of sync
92- - make test-tree Generates a markdown file with the test definitions
93- - make test-tree-prompt Prints an LLM prompt to generate the test definitions for a given file
94- - make test-prompt Prints an LLM prompt to implement the tests for a given contract
88+ make sync-tests Scaffold or sync test definitions into solidity tests
89+ make check-tests Checks if the solidity test files are out of sync
90+ make test-tree Generates a markdown file with the test definitions
91+ make test-tree-prompt Prints an LLM prompt to generate the test definitions for a given file
92+ make test-prompt Prints an LLM prompt to implement the tests for a given contract
9593
9694Deployment targets:
9795
98- - make predeploy Simulate a protocol deployment
99- - make deploy Deploy the protocol, verify the source code and write to ./artifacts
100- - make resume Retry pending deployment transactions, verify the code and write to ./artifacts
96+ make predeploy Simulate a protocol deployment
97+ make deploy Deploy the protocol, verify the source code and write to ./artifacts
98+ make resume Retry pending deployment transactions, verify the code and write to ./artifacts
10199
102100Verification:
103101
104- - make verify-etherscan Verify the last deployment on an Etherscan (compatible) explorer
105- - make verify-blockscout Verify the last deployment on BlockScout
106- - make verify-sourcify Verify the last deployment on Sourcify
102+ make verify-etherscan Verify the last deployment on an Etherscan (compatible) explorer
103+ make verify-blockscout Verify the last deployment on BlockScout
104+ make verify-sourcify Verify the last deployment on Sourcify
105+
106+ Other:
107+
108+ make storage-info Show the storage layout of a contract
109+ make refund Refund the remaining balance left on the deployment account
107110
108- - make refund Refund the remaining balance left on the deployment account
111+ make help Show the main recipes
109112```
110113
111114## Template Variants 🌈
0 commit comments