-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathdfx.json
88 lines (88 loc) · 2.79 KB
/
dfx.json
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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"dfx": "0.21.0",
"canisters": {
"bitcoin": {
"type": "custom",
"candid": "./canister/candid.did",
"wasm": "target/wasm32-unknown-unknown/release/ic-btc-canister.wasm.gz",
"build": "./scripts/build-canister.sh ic-btc-canister"
},
"watchdog": {
"type": "custom",
"candid": "./watchdog/candid.did",
"build": "./scripts/build-canister.sh watchdog",
"wasm": "./target/wasm32-unknown-unknown/release/watchdog.wasm.gz"
},
"watchdog-upgradability-test": {
"type": "custom",
"candid": "./watchdog/candid.did",
"wasm": "watchdog-upgradability-test.wasm.gz"
},
"benchmarks": {
"candid": "./benchmarks/candid.did",
"package": "benchmarks",
"type": "custom",
"build": "./scripts/build-canister.sh benchmarks",
"wasm": "./target/wasm32-unknown-unknown/release/benchmarks.wasm.gz"
},
"upgradability-test": {
"type": "custom",
"candid": "./canister/candid.did",
"wasm": "upgradability-test.wasm.gz"
},
"e2e-scenario-1": {
"type": "custom",
"candid": "./e2e-tests/scenario-1/candid.did",
"build": "./scripts/build-canister.sh scenario-1",
"wasm": "./target/wasm32-unknown-unknown/release/scenario-1.wasm.gz"
},
"e2e-scenario-2": {
"type": "custom",
"candid": "./e2e-tests/scenario-2/candid.did",
"build": "./scripts/build-canister.sh scenario-2",
"package": "scenario-2",
"wasm": "./target/wasm32-unknown-unknown/release/scenario-2.wasm.gz"
},
"e2e-scenario-3": {
"type": "custom",
"candid": "./e2e-tests/scenario-3/candid.did",
"build": "./scripts/build-canister.sh scenario-3",
"package": "scenario-3",
"wasm": "./target/wasm32-unknown-unknown/release/scenario-3.wasm.gz"
},
"e2e-disable-api-if-not-fully-synced-flag": {
"type": "custom",
"candid": "./e2e-tests/disable-api-if-not-fully-synced-flag/candid.did",
"build": "./scripts/build-canister.sh disable-api-if-not-fully-synced-flag",
"package": "disable-api-if-not-fully-synced-flag",
"wasm": "./target/wasm32-unknown-unknown/release/disable-api-if-not-fully-synced-flag.wasm.gz"
},
"uploader": {
"type": "custom",
"candid": "./bootstrap/uploader/candid.did",
"build": "./scripts/build-canister.sh uploader-canister",
"wasm": "./target/wasm32-unknown-unknown/release/uploader-canister.wasm.gz"
}
},
"defaults": {
"build": {
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral",
"replica": {
"subnet_type": "system"
}
},
"testnet": {
"providers": [
"http://[2a00:fb01:400:42:5000:aaff:fea4:ae46]:8080"
],
"type": "persistent"
}
},
"version": 1
}