-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMakefile
52 lines (35 loc) · 1.42 KB
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
all:
start_env:
# source will not work, but this is for cmd documentation
source .env
source .venv/bin/activate
deploy_info:
ape run scripts/deploy_manager.py info --network arbitrum:mainnet-fork:foundry
deploy_local:
ape run scripts/deploy_manager.py deploy --network arbitrum:mainnet-fork:foundry
deploy_single_campaign_local:
ape run scripts/deploy_manager.py deploy-single-campaign --network arbitrum:mainnet-fork:foundry
deploy_single_campaign_arbitrum_sepolia:
ape run scripts/deploy_manager.py deploy-single-campaign --network arbitrum:sepolia:infura
deploy_single_campaign_taiko:
ape run scripts/deploy_manager.py deploy-single-campaign --network taiko:mainnet:node
get_constructor_abi:
python scripts/get_constructor_abi.py
deploy_arbitrum_sepolia:
ape run scripts/deploy_manager.py deploy --network arbitrum:sepolia:infura
deploy_arbitrum:
ape run scripts/deploy_manager.py deploy --network arbitrum:mainnet:infura
deploy_info_taiko:
ape run scripts/deploy_manager.py info --network taiko:mainnet:node
deploy_taiko:
ape run scripts/deploy_manager.py deploy --network taiko:mainnet:node
deploy_many_single_campaigns_taiko:
ape run scripts/deploy_manager.py deploy-many-single-campaigns --network taiko:mainnet:node
import_pvk:
ape accounts import arbideploy
networks_list:
ape networks list
noisy_test:
ape test -rP --capture=no --network ethereum:local:test
test:
ape test --network ethereum:local:test