-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
61 lines (41 loc) · 1.84 KB
/
Makefile
File metadata and controls
61 lines (41 loc) · 1.84 KB
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
-include .env
contractName = $(word 2,$(subst _, ,$1))
.PHONY: all test clean
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
# Update Dependencies
update:; forge update
build:; forge build
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-avalanche:;
@for file in ./script/*; do \
if test -f "$${file}"; then \
contract=$$(echo "$${file}" | sed 's/.*_\(.*\)\.s\.sol/\1/'); \
forge script $${file}:$${contract} --rpc-url ${AVALANCHE_RPC_URL} --private-key ${PRIVATE_KEY} --broadcast -vvvv; \
sleep 5; \
fi \
done
# use the "@" to hide the command from your shell
deploy-fuji:;
@for file in ./script/*; do \
if test -f "$${file}"; then \
contract=$$(echo "$${file}" | sed 's/.*_\(.*\)\.s\.sol/\1/'); \
forge script $${file}:$${contract} --rpc-url ${FUJI_RPC_URL} --private-key ${PRIVATE_KEY} --broadcast -vvvv; \
sleep 5; \
fi \
done
# This is the private key of account from the mnemonic from the "make anvil" command
deploy-anvil:; @forge script script/${contract}.s.sol:${contract} --rpc-url http://localhost:8545 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 --broadcast
# use the "@" to hide the command from your shell
run-fuji:; @forge script script/${script}.s.sol:$(call contractName, ${script}) --rpc-url ${FUJI_RPC_URL} --private-key ${PRIVATE_KEY} --broadcast -vvvv