Skip to content

Commit

Permalink
docs: update identifier creation (#208)
Browse files Browse the repository at this point in the history
<!--
  For Work In Progress Pull Requests, please use the Draft PR feature,
see https://github.blog/2019-02-14-introducing-draft-pull-requests/ for
further details.
  
  For a timely review/response, please avoid force-pushing additional
  commits if your PR already received reviews or comments.
  
Before submitting a Pull Request, please ensure you've done the
following:
- 📖 Read the [Contributing
Guide](https://github.com/uncefact/project-vckit/blob/main/CONTRIBUTING.md).
- 📖 Read the [Code of
Conduct](https://github.com/uncefact/project-vckit/blob/main/CODE_OF_CONDUCT.md).
  - 👷‍♀️ Create small PRs. In most cases, this will be possible.
  - ✅ Provide tests for your changes.
- 📝 Use descriptive commit messages following [conventional
commits](https://www.conventionalcommits.org/en/v1.0.0/).
- 📗 Update any related documentation and include any relevant
screenshots.
-->
## What type of PR is this? (check all applicable)
- [ ] 🍕 Feature
- [ ] 🐛 Bug Fix
- [x] 📝 Documentation Update
- [ ] 🎨 Style
- [ ] 🧑‍💻 Code Refactor
- [ ] 🔥 Performance Improvements
- [ ] ✅ Test
- [ ] 🤖 Build
- [ ] 🔁 CI
- [ ] 📦 Chore (Release)
- [ ] ⏩ Revert

## Description
<!-- 
Please do not leave this blank 
This PR [adds/removes/fixes/replaces] the [feature/bug/etc]. 
-->
This PR updates the documentation regarding identifier creation.

## Added to documentation?
- [ ] 📜 README.md
- [x] 📓 [vc-kit doc site](https://uncefact.github.io/vckit/)
- [ ] 📕 storybook
- [ ] 🙅 no documentation needed

<!-- note: PRs with deleted sections will be marked invalid -->
  • Loading branch information
ashleythedeveloper authored Aug 6, 2024
1 parent 3c359dc commit 58e2ac2
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ To create an identifier, we use this [`/didManagerCreate`](http://localhost:3332
"provider": "did:web", //you can use other providers, in this case we use did:web
"kms": "local",
"options": {
"type": "ed25519"
"keyType": "Ed25519"
}
}
```
Expand All @@ -58,7 +58,7 @@ The `alias` is the domain name that you will store a [DID document](/docs/get-st
"provider": "did:web",
"kms": "local",
"options": {
"type": "ed25519"
"keyType": "Ed25519"
}
}
```
Expand Down

0 comments on commit 58e2ac2

Please sign in to comment.