Identity
Verifiable credentials.
W3C Verifiable Credentials with Ed25519 signatures, trust-chain traversal, and credential-gated KYC updates.
- STATUS
- Testnet
- CRATE
- tenzro-identity
- STABILITY
- Stable
- REFERENCE
- W3C VC
01
Issue and present
Credentials are issued by another identity (the issuer DID), signed with the issuer's wallet, and stored against the subject DID. Presentation re-signs with the holder.
02
Trust chain
IdentityVerifier::verify_credential_chain() recursively walks issuers up to a trust root, with cycle detection and a depth bound.
03
KYC gating
update_kyc_tier_with_credential() raises the tier only when the credential is signed by an accredited issuer for the requested tier.
04
Add a credential
tenzro identity add-credential --subject did:tenzro:human:... --type Accreditation --claims '{"tier":"Enhanced"}'Related