-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
42 lines (40 loc) · 933 Bytes
/
dfx.json
File metadata and controls
42 lines (40 loc) · 933 Bytes
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
{
"version": 1,
"canisters": {
"icrc2": {
"type": "motoko",
"main": "src/ICRC2/Canisters/Token.mo",
"gzip": true
},
"icrc2-interface-test": {
"type": "motoko",
"main": "src/ICRC2/Canisters/InterfaceTest.mo",
"gzip": true
},
"icrc2-index-test": {
"type": "motoko",
"main": "src/ICRC2/Canisters/IndexTest.mo",
"gzip": true
},
"test": {
"type": "motoko",
"main": "tests/ActorTest.mo",
"args": "-v",
"gzip": true
}
},
"defaults": {
"build": {
"packtool": "mops sources",
"args": ""
},
"replica": {
"subnet_type": "system"
}
},"networks": {
"local": {
"bind": "127.0.0.1:8887",
"type": "ephemeral"
}
}
}