-
Notifications
You must be signed in to change notification settings - Fork 11
/
dfx.json
52 lines (52 loc) · 1.04 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
{
"canisters": {
"address_book": {
"package": "address_book",
"candid": "candid/address_book.did",
"type": "rust"
},
"profile": {
"package": "profile",
"candid": "candid/profile.did",
"type": "rust"
},
"registry": {
"package": "registry",
"candid": "candid/registry.did",
"type": "rust"
},
"nft": {
"package": "nft",
"candid": "candid/nft.did",
"type": "rust"
},
"tokens": {
"package": "tokens",
"candid": "candid/tokens.did",
"type": "rust"
},
"router": {
"package": "router",
"candid": "candid/router.did",
"type": "rust"
},
"template_registry": {
"package": "template_registry",
"candid": "candid/standard.did",
"type": "rust"
},
"proxy": {
"package": "proxy",
"candid": "candid/proxy.did",
"type": "rust"
}
},
"dfx": "0.11.2",
"networks": {
"local": {
"bind": "127.0.0.1:8000",
"type": "ephemeral"
}
},
"version": 1
}