Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/introduction.md
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ A [Wallet](./wallet/wallet-overview.md) plays a crucial role in the seamless exc

## What Can you Achieve Using Privado ID?

1. **Privacy using Zero-Knowledge Proofs**: An Identity Holder, using zero-knowledge proofs, can keep thier personal data private. During the process of VC verification, it just needs to show a proof that they are the owner of a VC that matches certain criteria without letting the Verifier know of the actual VC. For example, an Identity Holder can prove to a Verifier authority that they are above 18 years of age by presenting the proof without revealing their actual age. This ensures minimum data exposure and hence confirms the safety of any sensitive data.
1. **Privacy using Zero-Knowledge Proofs**: An Identity Holder, using zero-knowledge proofs, can keep their personal data private. During the process of VC verification, it just needs to show a proof that they are the owner of a VC that matches certain criteria without letting the Verifier know of the actual VC. For example, an Identity Holder can prove to a Verifier authority that they are above 18 years of age by presenting the proof without revealing their actual age. This ensures minimum data exposure and hence confirms the safety of any sensitive data.
Another aspect of privacy comes from the fact that the Issuer would not be able to track the usage of VCs by an individual once it has been issued.

2. **Off-Chain and On-Chain Verification**: Verification of proofs can be done either off-chain or on-chain via Smart Contracts. For example, developers can set up a contract that airdrops tokens only to users that meet certain criteria based on their VCs.
Expand Down
2 changes: 1 addition & 1 deletion docs/issuer-node/issuer-node-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ You can create your own schemas and import them to the Issuer Node. Here's how y

## Credentials

The Credentials main page shows information about all the credentials that have been granted. Each of one those credentials can be revoked by clicking on the 3 dots at the end of the row.
The Credentials main page shows information about all the credentials that have been granted. Each of those credentials can be revoked by clicking on the 3 dots at the end of the row.

<div align="center">
<img src= "/img/credential-main.png" align="center" width="1000" height="1000"/>
Expand Down
2 changes: 1 addition & 1 deletion docs/mumbai-to-amoy-migration.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ To migrate to the Amoy testnet, developers must set up a new Issuer node configu
1. Setting up a new Issuer node using the latest configuration guidelines.

- To set up a new issuer node, please refer to [this installation guide](https://github.com/0xPolygonID/issuer-node/tree/develop). It includes the latest configuration for the Amoy testnet.
- An Issuer will need to create a new identity for Amoy, through the core API specifying the proper "network": "amoy". If you do it with the make generate-issuer-did command, then the program will ge the variables from the .env files that must be properly filled. (.env-samples are available at [Issuer Node GitHub repository](https://github.com/0xPolygonID/issuer-node/tree/main)).
- An Issuer will need to create a new identity for Amoy, through the core API specifying the proper "network": "amoy". If you do it with the make generate-issuer-did command, then the program will get the variables from the .env files that must be properly filled. (.env-samples are available at [Issuer Node GitHub repository](https://github.com/0xPolygonID/issuer-node/tree/main)).
- Here you can find more details about issuer configuration ([advanced Issuer Node configuration](https://devs.polygonid.com/docs/issuer/issuer-configuration)).

2. Deprecating and shutting down existing Issuer nodes configured for the Mumbai testnet.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
id: save-claims
title: Save credentials
sidebar_label: Save Credentials
description: Store a list of ClaimEntity associated with an identity in the the Polygon ID Sdk.
description: Store a list of ClaimEntity associated with an identity in the Polygon ID Sdk.
keywords:
- docs
- polygon id
Expand All @@ -14,7 +14,7 @@ keywords:
- credential
---

Store a list of `ClaimEntity` in the the Polygon ID SDK associated to an identity.
Store a list of `ClaimEntity` in the Polygon ID SDK associated to an identity.

```dart
Future<List<ClaimEntity>> saveClaims(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ Future<void> addDidProfileInfo({
});
```

`did` is the DID we interactedd with.
`did` is the DID we interacted with.

The `privateKey` is the key used to access all the sensitive information from the identity and also to realize operations like generating proofs.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Future<List<Map<String, dynamic>>> getDidProfileInfoList({
});
```

`did` is the DID we interactedd with.
`did` is the DID we interacted with.

The `privateKey` is the key used to access all the sensitive information from the identity and also to realize operations like generating proofs.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ Future<Map<String, dynamic>> getDidProfileInfo({
});
```

`did` is the DID we interactedd with.
`did` is the DID we interacted with.

The `privateKey` is the key used to access all the sensitive information from the identity and also to realize operations like generating proofs.

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ id: get-interactions
title: Get Interactions
sidebar_label: Get Interactions
description: "Get a list of `InteractionEntity` associated to the identity previously stored
in the the Polygon ID Sdk."
in the Polygon ID Sdk."
keywords:
- docs
- polygon id
Expand All @@ -15,7 +15,7 @@ keywords:
- Interaction Entity
---

Get a list of `InteractionEntity` associated to the identity previously stored in the the Polygon ID SDK.
Get a list of `InteractionEntity` associated to the identity previously stored in the Polygon ID SDK.

```dart
Future<List<InteractionBaseEntity>> getInteractions({
Expand Down