-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdfx.json
43 lines (43 loc) · 1.09 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
{
"canisters": {
"icp_basic_dex_backend": {
"main": "src/icp_basic_dex_backend/main.mo",
"type": "motoko"
},
"faucet": {
"main": "src/faucet/main.mo",
"type": "motoko"
},
"GoldDIP20": {
"main": "src/DIP20/motoko/src/token.mo",
"type": "motoko"
},
"SilverDIP20": {
"main": "src/DIP20/motoko/src/token.mo",
"type": "motoko"
},
"internet_identity_div": {
"type": "custom",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did"
},
"icp_basic_dex_frontend": {
"dependencies": ["icp_basic_dex_backend"],
"frontend": {
"entrypoint": "src/icp_basic_dex_frontend/src/index.html"
},
"source": [
"src/icp_basic_dex_frontend/assets",
"dist/icp_basic_dex_frontend/"
],
"type": "assets"
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"version": 1
}