WYRR Trust Registry
Become a verified credential issuer on the WYRR network. Issue portable, cryptographically verifiable credentials that your users carry in their DID wallet.
Employment records, professional licenses, compliance certificates, membership cards — all instantly verifiable, tamper-proof, and privacy-preserving.
Cryptographic Proof
Every credential is signed with your organization's DID and verifiable on-chain.
Portable & Universal
Credentials travel with users across platforms. No vendor lock-in.
Zero-Knowledge Proofs
Users prove attributes without revealing underlying data.
Instant Verification
Verifiers check credentials in milliseconds. No phone calls or manual checks.
Credential Types
Issue any type of verifiable credential your organization needs
Employment Verification
Issue verifiable proof of employment, role, and tenure. Employees carry portable credentials across platforms.
Professional Licenses
Digitize and issue professional certifications, licenses, and qualifications with cryptographic proof.
Membership Cards
Issue digital membership credentials with tiered access, expiration management, and instant verification.
Compliance Certificates
Attest regulatory compliance, safety certifications, and audit results with tamper-proof credentials.
Educational Credentials
Issue diplomas, course completions, and skill badges that learners can share and employers can verify instantly.
Supply Chain Attestations
Certify origin, quality, handling, and chain of custody at every stage from source to consumer.
How It Works
Four steps to become a verified credential issuer
01
Get Invited
Our admin team reviews your organization and sends a secure invite link to your email.
02
Create Account
Click your invite link, set up your credentials, and access your organization dashboard immediately.
03
Configure Credentials
Design your credential schemas, set issuance rules, expiration policies, and revocation procedures using our dashboard.
04
Issue to Users
Start issuing verifiable credentials to your users, employees, or members. They store them in their WYRR DID wallet.
Trust Levels & Reputation
Every participant on WYRR builds a multi-dimensional trust profile
🛡️ Trust Levels
New User
Default for new accounts. Basic access with identity verification pending.
Verified
KYC/KYB completed. Full platform access with standard rate limits.
Trusted
Established track record. Higher limits, priority support, credential issuer eligible.
Super Trader
Top-tier trust. Maximum limits, governance rights, white-label access.
⭐ Reputation Tiers
Bronze
Score range
Silver
Score range
Gold
Score range
Platinum
Score range
Reputation is scored across 4 categories: Reliability, Community, Trading, and Identity. Scores are computed from on-chain activity, peer ratings, and verified credential history.
Issuer Directory
Organizations actively issuing verifiable credentials on the WYRR network
Issuer Tiers
Choose the tier that fits your organization. All tiers include on-chain anchoring and verifiable credentials.
No cost to get started
For verified organizations
Billed annually ($6,000/year)
Blockchain-backed: All credentials issued through any tier are anchored to Hyperledger Besu with on-chain revocation registries. Your organization's DID and trust profile are recorded on-chain for verifiers worldwide.
Apply to Issue Credentials
Tell us about your organization. If approved, we'll send you a secure invite link to access your credential dashboard.
API Integration
// 1. Admin creates invite for an organization
POST /api/v1/trust/verifiers/invites (admin only)
{
"organizationName": "Acme Corp",
"contactEmail": "admin@acme.com",
"designation": "accredited_issuer",
"credentialTypes": ["employment", "compliance"],
"expiresInDays": 7
}
// 2. Organization redeems invite via secure link
POST /api/v1/trust/verifiers/invites/{token}/redeem
{
"email": "admin@acme.com",
"password": "secure-password",
"displayName": "Acme Corp Admin"
}
// 3. Issue credentials via API
POST /api/v1/credentials/issuing/issue
{
"recipientDID": "did:wyrr:user:abc123",
"credentialType": "employment",
"claims": { "role": "Engineer", "company": "Acme Corp" }
}