This repository includes Python libraries for working with did:tdw
(Trust DID Web) DID documents and the underlying log format. Methods are provided for provisioning and updating DID documents as well as a resolving existing did:tdw
DIDs. Currently, version 0.4 of the specification is implemented.
This library requires Python 3.10 or later. Dependencies are listed in pyproject.toml and can be installed via:
poetry install
A new did:tdw
DID can be minted using the provision command. This will create a new Askar keystore for handling the signing key.
python3 -m did_tdw.provision --auto "domain.example"
This will output a new directory named after the new DID, containing did.jsonl
(the DID log) and did.json
(the current state of the document).
To automatically update the DID, edit did.json
and execute the update command (use the identifier output from the provision command):
python3 -m did_tdw.update --auto "did:tdw:QmRwq46VkGuCEx4dyYxxexmig7Fwbqbm9AB73iKUAHjMZH:domain.example"
The resolver script may be invoked via the command line, and supports dereferencing of fragments and paths:
python3 -m did_tdw.resolver "did:tdw:QmRwq46VkGuCEx4dyYxxexmig7Fwbqbm9AB73iKUAHjMZH:domain.example"
python3 -m did_tdw.resolver "did:tdw:QmRwq46VkGuCEx4dyYxxexmig7Fwbqbm9AB73iKUAHjMZH:domain.example#key-1"
python3 -m did_tdw.resolver "did:tdw:QmRwq46VkGuCEx4dyYxxexmig7Fwbqbm9AB73iKUAHjMZH:domain.example/whois.vc"
For testing, this script also accepts the path to the local DID history file:
python3 -m did_tdw.resolver -f did.jsonl "did:tdw:QmRwq46VkGuCEx4dyYxxexmig7Fwbqbm9AB73iKUAHjMZH:domain.example"
For demo purposes, a new DID can be minted along with a series of test updates applied using the included demo script:
python3 demo.py domain.example
Pull requests are welcome! Please read our contributions guide and submit your PRs. We enforce developer certificate of origin (DCO) commit signing — guidance on this is available. We also welcome issues submitted about problems you encounter in using Trust DID Web - Python.