We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 731947a commit 052c5b6Copy full SHA for 052c5b6
1 file changed
claim_contracts/Makefile
@@ -12,6 +12,13 @@ PRIVATE_KEY?=0x59c6995e998f97a5a0044966f0945389dc9e86dae88c7a8412f4603b6b78690d
12
deploy-all: ## 🚀 Deploy all contracts
13
cd script && forge script DeployAll.s.sol --private-key $(PRIVATE_KEY) --rpc-url $(RPC_URL) --broadcast
14
15
+deploy-token: ## 🚀 Deploy the token contract
16
+ cd script && \
17
+ forge script DeployAlignedToken.s.sol \
18
+ --private-key $(PRIVATE_KEY) \
19
+ --rpc-url $(RPC_URL) \
20
+ --broadcast
21
+
22
MINT?="1 ether"
23
OWNER?=0xf39Fd6e51aad88F6F4ce6aB8827279cffFb92266
24
BENEFICIARY1?=0x70997970C51812dc3A010C7d01b50e0d17dc79C8
0 commit comments