-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathdfx.json
125 lines (125 loc) · 3.33 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"canisters": {
"DRC20": {
"main": "./DRC20/examples/IClighthouse/DRC20.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DIP20DRC20": {
"main": "./DRC20/examples/dip20-drc20/DIP20DRC20.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"ICRC1": {
"main": "./DRC20/examples/IClighthouse/ICRC1.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DIP20Example": {
"main": "./DRC202/examples/DIP20Example/token.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC202": {
"main": "./DRC202/examples/IClighthouse/DRC202Proxy.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC202Test": {
"main": "./DRC202/examples/IClighthouse/DRC202Proxy.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC202Root": {
"main": "./DRC202/examples/IClighthouse/DRC202Root.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC202TestRoot": {
"main": "./DRC202/examples/IClighthouse/DRC202Root.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC202Bucket": {
"main": "./DRC202/examples/IClighthouse/DRC202Bucket.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC202TestBucket": {
"main": "./DRC202/examples/IClighthouse/DRC202Bucket.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC202Example": {
"main": "./DRC202/examples/IClighthouse/Example/Example.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205Root": {
"main": "./DRC205/examples/IClighthouse/DRC205Root.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205TestRoot": {
"main": "./DRC205/examples/IClighthouse/DRC205Root.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205": {
"main": "./DRC205/examples/IClighthouse/DRC205Proxy.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205Bucket": {
"main": "./DRC205/examples/IClighthouse/DRC205Bucket.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205Test": {
"main": "./DRC205/examples/IClighthouse/DRC205Proxy.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205TestBucket": {
"main": "./DRC205/examples/IClighthouse/DRC205Bucket.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205TestBucket2": {
"main": "./DRC205/examples/IClighthouse/DRC205Bucket.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC205Example": {
"main": "./DRC205/examples/IClighthouse/Example/Example.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"DRC207": {
"main": "./DRC207/examples/IClighthouse/CustomCanister.mo",
"type": "motoko",
"args" : "--compacting-gc"
},
"AccountId": {
"main": "./DRC202/examples/IClighthouse/AccountId.mo",
"type": "motoko",
"args" : "--compacting-gc"
}
},
"defaults": {
"build": {
"args": "--compacting-gc",
"packtool": "vessel sources"
}
},
"networks": {
"ic": {
"providers": ["https://ic0.app"],
"type": "persistent"
},
"local": {
"bind": "0.0.0.0:8000",
"type": "ephemeral"
}
}
}