-
Notifications
You must be signed in to change notification settings - Fork 9
/
dfx.json
52 lines (52 loc) · 1.02 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": {
"ICDexPair": {
"main": "src/ICDexPair.mo",
"type": "motoko",
"args" : "--incremental-gc",
"gzip" : true
},
"ICDexMaker": {
"main": "src/ICDexMaker.mo",
"type": "motoko",
"args" : "--compacting-gc",
"gzip" : true
},
"ICDexRouter": {
"main": "src/ICDexRouter.mo",
"type": "motoko",
"args" : "--compacting-gc",
"gzip" : true
},
"ICLtest": {
"main": "tokens/Token.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"Token0": {
"main": "tokens/Token.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"Token1": {
"main": "tokens/Token.mo",
"type": "motoko",
"args" : "--compacting-gc"
}
},
"defaults": {
"build": {
"packtool": "vessel sources"
}
},
"networks": {
"ic": {
"providers": ["https://ic0.app"],
"type": "persistent"
},
"local": {
"bind": "0.0.0.0:8000",
"type": "ephemeral"
}
}
}