You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+21-17Lines changed: 21 additions & 17 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -12,25 +12,29 @@ This library is using [Hiero Python SDK](https://github.com/hiero-ledger/hiero-s
12
12
13
13
# Table of contents
14
14
15
-
1.[Documentation](#documentation)
16
-
2.[Getting started](#getting-started)
17
-
3.[Configuration](#configuration)
18
-
4.[Contributing](CONTRIBUTING.md)
19
-
15
+
1.[Overview](#overview)
16
+
2.[Documentation](#documentation)
17
+
3.[Getting started](#getting-started)
18
+
4.[Configuration](#configuration)
19
+
5.[Contributing](CONTRIBUTING.md)
20
+
20
21
## Overview
21
22
22
-
Identity networks are set of artifacts on Hedera Consensus Service that allow applications to share common channels to publish and resolve DID documents, issue verifiable credentials and control their validity status. These artifacts include:
23
-
* address book - a file on Hedera File Service that provides information about HCS topics and appnet servers,
24
-
* DID topic - an HCS topic intended for publishing DID documents,
25
-
* and VC topic - an HCS topic playing a role of verifiable credentials registry.
26
-
27
-
This SDK is designed to simplify :
28
-
* creation of identity networks within appnets, that is: creation and initialization of the artifacts mentioned above,
29
-
* generation of decentralized identifiers for Hedera DID Method and creation of their basic DID documents,
30
-
* creation (publishing), update, deletion and resolution of DID documents in appnet identity networks,
31
-
* issuance, revocation and status verification of Verifiable Credentials.
32
-
33
-
The SDK does not impose any particular way of how the DID or verifiable credential documents are constructed.
23
+
Decentralized identity ecosystems are built upon decentralized identifiers (DIDs) and verifiable credentials (VCs) standards, providing necessary functionality to publish and resolve DID documents and issue/verify credentials (claims).
24
+
25
+
Data model of such ecosystems rely on [Verifiable Data Registries (VDRs)](https://w3c.github.io/vc-data-model/#dfn-verifiable-data-registries), commonly represented by decentralized ledgers.
26
+
27
+
[Hiero](https://hiero.org/), as an open-source Decentralized Ledger Technology (DLT), is a great VDR option providing high-performance and low costs of operations.
28
+
Hedera, while being built on Hiero, is a large and trusted network that will be a great choice for solutions searching for high-reliability.
29
+
30
+
In particular, Hedera and other Hiero-based networks can be used as VDR for [Hedera DID Method](https://github.com/hashgraph/did-method/blob/master/hedera-did-method-specification.md) and [AnonCreds Verifiable Credentials](https://github.com/hyperledger/anoncreds-spec) by leveraging Hedera Consensus Service (HCS).
31
+
32
+
This SDK is designed to simplify:
33
+
34
+
- Creation and management of Hedera DID documents
35
+
- Creation and management of AnonCreds resources
36
+
- Adoption of Hiero-based VDRs for AnonCreds use cases
37
+
- Empowering new and existing Python-based agent implementations with high-performance and low operational costs provided by Hiero
0 commit comments