-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
57 lines (57 loc) · 1.14 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
{
"canisters": {
"stICP": {
"main": "src/DIP20/motoko/src/token.mo",
"type": "motoko"
},
"ledger": {
"type": "custom",
"candid": "src/ledger/ledger.did",
"wasm": "src/ledger/ledger.wasm"
},
"meta_yield": {
"main": "src/meta_yield/main.mo",
"type": "motoko"
},
"internet_identity": {
"type": "custom",
"candid": "src/internet_identity/internet_identity.did",
"wasm": "src/internet_identity/internet_identity_dummy.wasm"
},
"frontend": {
"dependencies": [
"meta_yield"
],
"frontend": {
"entrypoint": "src/frontend/src/index.html"
},
"source": [
"src/frontend_assets/"
],
"type": "assets"
},
"pToken": {
"main": "src/DIP20/motoko/src/token.mo"
},
"web": {
"main": "src/DIP20/motoko/src/token.mo"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
},
"replica": {
"subnet_type": "system"
}
},
"dfx": "0.10.1",
"networks": {
"local": {
"bind": "0.0.0.0:8000",
"type": "ephemeral"
}
},
"version": 1
}