-
Notifications
You must be signed in to change notification settings - Fork 6
/
dfx.json
94 lines (94 loc) · 2.3 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
{
"version": 1,
"dfx": "0.24.0",
"output_env_file": ".env",
"networks": {
"local": {
"bind": "127.0.0.1:8080",
"type": "ephemeral"
}
},
"canisters": {
"counter": {
"type": "motoko",
"main": "examples/counter/src/main.mo",
"init_arg": "'(42)'",
"declarations": {
"bindings": ["js", "ts"],
"output": "examples/counter/declarations"
},
"gzip": true,
"shrink": true,
"optimize": "cycles"
},
"clock": {
"type": "motoko",
"main": "examples/clock/src/main.mo",
"declarations": {
"bindings": ["js", "ts"],
"output": "examples/clock/declarations"
},
"gzip": true,
"shrink": true,
"optimize": "cycles"
},
"todo": {
"type": "rust",
"candid": "examples/todo/todo.did",
"package": "todo",
"declarations": {
"bindings": ["js", "ts"],
"output": "examples/todo/declarations"
},
"gzip": true,
"shrink": true,
"optimize": "cycles"
},
"multicanister": {
"type": "motoko",
"main": "examples/multicanister/src/main.mo",
"dependencies": ["phonebook", "superheroes"],
"declarations": {
"bindings": ["js", "ts"],
"output": "examples/multicanister/declarations/multicanister"
},
"gzip": true,
"shrink": true,
"optimize": "cycles"
},
"phonebook": {
"type": "motoko",
"main": "examples/multicanister/src/phonebook.mo",
"declarations": {
"bindings": ["mo"],
"output": "examples/multicanister/declarations/phonebook"
},
"gzip": true,
"shrink": true,
"optimize": "cycles"
},
"superheroes": {
"type": "motoko",
"main": "examples/multicanister/src/superheroes.mo",
"declarations": {
"bindings": ["mo"],
"output": "examples/multicanister/declarations/superheroes"
},
"gzip": true,
"shrink": true,
"optimize": "cycles"
},
"nns_proxy": {
"type": "rust",
"candid": "examples/nns_proxy/nns_proxy.did",
"package": "nns_proxy",
"declarations": {
"bindings": ["js", "ts"],
"output": "examples/nns_proxy/declarations"
},
"gzip": true,
"shrink": true,
"optimize": "cycles"
}
}
}