Skip to content

decentralized-identity/uni-registrar-driver-did-sov

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

88 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

DIF Logo

Universal Registrar Driver: sov

This is a Universal Registrar driver for did:sov identifiers.

Specifications

Build and Run (Docker)

docker build -f ./docker/Dockerfile . -t universalregistrar/driver-did-sov
docker run -p 9080:9080 universalregistrar/driver-did-sov

Driver Environment Variables

The driver recognizes the following environment variables:

  • uniregistrar_driver_did_sov_libIndyPath: The path to the Indy SDK library.
  • uniregistrar_driver_did_sov_poolConfigs: A semi-colon-separated list of Indy network names and pool configuration files. The default network is _.
  • uniregistrar_driver_did_sov_poolVersions: A semi-colon-separated list of Indy network names and pool protocol versions. The default network is _.
  • uniregistrar_driver_did_sov_walletName: The name of the Indy wallet.
  • uniregistrar_driver_did_sov_trustAnchorSeed: The seed of the trust anchor which will submit the DID registration transactions.

Driver Input Options

{
    "network": "builder"
}
  • network: The name of the network where a DID should be registered. Values depend on poolConfigs environment variable, but are typically: _ (mainnet), staging, builder, danube

Driver Output Metadata

{
    "network": "danube",
    "poolVersion": 2,
    "submitterDid": "V4SGRU86Z58d6TV7PBUe6f"
}
  • network: The name of the network where the DID was registered. Values depend on poolConfigs environment variable, but are typically: _ (mainnet), staging, builder, danube
  • poolVersion: The version of the network where the DID was registered.
  • submitterDid: The DID of the transaction author which submitted the DID registration.