-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
52 lines (51 loc) · 1.17 KB
/
dfx.json
File metadata and controls
52 lines (51 loc) · 1.17 KB
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": {
"icrc3": {
"main": "example/main.mo",
"type": "motoko",
"gzip": true
},
"archive": {
"main": "src/archive/lib.mo",
"type": "motoko",
"gzip": true
},
"test_runner": {
"main": "testActor/test_runner.mo",
"type": "motoko",
"gzip": true
},
"collector": {
"main": "pic/collector.mo",
"type": "motoko"
},
"icrc3_ovs_test_v1": {
"main": "pic/ICRC3OVSTestCanisterV1.mo",
"type": "motoko"
},
"icrc3_ovs_test_v2": {
"main": "pic/ICRC3OVSTestCanisterV2.mo",
"type": "motoko"
},
"icrc3-interface-test": {
"main": "testActor/InterfaceTest.mo",
"type": "motoko"
}
},
"defaults": {
"build": {
"args": "",
"packtool": "mops sources"
},
"replica": {
"subnet_type": "application"
}
},
"networks": {
"local": {
"bind": "127.0.0.1:8887",
"type": "ephemeral"
}
},
"version": 1
}