Skip to content

Commit edcfa91

Browse files
author
ilitteri
committed
Update Makefile
1 parent 421bdb4 commit edcfa91

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

claim_contracts/Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -23,16 +23,19 @@ calldata-pause: ## 💾 Calldata for the method `pause` to use in a transaction
2323

2424
# Deployments
2525

26+
# Requires MERKLE_ROOT, TIMESTAMP
27+
# CONFIG, RPC_URL, DEPLOYER_PRIVATE_KEY are optional
28+
deploy-example: deploy-token-local deploy-claimable-local claimable-update-root claimable-update-timestamp approve-claimable claimable-unpause
29+
2630
RPC_URL?=http://localhost:8545
2731
DEPLOYER_PRIVATE_KEY?=0x5de4111afa1a4b94908f83103eb1f1706367c2e68ca870fc3fb9a804cdab365a
2832
CONFIG?=example
29-
deploy-token: ## 🚀 Deploy the token contract
33+
deploy-token-local: ## 🚀 Deploy the token contract
3034
cd script && \
3135
forge script DeployAlignedToken.s.sol \
32-
--sig "run(string)" \
33-
$(CONFIG) \
36+
--sig "run(string)" example \
3437
--private-key $(DEPLOYER_PRIVATE_KEY) \
35-
--rpc-url $(RPC_URL) \
38+
--rpc-url http://localhost:8545 \
3639
--broadcast \
3740
--verbosity 3
3841

@@ -186,6 +189,3 @@ OWNER_PRIVATE_KEY?=0xac0974bec39a17e36ba4a6b4d238ff944bacb478cbed5efcae784d7bf4f
186189
test-airdrop:
187190
cast call $(AIRDROP) "paused()(bool)" --rpc-url $(RPC_URL)
188191
cast call $(AIRDROP) "owner()(address)" --rpc-url $(RPC_URL)
189-
190-
# Requires MERKLE_ROOT, TIMESTAMP
191-
deploy-example: deploy-token deploy-claimable-local claimable-update-root claimable-update-timestamp approve-claimable claimable-unpause

0 commit comments

Comments
 (0)