Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/decentralized-identity/uni-registrar-driver-did-v1
A Universal Registrar driver for did:v1 identifiers.
https://github.com/decentralized-identity/uni-registrar-driver-did-v1
decentralized-identifiers universal-registrar wg-id
Last synced: about 2 months ago
JSON representation
A Universal Registrar driver for did:v1 identifiers.
- Host: GitHub
- URL: https://github.com/decentralized-identity/uni-registrar-driver-did-v1
- Owner: decentralized-identity
- License: apache-2.0
- Created: 2020-01-06T14:37:47.000Z (almost 5 years ago)
- Default Branch: main
- Last Pushed: 2024-04-23T16:34:27.000Z (8 months ago)
- Last Synced: 2024-04-24T18:03:12.596Z (8 months ago)
- Topics: decentralized-identifiers, universal-registrar, wg-id
- Language: Java
- Size: 10.3 MB
- Stars: 0
- Watchers: 14
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
![DIF Logo](https://raw.githubusercontent.com/decentralized-identity/universal-registrar/master/docs/logo-dif.png)
# Universal Registrar Driver: v1
This is a [Universal Registrar](https://github.com/decentralized-identity/universal-registrar/) driver for **did:v1** identifiers.
## Specifications
* [Decentralized Identifiers](https://w3c.github.io/did-core/)
* [DID Method Specification](https://w3c-ccg.github.io/did-method-v1/)## Build and Run (Docker)
```
docker build -f ./docker/Dockerfile . -t universalregistrar/driver-did-v1
docker run -p 9080:9080 universalregistrar/driver-did-v1
```## Driver Environment Variables
The driver recognizes the following environment variables:
* `(none)`
## Driver Input Options
```
{
"hostname": "",
"ledger": "test",
"keyType": "ed25519"
}
```* `hostname`: Hostname of a ledger node.
* `ledger`: Name of the ledger. Options: `live`, `test`, `dev`.
* `keyType`: Type of keys to generate and use. Options: `ed25519`, `rsa`.## Driver Output Metadata
```
{
"didDocumentLocation": "/root/.dids/veres-test/registered/did%3Av1%3Atest%3Anym%3Az6MkjFYx9ss7FrEVmkJLmUgebJWAQTgHQeT2bPUZKqHin4sc.json"
}
```* `didDocumentLocation`: The local file system location of the DID document.