-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathMakefile
40 lines (29 loc) · 1.01 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
# include .env file and export its env vars
# (-include to ignore error if it does not exist)
-include .env
all: clean remove install update solc build
# Install proper solc version.
solc:; nix-env -f https://github.com/dapphub/dapptools/archive/master.tar.gz -iA solc-static-versions.solc_0_8_10
# 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 OpenZeppelin/openzeppelin-contracts
forge install foundry-rs/forge-std
forge install Rari-Capital/solmate
forge install smartcontractkit/chainlink
# Update Dependencies
update:; forge update
# Builds
build :; forge clean && forge build --optimize --optimize-runs 1000000
setup-yarn:
yarn
local-node: setup-yarn
yarn hardhat node
deploy:
forge create StakeContract --private-key ${PRIVATE_KEY} # --rpc-url
test:
forge test --fork-url ${MAINNET_URL} -vv