forked from storyprotocol/protocol-core-v1
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
76 lines (59 loc) · 2.62 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
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
.PHONY: all test clean coverage typechain format abi
all: clean install build
# function: generate abi for given contract name (key)
# requires contract name to match the file name
define generate_abi
$(eval $@_CONTRACT_NAME = $(1))
$(eval $@_CONTRACT_PATH = $(2))
forge inspect --optimize --optimizer-runs 20000 contracts/${$@_CONTRACT_PATH}/${$@_CONTRACT_NAME}.sol:${$@_CONTRACT_NAME} abi > abi/${$@_CONTRACT_NAME}.json
endef
# Clean the repo
forge-clean :; forge clean
clean :; npx hardhat clean
# Remove modules
forge-remove :; rm -rf .gitmodules && rm -rf .git/modules/* && rm -rf lib && touch .gitmodules && git add . && git commit -m "modules"
install :
yarn install
# Update Dependencies
forge-update :; forge update
forge-build :; forge build
build :; npx hardhat compile
test :; forge test --ffi
snapshot :; forge snapshot
slither :; slither ./contracts
# glob doesn't work for nested folders, so we do it manually
format:
npx prettier --write contracts
# generate forge coverage on pinned mainnet fork
# process lcov file, ignore test, script, and contracts/mocks folders
# generate html report from lcov.info (ignore "line ... has branchcov but no linecov data" error)
coverage:
mkdir -p coverage
forge coverage --report lcov
lcov --remove lcov.info -o coverage/lcov.info 'test/*' 'script/*' --rc lcov_branch_coverage=1
genhtml coverage/lcov.info -o coverage --rc lcov_branch_coverage=1
abi:
rm -rf abi
mkdir -p abi
@$(call generate_abi,"IPAccountImpl",".")
@$(call generate_abi,"LicenseToken",".")
@$(call generate_abi,"AccessController","./access")
@$(call generate_abi,"Governance","./governance")
@$(call generate_abi,"DisputeModule","./modules/dispute")
@$(call generate_abi,"ArbitrationPolicySP","./modules/dispute/policies")
@$(call generate_abi,"TokenWithdrawalModule","./modules/external")
@$(call generate_abi,"LicensingModule","./modules/licensing")
@$(call generate_abi,"PILicenseTemplate","./modules/licensing")
@$(call generate_abi,"CoreMetadataModule","./modules/metadata")
@$(call generate_abi,"CoreMetadataViewModule","./modules/metadata")
@$(call generate_abi,"RoyaltyModule","./modules/royalty")
@$(call generate_abi,"IpRoyaltyVault","./modules/royalty/policies")
@$(call generate_abi,"RoyaltyPolicyLAP","./modules/royalty/policies")
@$(call generate_abi,"IPAssetRegistry","./registries")
@$(call generate_abi,"LicenseRegistry","./registries")
@$(call generate_abi,"ModuleRegistry","./registries")
typechain :; npx hardhat typechain
# solhint should be installed globally
lint :; npx solhint contracts/**/*.sol
anvil :; anvil -m 'test test test test test test test test test test test junk'