File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff 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+
2630RPC_URL? =http://localhost:8545
2731DEPLOYER_PRIVATE_KEY? =0x5de4111afa1a4b94908f83103eb1f1706367c2e68ca870fc3fb9a804cdab365a
2832CONFIG? =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
186189test-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
You can’t perform that action at this time.
0 commit comments