-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
50 lines (50 loc) · 1.25 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
{
"dfx": "0.24.3",
"canisters": {
"cns_root": {
"main": "minimal_cns/src/backend/cns_root.mo",
"type": "motoko",
"dependencies": ["name_registry"],
"declarations": {
"bindings": ["js", "ts"],
"output": "./src/declarations/cns-root"
}
},
"cns_root_test": {
"main": "minimal_cns/src/backend/cns_root.test.mo",
"type": "motoko",
"dependencies": ["cns_root"]
},
"tld_operator": {
"main": "minimal_cns/src/backend/tld_operator.mo",
"type": "motoko",
"dependencies": ["name_registry"],
"declarations": {
"bindings": ["js", "ts"],
"output": "./src/declarations/tld-operator"
}
},
"tld_operator_test": {
"main": "minimal_cns/src/backend/tld_operator.test.mo",
"type": "motoko",
"dependencies": ["name_registry", "tld_operator"]
},
"name_registry": {
"type": "rust",
"candid": "canisters/name-registry/spec.did",
"package": "cns_domain_registry"
},
"test_client": {
"type": "rust",
"candid": "canisters/test-client/spec.did",
"package": "test_client"
}
},
"output_env_file": ".env",
"version": 1,
"networks": {
"local": {
"type": "ephemeral"
}
}
}