-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathdfx.json
127 lines (127 loc) · 3.09 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
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
{
"canisters": {
"icp_ledger": {
"type": "custom",
"candid": "candid/ledger.did",
"wasm": "./icp_ledger.wasm.gz",
"remote": {
"id": {
"ic": "ryjl3-tyaaa-aaaaa-aaaba-cai"
}
}
},
"icp_index": {
"type": "custom",
"candid": "candid/index.did",
"wasm": "./icp_index.wasm.gz",
"remote": {
"id": {
"ic": "qhbym-qaaaa-aaaaa-aaafq-cai"
}
}
},
"configuration": {
"candid": "./src/canister/configuration/can.did",
"declarations": {
"node_compatibility": true,
"output": "./export/declarations/configuration"
},
"gzip": true,
"optimize": "size",
"package": "configuration",
"type": "rust"
},
"data_backup": {
"candid": "./src/canister/data_backup/can.did",
"declarations": {
"node_compatibility": true,
"output": "./export/declarations/data_backup"
},
"gzip": true,
"optimize": "size",
"package": "data_backup",
"type": "rust"
},
"individual_user_template": {
"candid": "./src/canister/individual_user_template/can.did",
"declarations": {
"node_compatibility": true,
"output": "./export/declarations/individual_user_template"
},
"gzip": true,
"optimize": "size",
"package": "individual_user_template",
"type": "rust"
},
"platform_orchestrator": {
"candid": "./src/canister/platform_orchestrator/can.did",
"declaration": {
"node_compatibility": true,
"output": "./export/declarations/platform_orchestrator"
},
"gzip": true,
"optimize": "size",
"package": "platform_orchestrator",
"type": "rust"
},
"post_cache": {
"candid": "./src/canister/post_cache/can.did",
"declarations": {
"node_compatibility": true,
"output": "./export/declarations/post_cache"
},
"gzip": true,
"optimize": "size",
"package": "post_cache",
"type": "rust"
},
"sns_governance": {
"build": "",
"candid": "candid/sns_governance.did",
"type": "custom",
"wasm": ""
},
"sns_index": {
"build": "",
"candid": "candid/sns_index.did",
"type": "custom",
"wasm": ""
},
"sns_ledger": {
"build": "",
"candid": "candid/sns_ledger.did",
"type": "custom",
"wasm": ""
},
"sns_root": {
"build": "",
"candid": "candid/sns_root.did",
"type": "custom",
"wasm": ""
},
"sns_swap": {
"build": "",
"candid": "candid/sns_swap.did",
"type": "custom",
"wasm": ""
},
"sns_wasm": {
"build": "",
"candid": "candid/sns_wasm.did",
"type": "custom",
"wasm": ""
},
"user_index": {
"candid": "./src/canister/user_index/can.did",
"declarations": {
"node_compatibility": true,
"output": "./export/declarations/user_index"
},
"gzip": true,
"optimize": "size",
"package": "user_index",
"type": "rust"
}
},
"version": 1
}