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: docs/issuer/issuer-configuration.md
+27-1
Original file line number
Diff line number
Diff line change
@@ -33,7 +33,7 @@ The first step in setting up the issuer node is to define the networks it will s
33
33
The github repository provides an example file called `resolvers_setting_sample.yaml` this file can be used as a reference to configure the issuer node networks.
34
34
You must create a file called resolvers_settings.yaml which must be in the root directory.
35
35
36
-
Let's see an example of how to configure the issuer node for the Polygon amoy network.
36
+
Let's see an example of how to configure the issuer node for the Polygon amoy network and [Privado Identity Chain](/docs/privado-identity-chain.md)
37
37
```yaml
38
38
polygon:
39
39
amoy:
@@ -55,7 +55,33 @@ polygon:
55
55
rhsUrl: https://rhs-staging.polygonid.me # RHS URL (setup this if you are using OffChain or All mode)
56
56
chainID: 80002# Polygon amoy chain ID
57
57
publishingKey: pbkey # Publishing key path. Left this value as this.
Configuring Privado Idenity Chain (privado:main) is necessary as identities on the Privado ID Web Wallet and the Privado ID Wallet App are asociated to this chain. This configuration ensures issuance of credentials to these identities.
Copy file name to clipboardExpand all lines: docs/issuer/migration-v2-v3.md
+14-14
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
1
---
2
2
id: issuer-migration-guide
3
-
title: Migration Guide (v1 to v2)
4
-
sidebar_label: Migration Guide (v1 to v2)
5
-
description: Guide for migrating from issuer node v1 to v2
3
+
title: Migration Guide (v2 to v3)
4
+
sidebar_label: Migration Guide (v2 to v3)
5
+
description: Guide for migrating from issuer node v2 to v3
6
6
keywords:
7
7
- docs
8
8
- privado id
9
9
- issuer node
10
-
- v1
11
10
- v2
11
+
- v3
12
12
- core
13
13
- API
14
14
- UI
@@ -18,24 +18,24 @@ import useBaseUrl from '@docusaurus/useBaseUrl';
18
18
import Tabs from '@theme/Tabs';
19
19
import TabItem from '@theme/TabItem';
20
20
21
-
# Migration Guide: Upgrading from Issuer Node v1 to v2
21
+
# Migration Guide: Upgrading from Issuer Node v2 to v3
22
22
23
-
We are excited to announce the release of Issuer Node v2. If you are currently running Issuer Node v1, we recommend migrating to the new version as soon as possible.
23
+
We are excited to announce the release of Issuer Node v3. If you are currently running Issuer Node v2, we recommend migrating to the new version as soon as possible.
24
24
25
25
:::note
26
26
The migration process is designed to be seamless, with no disruption to previously issued credentials, connections, or the overall functionality of your system.
27
27
:::
28
28
29
-
## Key Enhancements in Issuer Node v2
29
+
## Key Enhancements in Issuer Node v3
30
30
31
-
-**Unified API**: The previous two separate APIs (Core API and UI API) have been consolidated into a single, unified API. This simplifies development, enhances developer experience, and introduces new features like improved credentials status check while retaining all functionalities from v1.
32
-
-**Streamlined Credential Issuance**: Issuer Node v2 introduces a simplified credential issuance flow. Now, users can authenticate and receive credentials in a single step using universal links.
33
-
-**Flexible Key Management**: The vault setup is now optional, giving developers the freedom to choose their preferred key management tool. Additionally, Issuer Node v2 supports AWS Key Management Service (KMS).
31
+
-**Unified API** (v2): The previous two separate APIs (Core API and UI API) have been consolidated into a single, unified API. This simplifies development, enhances developer experience, and introduces new features like improved credentials status check while retaining all functionalities from API v1.
32
+
-**Streamlined Credential Issuance**: Issuer Node v3 introduces a simplified credential issuance flow. Now, users can authenticate and receive credentials in a single step using universal links.
33
+
-**Flexible Key Management**: The vault setup is now optional, giving developers the freedom to choose their preferred key management tool. Additionally, Issuer Node v3 supports AWS Key Management Service (KMS).
34
34
-**Enhanced UI**: The new UI enables the creation of multiple identities supported on multiple networks for an issuer and supports credential issuance through universal links, all seamlessly integrated with the Unified API.
35
35
36
36
## Migration Steps
37
37
38
-
If you were using Docker to run Issuer Node and wish to migrate to v2, please follow these steps after backing up your project folder.
38
+
If you were using Docker to run Issuer Node and wish to migrate to 3, please follow these steps after backing up your project folder.
39
39
40
40
#### 1. **Backup Your Database**
41
41
@@ -61,7 +61,7 @@ make stop
61
61
62
62
#### 4. **Pull Changes**
63
63
64
-
Pull the latest changes for v2 from the main branch of the repository
64
+
Pull the latest changes for v3 from the main branch of the repository
65
65
```bash
66
66
git pull
67
67
```
@@ -129,10 +129,10 @@ make run-all
129
129
## Additional Notes
130
130
131
131
- New makefile commands have been added in this release. We recommend reviewing the README file for a comprehensive list.
132
-
- Issuer Node v2 continues to support the following endpoints from v1 to ensure compatibility with previously issued credentials:
132
+
- Issuer Node API v2 continues to support the following endpoints from v1 to ensure compatibility with previously issued credentials:
Copy file name to clipboardExpand all lines: docs/issuer/setup-issuer-core.md
+3-3
Original file line number
Diff line number
Diff line change
@@ -21,9 +21,9 @@ This article details the steps to set up your own Issuer Node API.
21
21
22
22
:::caution
23
23
24
-
Issuer Node v2 is now available, bringing enhanced features and optimizations. If you are using the previous version of Issuer Node (v1), we recommend upgrading to the latest version as soon as possible. To ensure a smooth transition, please follow the migration guide provided [<ins> here </ins>](migration-v1-v2.md/).
24
+
Issuer Node v3 is now available, bringing enhanced features and optimizations. If you are using the previous version of Issuer Node (v2), we recommend upgrading to the latest version as soon as possible. To ensure a smooth transition, please follow the migration guide provided [<ins> here </ins>](issuer-migration-guide).
25
25
26
-
Below is the installation guide for Issuer Node v2.
26
+
Below is the installation guide for Issuer Node v3.
0 commit comments