-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
76 lines (55 loc) · 1.8 KB
/
Makefile
File metadata and controls
76 lines (55 loc) · 1.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
-include .env
.EXPORT_ALL_VARIABLES:
MAKEFLAGS += --no-print-directory
default:
forge fmt && forge build
# Always keep Forge up to date
install:
foundryup
forge soldeer install
clean:
@rm -rf broadcast cache out crytic-export test/invariants/multi-fuzzer/out
clean-all:
@rm -rf broadcast cache out dependencies node_modules soldeer.lock
gas:
@forge test --gas-report
# Generate gas snapshots for all your test functions
snapshot:
@forge snapshot
# Tests
test-std:
@forge test --summary --fail-fast
test:
@FOUNDRY_NO_MATCH_CONTRACT=Invariant make test-std
test-f-%:
@FOUNDRY_MATCH_TEST=$* make test-std
test-c-%:
@FOUNDRY_MATCH_CONTRACT=$* make test-std
test-all:
@make test-std
# Invariant
invariants:
make test-c-FuzzerFoundry
echidna . --contract FuzzerEchidna --config echidna.yaml
medusa fuzz
# Coverage
coverage:
@forge coverage --report lcov
@lcov --ignore-errors unused --remove ./lcov.info -o ./lcov.info.pruned "test/*" "script/*"
coverage-html:
@make coverage
@genhtml ./lcov.info.pruned -o report --branch-coverage --output-dir ./coverage
# Run a script
simulate-s-%:
@forge script script/$*.s.sol --fork-url $(PROVIDER_URL) -vvvvv
run-s-%:
@forge script script/$*.s.sol --rpc-url $(PROVIDER_URL) --private-key ${DEPLOYER_PRIVATE_KEY} --broadcast --slow --verify -vvvvv
# Deploy scripts
deploy:
@forge script script/deploy/DeployManager.sol --rpc-url $(PROVIDER_URL) --private-key ${DEPLOYER_PRIVATE_KEY} --broadcast --slow --verify -vvvv
deploy-testnet:
@forge script script/deploy/DeployManager.sol --rpc-url $(TESTNET_URL) --broadcast --slow --unlocked -vvvv
deploy-holesky:
@forge script script/deploy/DeployManager.sol --rpc-url $(HOLESKY_URL) --private-key ${DEPLOYER_PRIVATE_KEY} --broadcast --slow --verify -vvv
# Override default `test` and `coverage` targets
.PHONY: test coverage