https://github.com/block-core/blockcore-did-manager
Focused app that helps you manage DID identities
https://github.com/block-core/blockcore-did-manager
did identity web5
Last synced: 2 days ago
JSON representation
Focused app that helps you manage DID identities
- Host: GitHub
- URL: https://github.com/block-core/blockcore-did-manager
- Owner: block-core
- License: mit
- Created: 2023-12-06T09:35:03.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-03-11T22:42:46.000Z (over 2 years ago)
- Last Synced: 2025-10-07T18:35:23.029Z (8 months ago)
- Topics: did, identity, web5
- Language: TypeScript
- Homepage:
- Size: 1.5 MB
- Stars: 2
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
README.md
# Blockcore DID Manager
Focused app that helps you manage DID identities and issue verifiable credentials (VC).

You can download the app from the [Releases](Releases) page.
## Run app as developer
```
npm install
npm run tauri dev
```
## Supported DIDs
- did:dht
## Recommended IDE Setup
[VS Code](https://code.visualstudio.com/) + [Tauri](https://marketplace.visualstudio.com/items?itemName=tauri-apps.tauri-vscode) + [rust-analyzer](https://marketplace.visualstudio.com/items?itemName=rust-lang.rust-analyzer) + [Angular Language Service](https://marketplace.visualstudio.com/items?itemName=Angular.ng-template).
## Errors
If you get this error:
``
error[E0554]: `#![feature]` may not be used on the stable release channel
--> C:\Users\user\.cargo\registry\src\index.crates.io-6f17d22bba15001f\thiserror-1.0.50\src\lib.rs:238:50
|
238 | #![cfg_attr(error_generic_member_access, feature(error_generic_member_access))]
| ^^^^^^^^^^^^^^^^^^^^^^^^^^^
For more information about this error, try `rustc --explain E0554`.
error: could not compile `thiserror` (lib) due to previous error
``
You can attempt to update Rust:
`rustup default nightly`