dkg.js 6.0.8 → 6.0.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CONTRIBUTIONS +35 -0
- package/LICENSE +202 -0
- package/README.md +221 -42
- package/dist/dkg.min.js +1 -1
- package/dist/dkg.min.js.LICENSE.txt +2 -0
- package/examples/demo.html +209 -185
- package/images/banner.jpg +0 -0
- package/images/dkg-architecture.png +0 -0
- package/images/icons/coinmarketcap.svg +1 -0
- package/images/icons/discord.svg +10 -0
- package/images/icons/linkedin.svg +4 -0
- package/images/icons/medium.svg +4 -0
- package/images/icons/reddit.svg +7 -0
- package/images/icons/telegram.svg +10 -0
- package/images/icons/x.svg +4 -0
- package/images/icons/youtube.svg +5 -0
- package/images/ka.png +0 -0
- package/images/knowledge-assets-graph1.svg +9 -0
- package/images/knowledge-assets-graph2.svg +9 -0
- package/images/knowledge-assets-graph3.svg +9 -0
- package/images/knowledge-assets-graph4.svg +9 -0
- package/images/nodes.png +0 -0
- package/managers/asset-operations-manager.js +40 -12
- package/managers/blockchain-operations-manager.js +7 -1
- package/package.json +6 -2
- package/services/blockchain-service/blockchain-service-base.js +47 -10
- package/services/blockchain-service/implementations/browser-blockchain-service.js +34 -16
- package/services/blockchain-service/implementations/node-blockchain-service.js +38 -19
- package/services/input-service.js +1 -1
- package/webpack.config.js +3 -2
- package/header.png +0 -0
package/CONTRIBUTIONS
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# Contributing to dkg.js
|
|
2
|
+
|
|
3
|
+
We appreciate your interest in contributing to `dkg.js`, the JavaScript SDK for interacting with the OriginTrail Decentralized Knowledge Graph! We welcome contributions from anyone and are grateful for even the smallest of fixes!
|
|
4
|
+
|
|
5
|
+
## Contributions We Are Looking For
|
|
6
|
+
|
|
7
|
+
Your help is valuable to us in various ways:
|
|
8
|
+
|
|
9
|
+
- **Code**: Submit a pull request for open issues or propose a new feature you think would be beneficial to the project.
|
|
10
|
+
- **Bugs**: File bug reports in our issue tracker. Providing details such as the `dkg.js` library version, and traceback messages will help us fix problems faster.
|
|
11
|
+
- **Documentation**: Improve our project's documentation, whether it's more detailed explanations, new usage examples, or clearer function descriptions.
|
|
12
|
+
- **Tests**: Add more tests to increase our project's code coverage and overall reliability.
|
|
13
|
+
- **Reviews**: Review changes made in our ongoing pull requests.
|
|
14
|
+
|
|
15
|
+
## Getting Started
|
|
16
|
+
|
|
17
|
+
1. Fork the repository to your own GitHub account.
|
|
18
|
+
2. Clone the repository to your local machine.
|
|
19
|
+
3. Create a new branch for each feature, fix or improvement.
|
|
20
|
+
4. Ensure your code follows the repository style guide.
|
|
21
|
+
5. Ensure your code is well-documented.
|
|
22
|
+
6. Ensure your code is thoroughly tested.
|
|
23
|
+
7. Submit a pull request to the `main` branch.
|
|
24
|
+
|
|
25
|
+
## Code Review Process
|
|
26
|
+
|
|
27
|
+
The maintainers of `dkg.js` review each pull request. We may suggest some changes, improvements or alternatives. When the pull request is approved, it will be merged into the main codebase.
|
|
28
|
+
|
|
29
|
+
## Community
|
|
30
|
+
|
|
31
|
+
Feel free to ask for help or discuss solutions with us. We appreciate your contributions to our community! You can find the list of social media in the README.
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
By contributing, you agree that your contributions will be licensed under its Apache-2.0 License.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,202 @@
|
|
|
1
|
+
|
|
2
|
+
Apache License
|
|
3
|
+
Version 2.0, January 2004
|
|
4
|
+
http://www.apache.org/licenses/
|
|
5
|
+
|
|
6
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
7
|
+
|
|
8
|
+
1. Definitions.
|
|
9
|
+
|
|
10
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
11
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
12
|
+
|
|
13
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
14
|
+
the copyright owner that is granting the License.
|
|
15
|
+
|
|
16
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
17
|
+
other entities that control, are controlled by, or are under common
|
|
18
|
+
control with that entity. For the purposes of this definition,
|
|
19
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
20
|
+
direction or management of such entity, whether by contract or
|
|
21
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
22
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
23
|
+
|
|
24
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
25
|
+
exercising permissions granted by this License.
|
|
26
|
+
|
|
27
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
28
|
+
including but not limited to software source code, documentation
|
|
29
|
+
source, and configuration files.
|
|
30
|
+
|
|
31
|
+
"Object" form shall mean any form resulting from mechanical
|
|
32
|
+
transformation or translation of a Source form, including but
|
|
33
|
+
not limited to compiled object code, generated documentation,
|
|
34
|
+
and conversions to other media types.
|
|
35
|
+
|
|
36
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
37
|
+
Object form, made available under the License, as indicated by a
|
|
38
|
+
copyright notice that is included in or attached to the work
|
|
39
|
+
(an example is provided in the Appendix below).
|
|
40
|
+
|
|
41
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
42
|
+
form, that is based on (or derived from) the Work and for which the
|
|
43
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
44
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
45
|
+
of this License, Derivative Works shall not include works that remain
|
|
46
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
47
|
+
the Work and Derivative Works thereof.
|
|
48
|
+
|
|
49
|
+
"Contribution" shall mean any work of authorship, including
|
|
50
|
+
the original version of the Work and any modifications or additions
|
|
51
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
52
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
53
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
54
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
55
|
+
means any form of electronic, verbal, or written communication sent
|
|
56
|
+
to the Licensor or its representatives, including but not limited to
|
|
57
|
+
communication on electronic mailing lists, source code control systems,
|
|
58
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
59
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
60
|
+
excluding communication that is conspicuously marked or otherwise
|
|
61
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
62
|
+
|
|
63
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
64
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
65
|
+
subsequently incorporated within the Work.
|
|
66
|
+
|
|
67
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
68
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
69
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
70
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
71
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
72
|
+
Work and such Derivative Works in Source or Object form.
|
|
73
|
+
|
|
74
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
75
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
76
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
77
|
+
(except as stated in this section) patent license to make, have made,
|
|
78
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
79
|
+
where such license applies only to those patent claims licensable
|
|
80
|
+
by such Contributor that are necessarily infringed by their
|
|
81
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
82
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
83
|
+
institute patent litigation against any entity (including a
|
|
84
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
85
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
86
|
+
or contributory patent infringement, then any patent licenses
|
|
87
|
+
granted to You under this License for that Work shall terminate
|
|
88
|
+
as of the date such litigation is filed.
|
|
89
|
+
|
|
90
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
91
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
92
|
+
modifications, and in Source or Object form, provided that You
|
|
93
|
+
meet the following conditions:
|
|
94
|
+
|
|
95
|
+
(a) You must give any other recipients of the Work or
|
|
96
|
+
Derivative Works a copy of this License; and
|
|
97
|
+
|
|
98
|
+
(b) You must cause any modified files to carry prominent notices
|
|
99
|
+
stating that You changed the files; and
|
|
100
|
+
|
|
101
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
102
|
+
that You distribute, all copyright, patent, trademark, and
|
|
103
|
+
attribution notices from the Source form of the Work,
|
|
104
|
+
excluding those notices that do not pertain to any part of
|
|
105
|
+
the Derivative Works; and
|
|
106
|
+
|
|
107
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
108
|
+
distribution, then any Derivative Works that You distribute must
|
|
109
|
+
include a readable copy of the attribution notices contained
|
|
110
|
+
within such NOTICE file, excluding those notices that do not
|
|
111
|
+
pertain to any part of the Derivative Works, in at least one
|
|
112
|
+
of the following places: within a NOTICE text file distributed
|
|
113
|
+
as part of the Derivative Works; within the Source form or
|
|
114
|
+
documentation, if provided along with the Derivative Works; or,
|
|
115
|
+
within a display generated by the Derivative Works, if and
|
|
116
|
+
wherever such third-party notices normally appear. The contents
|
|
117
|
+
of the NOTICE file are for informational purposes only and
|
|
118
|
+
do not modify the License. You may add Your own attribution
|
|
119
|
+
notices within Derivative Works that You distribute, alongside
|
|
120
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
121
|
+
that such additional attribution notices cannot be construed
|
|
122
|
+
as modifying the License.
|
|
123
|
+
|
|
124
|
+
You may add Your own copyright statement to Your modifications and
|
|
125
|
+
may provide additional or different license terms and conditions
|
|
126
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
127
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
128
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
129
|
+
the conditions stated in this License.
|
|
130
|
+
|
|
131
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
132
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
133
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
134
|
+
this License, without any additional terms or conditions.
|
|
135
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
136
|
+
the terms of any separate license agreement you may have executed
|
|
137
|
+
with Licensor regarding such Contributions.
|
|
138
|
+
|
|
139
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
140
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
141
|
+
except as required for reasonable and customary use in describing the
|
|
142
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
143
|
+
|
|
144
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
145
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
146
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
147
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
148
|
+
implied, including, without limitation, any warranties or conditions
|
|
149
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
150
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
151
|
+
appropriateness of using or redistributing the Work and assume any
|
|
152
|
+
risks associated with Your exercise of permissions under this License.
|
|
153
|
+
|
|
154
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
155
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
156
|
+
unless required by applicable law (such as deliberate and grossly
|
|
157
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
158
|
+
liable to You for damages, including any direct, indirect, special,
|
|
159
|
+
incidental, or consequential damages of any character arising as a
|
|
160
|
+
result of this License or out of the use or inability to use the
|
|
161
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
162
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
163
|
+
other commercial damages or losses), even if such Contributor
|
|
164
|
+
has been advised of the possibility of such damages.
|
|
165
|
+
|
|
166
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
167
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
168
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
169
|
+
or other liability obligations and/or rights consistent with this
|
|
170
|
+
License. However, in accepting such obligations, You may act only
|
|
171
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
172
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
173
|
+
defend, and hold each Contributor harmless for any liability
|
|
174
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
175
|
+
of your accepting any such warranty or additional liability.
|
|
176
|
+
|
|
177
|
+
END OF TERMS AND CONDITIONS
|
|
178
|
+
|
|
179
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
180
|
+
|
|
181
|
+
To apply the Apache License to your work, attach the following
|
|
182
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
183
|
+
replaced with your own identifying information. (Don't include
|
|
184
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
185
|
+
comment syntax for the file format. We also recommend that a
|
|
186
|
+
file or class name and description of purpose be included on the
|
|
187
|
+
same "printed page" as the copyright notice for easier
|
|
188
|
+
identification within third-party archives.
|
|
189
|
+
|
|
190
|
+
Copyright 2023 OriginTrail
|
|
191
|
+
|
|
192
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
193
|
+
you may not use this file except in compliance with the License.
|
|
194
|
+
You may obtain a copy of the License at
|
|
195
|
+
|
|
196
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
197
|
+
|
|
198
|
+
Unless required by applicable law or agreed to in writing, software
|
|
199
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
200
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
201
|
+
See the License for the specific language governing permissions and
|
|
202
|
+
limitations under the License.
|
package/README.md
CHANGED
|
@@ -1,70 +1,249 @@
|
|
|
1
|
-
|
|
1
|
+
<a name="readme-top"></a>
|
|
2
2
|
|
|
3
|
-
|
|
3
|
+
___
|
|
4
|
+
|
|
5
|
+
<br />
|
|
6
|
+
<div align="center">
|
|
7
|
+
<a href="https://github.com/OriginTrail/dkg.js">
|
|
8
|
+
<img src="images/banner.jpg" alt="JavaScript SDK Banner">
|
|
9
|
+
</a>
|
|
4
10
|
|
|
5
|
-
|
|
11
|
+
<h3 align="center"><b>dkg.js</b></h3>
|
|
12
|
+
|
|
13
|
+
<p align="center">
|
|
14
|
+
JavaScript SDK for interacting with the OriginTrail Decentralized Knowledge Graph
|
|
15
|
+
</br>
|
|
16
|
+
<a href="https://docs.origintrail.io/">OriginTrail Docs</a>
|
|
17
|
+
·
|
|
18
|
+
<a href="https://github.com/OriginTrail/dkg.js/examples/demo.js">View Demo</a>
|
|
19
|
+
·
|
|
20
|
+
<a href="https://github.com/OriginTrail/dkg.js/issues">Report Bug</a>
|
|
21
|
+
·
|
|
22
|
+
<a href="https://github.com/OriginTrail/dkg.js/issues">Request Feature</a>
|
|
23
|
+
</p>
|
|
24
|
+
</div>
|
|
25
|
+
|
|
26
|
+
</br>
|
|
27
|
+
|
|
28
|
+
<details open>
|
|
29
|
+
<summary>
|
|
30
|
+
<b>Table of Contents</b>
|
|
31
|
+
</summary>
|
|
32
|
+
<ol>
|
|
33
|
+
<li>
|
|
34
|
+
<a href="#📚-about-the-project">📚 About The Project</a>
|
|
35
|
+
<ul>
|
|
36
|
+
<li><a href="#what-is-the-decentralized-knowledge-graph">What is the Decentralized Knowledge Graph?</a></li>
|
|
37
|
+
<li><a href="#the-origintrail-dkg-architecture">The OriginTrail DKG Architecture</a></li>
|
|
38
|
+
<li><a href="#what-is-a-knowledge-asset">What is a Knowledge Asset?</a></li>
|
|
39
|
+
</ul>
|
|
40
|
+
</li>
|
|
41
|
+
<li>
|
|
42
|
+
<a href="#🚀-getting-started">🚀 Getting Started</a>
|
|
43
|
+
<ul>
|
|
44
|
+
<li><a href="#prerequisites">Prerequisites</a></li>
|
|
45
|
+
<li><a href="#installation">Installation</a></li>
|
|
46
|
+
</ul>
|
|
47
|
+
</li>
|
|
48
|
+
<li><a href="#📄-license">📄 License</a></li>
|
|
49
|
+
<li><a href="#🤝-contributing">🤝 Contributing</a></li>
|
|
50
|
+
<li><a href="#❤️-thanks-to-all-contributors">❤️ Contributors</a></li>
|
|
51
|
+
<li><a href="#📰-social-media">📰 Social Media</a></li>
|
|
52
|
+
</ol>
|
|
53
|
+
</details>
|
|
54
|
+
|
|
55
|
+
___
|
|
56
|
+
|
|
57
|
+
<br/>
|
|
58
|
+
|
|
59
|
+
## 📚 About The Project
|
|
60
|
+
|
|
61
|
+
<details open>
|
|
62
|
+
<summary>
|
|
63
|
+
|
|
64
|
+
### **What is the Decentralized Knowledge Graph?**
|
|
65
|
+
</summary>
|
|
66
|
+
|
|
67
|
+
<br/>
|
|
68
|
+
|
|
69
|
+
<div align="center">
|
|
70
|
+
<img src="images/nodes.png" alt="Knowledge Asset" width="200">
|
|
71
|
+
</div>
|
|
72
|
+
|
|
73
|
+
OriginTrail Decentralized Knowledge Graph (DKG), hosted on the OriginTrail Decentralized Network (ODN) as trusted knowledge infrastructure, is shared global Knowledge Graph of Knowledge Assets. Running on the basis of the permissionless multi-chain OriginTrail protocol, it combines blockchains and knowledge graph technology to enable trusted AI applications based on key W3C standards.
|
|
74
|
+
</details>
|
|
75
|
+
|
|
76
|
+
<details open>
|
|
77
|
+
<summary>
|
|
78
|
+
|
|
79
|
+
### **The OriginTrail DKG Architecture**
|
|
80
|
+
</summary>
|
|
81
|
+
|
|
82
|
+
<br/>
|
|
83
|
+
|
|
84
|
+
The OriginTrail tech stack is a three layer structure, consisting of the multi-chain consensus layer (OriginTrail layer 1, running on multiple blockchains), the Decentralized Knowledge Graph layer (OriginTrail Layer 2, hosted on the ODN) and Trusted Knowledge applications in the application layer.
|
|
85
|
+
|
|
86
|
+
<div align="center">
|
|
87
|
+
<img src="images/dkg-architecture.png" alt="DKG Architecture" width="400">
|
|
88
|
+
</div>
|
|
89
|
+
|
|
90
|
+
Further, the architecture differentiates between **the public, replicated knowledge graph** shared by all network nodes according to the protocol, and **private Knowledge graphs** hosted separately by each of the OriginTrail nodes.
|
|
6
91
|
|
|
7
|
-
|
|
92
|
+
**Anyone can run an OriginTrail node and become part of the ODN, contributing to the network capacity and hosting the OriginTrail DKG. The OriginTrail node is the ultimate data service for data and knowledge intensive Web3 applications and is used as the key backbone for trusted AI applications (see https://chatdkg.ai)**
|
|
93
|
+
</details>
|
|
8
94
|
|
|
95
|
+
<details open>
|
|
96
|
+
<summary>
|
|
9
97
|
|
|
10
|
-
|
|
98
|
+
### **What is a Knowledge Asset?**
|
|
99
|
+
</summary>
|
|
11
100
|
|
|
101
|
+
<br/>
|
|
12
102
|
|
|
13
|
-
|
|
103
|
+
<div align="center">
|
|
104
|
+
<img src="images/ka.png" alt="Knowledge Asset" width="200">
|
|
105
|
+
</div>
|
|
14
106
|
|
|
15
|
-
|
|
107
|
+
**Knowledge Asset is the new, AI‑ready resource for the Internet**
|
|
16
108
|
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
|
|
109
|
+
Knowledge Assets are verifiable containers of structured knowledge that live on the OriginTrail DKG and provide:
|
|
110
|
+
- **Discoverability - UAL is the new URL**. Uniform Asset Locators (UALs, based on the W3C Decentralized Identifiers) are a new Web3 knowledge identifier (extensions of the Uniform Resource Locators - URLs) which identify a specific piece of knowledge and make it easy to find and connect with other Knowledge Assets.
|
|
111
|
+
- **Ownership - NFTs enable ownership**. Each Knowledge Asset contains an NFT token that enables ownership, knowledge asset administration and market mechanisms.
|
|
112
|
+
- **Verifiability - On-chain information origin and verifiable trail**. The blockchain tech increases trust, security, transparency, and the traceability of information.
|
|
21
113
|
|
|
22
|
-
Common knowledge graphs however are deployed within the domain of one organization and are designed to capture knowledge from various sources both from within and outside of the organization.
|
|
23
114
|
|
|
24
|
-
|
|
115
|
+
By their nature, Knowledge Assets are semantic resources (following the W3C Semantic Web set of standards), and through their symbolic representations inherently AI ready. See more at https://chatdkg.ai
|
|
116
|
+
<br/>
|
|
25
117
|
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
118
|
+
**Discover Knowledge Assets with the DKG Explorer:**
|
|
119
|
+
<div align="center">
|
|
120
|
+
<table>
|
|
121
|
+
<tr>
|
|
122
|
+
<td align="center">
|
|
123
|
+
<a href="https://dkg.origintrail.io/explore?ual=did:dkg:otp/0x5cac41237127f94c2d21dae0b14bfefa99880630/309100">
|
|
124
|
+
<img src="images/knowledge-assets-graph1.svg" width="300" alt="Knowledge Assets Graph 1">
|
|
125
|
+
</a>
|
|
126
|
+
<br><b>Supply Chains</b>
|
|
127
|
+
</td>
|
|
128
|
+
<td align="center">
|
|
129
|
+
<a href="https://dkg.origintrail.io/explore?ual=did:dkg:otp/0x5cac41237127f94c2d21dae0b14bfefa99880630/309285">
|
|
130
|
+
<img src="images/knowledge-assets-graph2.svg" width="300" alt="Knowledge Assets Graph 2">
|
|
131
|
+
</a>
|
|
132
|
+
<br><b>Construction</b>
|
|
133
|
+
</td>
|
|
134
|
+
<td align="center">
|
|
135
|
+
<a href="https://dkg.origintrail.io/explore?ual=did:dkg:otp/0x5cac41237127f94c2d21dae0b14bfefa99880630/309222">
|
|
136
|
+
<img src="images/knowledge-assets-graph3.svg" width="300" alt="Knowledge Assets Graph 3">
|
|
137
|
+
</a>
|
|
138
|
+
<br><b>Life sciences and healthcare</b>
|
|
139
|
+
</td>
|
|
140
|
+
<td align="center">
|
|
141
|
+
<a href="https://dkg.origintrail.io/explore?ual=did:dkg:otp/0x5cac41237127f94c2d21dae0b14bfefa99880630/308028">
|
|
142
|
+
<img src="images/knowledge-assets-graph4.svg" width="300" alt="Knowledge Assets Graph 3">
|
|
143
|
+
</a>
|
|
144
|
+
<br><b>Metaverse</b>
|
|
145
|
+
</td>
|
|
146
|
+
</tr>
|
|
147
|
+
</table>
|
|
148
|
+
</div>
|
|
30
149
|
|
|
31
|
-
## The OriginTrail DKG Architecture
|
|
32
150
|
|
|
33
|
-
|
|
151
|
+
</details>
|
|
34
152
|
|
|
35
|
-
|
|
153
|
+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
|
154
|
+
<br/>
|
|
36
155
|
|
|
37
|
-
|
|
38
|
-
* **a multi-chain data exchange network** - connects to several blockchains (currently Ethereum and xDai with more integrations upcoming such as with Polkadot)
|
|
39
|
-
* **designed for off-chain data exchange using standardized data models** (GS1 & W3C standards and recommendations)
|
|
40
|
-
* **public open source software**
|
|
41
|
-
* **infrastructure for knowledge marketplaces & tenders** - more info [here](https://www.youtube.com/watch?v=4uCxYGRh5fk)
|
|
156
|
+
## 🚀 Getting Started
|
|
42
157
|
|
|
43
|
-
|
|
158
|
+
___
|
|
44
159
|
|
|
160
|
+
### Prerequisites
|
|
45
161
|
|
|
46
|
-
|
|
162
|
+
- **Node.js** >= 16.0.0
|
|
163
|
+
- **npm** >= 8.0.0
|
|
47
164
|
|
|
165
|
+
In order to use in the local environment, make sure to [run the local DKG network](https://github.com/OriginTrail/ot-node?tab=readme-ov-file#local-network-setup).
|
|
48
166
|
|
|
167
|
+
___
|
|
168
|
+
<br/>
|
|
49
169
|
|
|
50
|
-
|
|
170
|
+
### Installation
|
|
51
171
|
|
|
52
|
-
|
|
172
|
+
<br/>
|
|
53
173
|
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
174
|
+
Install the SDK:
|
|
175
|
+
```bash
|
|
176
|
+
npm install dkg.js
|
|
177
|
+
```
|
|
57
178
|
|
|
58
|
-
|
|
179
|
+
Now you can run a demo example file (requires the local DKG network running):
|
|
180
|
+
```bash
|
|
181
|
+
node examples/demo.js
|
|
182
|
+
```
|
|
59
183
|
|
|
60
|
-
|
|
184
|
+
<br/>
|
|
185
|
+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
|
186
|
+
|
|
187
|
+
## 📄 License
|
|
61
188
|
|
|
62
|
-
|
|
189
|
+
Distributed under the Apache-2.0 License. See `LICENSE` file for more information.
|
|
190
|
+
|
|
191
|
+
<br/>
|
|
192
|
+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
|
193
|
+
|
|
194
|
+
## 🤝 Contributing
|
|
195
|
+
|
|
196
|
+
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are **greatly appreciated**.
|
|
197
|
+
|
|
198
|
+
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement".
|
|
199
|
+
Don't forget to give the project a star! Thanks again!
|
|
200
|
+
|
|
201
|
+
1. Fork the Project
|
|
202
|
+
2. Create your Feature Branch (`git checkout -b feature/AmazingFeature`)
|
|
203
|
+
3. Commit your Changes (`git commit -m 'Add some AmazingFeature'`)
|
|
204
|
+
4. Push to the Branch (`git push origin feature/AmazingFeature`)
|
|
205
|
+
5. Open a Pull Request
|
|
206
|
+
|
|
207
|
+
<br/>
|
|
208
|
+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
|
209
|
+
|
|
210
|
+
## ❤️ Thanks to all Contributors!
|
|
211
|
+
|
|
212
|
+
<!-- readme: collaborators,contributors/- -start -->
|
|
213
|
+
<!-- readme: collaborators,contributors/- -end -->
|
|
214
|
+
|
|
215
|
+
<br/>
|
|
216
|
+
<p align="right">(<a href="#readme-top">back to top</a>)</p>
|
|
217
|
+
|
|
218
|
+
## 📰 Social Media
|
|
219
|
+
|
|
220
|
+
<br/>
|
|
221
|
+
|
|
222
|
+
<div align="center">
|
|
223
|
+
<a href="https://medium.com/origintrail">
|
|
224
|
+
<img src="images/icons/medium.svg" alt="Medium Badge" width="30" style="margin-right: 10px"/>
|
|
225
|
+
</a>
|
|
226
|
+
<a href="https://t.me/origintrail">
|
|
227
|
+
<img src="images/icons/telegram.svg" alt="Telegram Badge" width="30" style="margin-right: 10px"/>
|
|
228
|
+
</a>
|
|
229
|
+
<a href="https://x.com/origin_trail">
|
|
230
|
+
<img src="images/icons/x.svg" alt="X Badge" width="30" style="margin-right: 10px"/>
|
|
231
|
+
</a>
|
|
232
|
+
<a href="https://www.youtube.com/c/origintrail">
|
|
233
|
+
<img src="images/icons/youtube.svg" alt="YouTube Badge" width="30" style="margin-right: 10px"/>
|
|
234
|
+
</a>
|
|
235
|
+
<a href="https://www.linkedin.com/company/origintrail/">
|
|
236
|
+
<img src="images/icons/linkedin.svg" alt="LinkedIn Badge" width="30" style="margin-right: 10px"/>
|
|
237
|
+
</a>
|
|
238
|
+
<a href="https://discord.gg/cCRPzzmnNT">
|
|
239
|
+
<img src="images/icons/discord.svg" alt="Discord Badge" width="30" style="margin-right: 10px"/>
|
|
240
|
+
</a>
|
|
241
|
+
<a href="https://www.reddit.com/r/OriginTrail/">
|
|
242
|
+
<img src="images/icons/reddit.svg" alt="Reddit Badge" width="30" style="margin-right: 10px"/>
|
|
243
|
+
</a>
|
|
244
|
+
<a href="https://coinmarketcap.com/currencies/origintrail/">
|
|
245
|
+
<img src="images/icons/coinmarketcap.svg" alt="Coinmarketcap Badge" width="30" style="margin-right: 10px"/>
|
|
246
|
+
</a>
|
|
247
|
+
</div>
|
|
63
248
|
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
## Get in touch
|
|
67
|
-
|
|
68
|
-
Get in touch with the OriginTrail tech community through [Discord](https://discordapp.com/invite/FCgYk2S).
|
|
69
|
-
|
|
70
|
-
[`#traceon`]()
|
|
249
|
+
___
|