-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
29 lines (18 loc) · 926 Bytes
/
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
-include .env
.PHONY: all test clean deploy fund help install snapshot format anvil
DEFAULT_ANVIL_KEY := 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
help:
@echo "Usage:"
@echo " make deploy [ARGS=...]\n example: make deploy ARGS=\"--network sepolia\""
@echo ""
@echo " make fund [ARGS=...]\n example: make deploy ARGS=\"--network sepolia\""
build:; forge builds
test:; forge test
NETWORK_ARGS := --rpc-url http://localhost:8545 --private-key $(DEFAULT_ANVIL_KEY) --broadcast
# if --network goerli is used, then use goerli
ifeq ($(findstring --network goerli,$(ARGS)),--network goerli)
NETWORK_ARGS := --rpc-url $(GOERLI_RPC_URL) --private-key $(PRIVATE_KEY) --broadcast -vvvv
endif
anvil :; anvil -m 'test test test test test test test test test test test junk' --steps-tracing --block-time 1
deploy:
@forge script script/DeployRaffle.s.sol:DeployRaffle --via-ir $(NETWORK_ARGS)