We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7340390 commit a5548bbCopy full SHA for a5548bb
claim_contracts/Makefile
@@ -10,7 +10,14 @@ RPC_URL?=http://localhost:8545
10
PRIVATE_KEY?=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f2ff80
11
12
deploy-all: ## 🚀 Deploy all contracts
13
- cd script && forge script DeployAll.s.sol --private-key $(PRIVATE_KEY) --rpc-url $(RPC_URL) --broadcast
+ 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
21
22
CONFIG?=example
23
deploy-token: ## 🚀 Deploy the token contract
0 commit comments