-
Notifications
You must be signed in to change notification settings - Fork 5
/
Makefile
37 lines (21 loc) · 1.15 KB
/
Makefile
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
-include .env
.PHONY: all test clean deploy-anvil
all: clean remove install update build
# Clean the repo
clean :; forge clean
# Remove modules
remove :; rm -rf .gitmodules && rm -rf .git/modules/* && rm -rf lib && touch .gitmodules && git add . && git commit -m "modules"
install :; forge install foundry-rs/forge-std
# Update Dependencies
update :; forge update
build :; forge build
test :; forge test -vvv
test-dev :; FOUNDRY_FUZZ_RUNS=50 forge test -vvv
snapshot :; forge snapshot
slither :; slither ./src --exclude-dependencies --exclude timestamp,solc-version,missing-zero-check --solc-remaps @openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/ --filter-paths lib
format :; forge fmt
# solhint should be installed globally
lint :; solhint src/**/*.sol && solhint src/*.sol && solhint test/**/*.sol && solhint test/*.sol
anvil :; anvil -m 'test test test test test test test test test test test junk' -b 6
deploy-base-anvil :; forge script script/LocalDeployBase.s.sol:LocalDeployBase --rpc-url http://localhost:8545 --broadcast
deploy-orb-anvil :; forge script script/LocalDeployOrb.s.sol:LocalDeployOrb --rpc-url http://localhost:8545 --broadcast