-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathdfx.json
More file actions
56 lines (56 loc) · 1.62 KB
/
dfx.json
File metadata and controls
56 lines (56 loc) · 1.62 KB
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
{
"canisters": {
"taggr": {
"candid": "src/backend/taggr.did",
"package": "taggr",
"type": "custom",
"wasm": "target/wasm32-unknown-unknown/release/taggr.wasm.gz",
"build": "./build.sh taggr",
"metadata": [
{
"name": "candid:service",
"visibility": "public",
"networks": ["local", "ic", "staging", "staging2"]
}
]
},
"icp_ledger": {
"type": "custom",
"candid": "e2e/icp_ledger/ledger.did",
"wasm": "e2e/icp_ledger/ledger.wasm.gz",
"specified_id": "ryjl3-tyaaa-aaaaa-aaaba-cai",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai",
"staging": "ryjl3-tyaaa-aaaaa-aaaba-cai",
"staging2": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
}
}
},
"networks": {
"staging": {
"config": {
"API_HOST": "https://icp-api.io",
"STATIC_HOST": "https://icp0.io"
},
"providers": ["https://icp-api.io/"],
"type": "persistent"
},
"staging2": {
"config": {
"API_HOST": "https://icp-api.io",
"STATIC_HOST": "https://icp0.io"
},
"providers": ["https://icp-api.io/"],
"type": "persistent"
}
},
"metadata": [
{
"name": "candid:service"
}
],
"dfx": "0.32.0",
"version": 1
}