-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
50 lines (33 loc) · 1.79 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
# 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
# Update Dependencies
update:; forge update
# Builds
build :; forge build
setup-yarn:
yarn
test :; forge test
snapshot :; forge snapshot
slither :; slither ./src
format :; prettier --write src/**/*.sol && prettier --write src/*.sol
# solhint should be installed globally
lint :; solhint src/**/*.sol && solhint src/*.sol
anvil :; anvil -m 'test test test test test test test test test test test junk'
# use the "@" to hide the command from your shell
deploy-goerli :; @forge script src/scripts/${contract}.s.sol:Deploy${contract} --rpc-url ${GOERLI_RPC_URL} --private-key ${PRIVATE_KEY} --broadcast --verify --etherscan-api-key ${ETHERSCAN_API_KEY} -vvvv
# use the "@" to hide the command from your shell
deploy-mumbai :; @forge script src/scripts/${contract}.s.sol:Deploy${contract} --rpc-url ${MUMBAI_RPC_URL} --private-key ${PRIVATE_KEY} --broadcast --verify --etherscan-api-key ${POLYGONSCAN_API_KEY} -vvvv
# This is the private key of account from the mnemonic from the "make anvil" command
deploy-anvil :; @forge script src/scripts/${contract}.s.sol:Deploy${contract} --rpc-url http://localhost:8545 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 --broadcast