-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMakefile
More file actions
66 lines (40 loc) · 2.08 KB
/
Makefile
File metadata and controls
66 lines (40 loc) · 2.08 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
60
61
62
63
64
65
66
-include .env
.PHONY: all build test test-coverage clean deploy-sepolia fund help install snapshot update format anvil remove
DEFAULT_ANVIL_KEY := 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
help:
@echo "Usage:"
@echo " make deploy [ARGS=...]"
NETWORK_ARGS := --rpc-url http://localhost:8545 --private-key $(DEFAULT_ANVIL_KEY) --broadcast
# if --network sepolia is used, then use sepolia stuff, otherwise anvil stuff
ifeq ($(findstring --network sepolia,$(ARGS)),--network sepolia)
NETWORK_ARGS := --rpc-url $(SEPOLIA_RPC_URL) --private-key $(PRIVATE_KEY) --broadcast --verify --etherscan-api-key $(ETHERSCAN_API_KEY) --legacy -vvvvv
endif
build :; forge build
test-coverage :; forge coverage
test :; forge test
install:; forge install foundry-rs/forge-std@v1.9.6 --no-commit
deploy :
@forge script script/DeployRaffle.s.sol:DeployRaffle $(NETWORK_ARGS)
addLiquidity :
@forge script script/Interactions.s.sol/AddLiquidity $(NETWORK_ARGS)
removeLiquidity :
@forge script script/Interactions.s.sol/RemoveLiquidity $(NETWORK_ARGS)
collectFeesAndRemovedLiquidity :
@forge script script/Interactions.s.sol/CollectFeesAndRemoveLiquidity $(NETWORK_ARGS)
swapTokensZeroForOneExactInput :
@forge script script/Interactions.s.sol/SwapTokensZeroForOneExactInput $(NETWORK_ARGS)
swapTokensOneForZeroExactInput :
@forge script script/Interactions.s.sol/SwapTokensOneForZeroExactInput $(NETWORK_ARGS)
swapTokensZeroForOneExactOutput :
@forge script script/Interactions.s.sol/SwapTokensZeroForOneExactOutput $(NETWORK_ARGS)
swapTokensOneForZeroExactOutput :
@forge script script/Interactions.s.sol/SwapTokensOneForZeroExactOutput $(NETWORK_ARGS)
anvil :; anvil -m 'test test test test test test test test test test test junk' --steps-tracing --block-time 1
snapshot :; forge snapshot
# 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"
update :; forge update
all :; make clean && make remove && make install && make build
format :; forge fmt