-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdfx.json
98 lines (98 loc) · 2.52 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
89
90
91
92
93
94
95
96
97
98
{
"canisters": {
"vetkd_system_api": {
"candid": "vetkd_system_api.did",
"type": "custom",
"wasm": "vetkd_system_api.wasm"
},
"user_index": {
"dependencies": [
"metrics_index"
],
"main": "backend/canisters/user_index/main.mo",
"type": "motoko"
},
"form_index": {
"dependencies": [
"metrics_index"
],
"main": "backend/canisters/qa_index/form.mo",
"type": "motoko"
},
"submissions_index": {
"dependencies": [
"vetkd_system_api",
"user_index",
"form_index",
"metrics_index"
],
"main": "backend/canisters/response_index/submissions.mo",
"type": "motoko"
},
"metrics_index": {
"main": "backend/canisters/stats_index/metrics.mo",
"type": "motoko"
},
"assets": {
"dependencies": [
"vetkd_system_api",
"ic_siwe_provider",
"ic_siws_provider",
"internet_identity",
"user_index",
"form_index",
"submissions_index",
"metrics_index"
],
"frontend": {
"entrypoint": "dist/index.html"
},
"source": [
"dist/",
"frontend/assets"
],
"type": "assets"
},
"internet_identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz",
"remote": {
"id": {
"playground": "rdmx6-jaaaa-aaaaa-aaadq-cai",
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"frontend": {}
},
"ic_siwe_provider": {
"type": "custom",
"candid": "https://github.com/kristoferlund/ic-siwe/releases/download/v0.0.6/ic_siwe_provider.did",
"wasm": "https://github.com/kristoferlund/ic-siwe/releases/download/v0.0.6/ic_siwe_provider.wasm.gz"
},
"ic_siws_provider": {
"type": "custom",
"candid": "https://github.com/kristoferlund/ic-siws/releases/download/v0.0.1/ic_siws_provider.did",
"wasm": "https://github.com/kristoferlund/ic-siws/releases/download/v0.0.1/ic_siws_provider.wasm.gz"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"networks": {
"local": {
"bind": "127.0.0.1:4943",
"type": "ephemeral"
},
"ic": {
"providers": [
"https://mainnet.dfinity.network"
],
"type": "persistent"
}
},
"version": 1
}