-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdfx.json
More file actions
71 lines (71 loc) · 1.55 KB
/
dfx.json
File metadata and controls
71 lines (71 loc) · 1.55 KB
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
{
"canisters": {
"ver_ii_backend": {
"dependencies": [
"rep",
"dnft",
"doctoken"
],
"main": "src/ver_ii_backend/main.mo",
"type": "motoko"
},
"dnft": {
"type": "pull",
"id": "mmo7p-xaaaa-aaaan-qedda-cai"
},
"doctoken": {
"type": "pull",
"id": "mzjoc-wiaaa-aaaan-qedaq-cai"
},
"rep": {
"dependencies": [
"rep_token"
],
"main": "src/reputation/Reputation.mo",
"type": "motoko"
},
"rep_token": {
"dependencies": [
"ledger"
],
"main": "src/reputation/ReputationToken.mo",
"type": "motoko"
},
"ledger": {
"main": "src/reputation/Ledger.mo",
"type": "motoko"
},
"ver_ii_frontend": {
"dependencies": [
"ver_ii_backend",
"internet_identity"
],
"frontend": {
"entrypoint": "src/ver_ii_frontend/src/index.html"
},
"source": [
"src/ver_ii_frontend/assets",
"dist/ver_ii_frontend/"
],
"type": "assets"
},
"internet_identity": {
"type": "custom",
"candid": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity.did",
"wasm": "https://github.com/dfinity/internet-identity/releases/latest/download/internet_identity_dev.wasm.gz",
"remote": {
"id": {
"ic": "rdmx6-jaaaa-aaaaa-aaadq-cai"
}
},
"frontend": {}
}
},
"defaults": {
"build": {
"args": "",
"packtool": ""
}
},
"version": 1
}