-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
44 lines (26 loc) · 1.68 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
-include .env
.PHONY: all test clean deploy-anvil
all: clean update build test snapshot remove install
# Clean the repo
clean :; forge clean
# Update Dependencies
update:; forge update
build:; forge build
test :; forge test
snapshot :; forge snapshot
# Remove modules
remove :; rm -rf .gitmodules && rm -rf .git/modules/* && rm -rf lib && touch .gitmodules && git add . && git commit -m 'commit ${%y.%m.%d %H:%M:%S}'
# Install libs for forge tests optional include --no-commit
install :; forge install smartcontractkit/chainlink-brownie-contracts && forge install rari-capital/solmate && forge install foundry-rs/forge-std
# Optional slither
# 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-sepolia :; @forge script script/${contract}.s.sol:Deploy${contract} --rpc-url ${SEPOLIA_RPC_URL} --private-key ${PRIVATE_KEY} --broadcast --verify --etherscan-api-key ${ETHERSCAN_API_KEY} -vvvv
# This is the private key of account from the mnemonic from the "make anvil" command
deploy-anvil :; @forge script script/${contract}.s.sol:Deploy${contract} --rpc-url http://localhost:8545 --private-key 0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80 --broadcast
deploy-all :; make deploy-${network} contract=APIConsumer && make deploy-${network} contract=KeepersCounter && make deploy-${network} contract=PriceFeedConsumer && make deploy-${network} contract=VRFConsumerV2
-include ${FCT_PLUGIN_PATH}/makefile-external