-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile
42 lines (29 loc) · 1.37 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
# include .env file and export its env vars
# (-include to ignore error if it does not exist)
-include .env
deploy-polygon :; sh ./scripts/deploy-polygon.sh
verify-polygon :; sh ./scripts/verify-polygon.sh
all: clean install update solc build dappbuild
# Install proper solc version.
solc:; nix-env -f https://github.com/dapphub/dapptools/archive/master.tar.gz -iA solc-static-versions.solc_0_8_12
# 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 the Modules
install :; forge install # dapphub/ds-test && forge install rari-capital/solmate && forge install brockelmore/forge-std && forge install ZeframLou/clones-with-immutable-args
# Update Dependencies
update:; forge update
# Builds
build :; forge clean && forge build --optimize --optimize-runs 1000000
dappbuild :; dapp build
# chmod scripts
scripts :; chmod +x ./scripts/*
# Tests
test :; forge clean && forge test --optimize --optimize-runs 1000000 -vv # --ffi # enable if you need the `ffi` cheat code on HEVM
# Lints
lint :; prettier --write src/**/*.sol && prettier --write src/*.sol
# Generate Gas Snapshots
snapshot :; forge clean && forge snapshot --optimize --optimize-runs 1000000
# Fork Mainnet With Hardhat
mainnet-fork :; npx hardhat node --fork ${ETH_MAINNET_RPC_URL}