Skip to content

Commit a5548bb

Browse files
committed
refactor: add signature to DeployAll script and update Makefile
1 parent 7340390 commit a5548bb

File tree

1 file changed

+8
-1
lines changed

1 file changed

+8
-1
lines changed

claim_contracts/Makefile

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,14 @@ RPC_URL?=http://localhost:8545
1010
PRIVATE_KEY?=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
1111

1212
deploy-all: ## 🚀 Deploy all contracts
13-
cd script && forge script DeployAll.s.sol --private-key $(PRIVATE_KEY) --rpc-url $(RPC_URL) --broadcast
13+
cd script && \
14+
forge script DeployAll.s.sol \
15+
--sig "run(string)" \
16+
$(CONFIG) \
17+
--private-key $(PRIVATE_KEY) \
18+
--rpc-url $(RPC_URL) \
19+
--broadcast \
20+
-vvv
1421

1522
CONFIG?=example
1623
deploy-token: ## 🚀 Deploy the token contract

0 commit comments

Comments
 (0)