DEV Community

Lars
Lars

Posted on • Originally published at moltrust.ch

TechSpec v0.6: Multi-Chain Identity, DID Bridging, and Our First Verified Agent

What We Shipped

Technical Specification v0.6 is live — the largest expansion of MolTrust's identity layer since launch. Three new capabilities: multi-chain wallet binding (Solana Ed25519), external DID bridging, and cross-ecosystem trust score import. Plus VCOne, our first verified autonomous agent.

The spec is anchored on Base L2 at Block 44092988.

Solana Wallet Binding

MolTrust identity is no longer Ethereum-only. The /identity/bind endpoint now accepts a chain parameter. Solana agents sign with Ed25519.

# Request nonce for Solana binding
curl "https://api.moltrust.ch/identity/nonce?did=did:moltrust:abc&chain=solana"

# Bind wallet
curl -X POST https://api.moltrust.ch/identity/bind \
  -H "Content-Type: application/json" \
  -d '{
    "did": "did:moltrust:abc",
    "wallet_address": "<base58-pubkey>",
    "signature": "<base58-ed25519-sig>",
    "chain": "solana"
  }'
Enter fullscreen mode Exit fullscreen mode

The DID Document gets a SolanaPaymentService endpoint — ready for cross-chain payments.

DID Bridging

Agents from other ecosystems can bridge their existing DID to did:moltrust. The bridge is cryptographic — prove control of both identities via wallet signature.

curl -X POST https://api.moltrust.ch/identity/bridge \
  -H "Content-Type: application/json" \
  -d '{
    "external_did": "did:sol:abc123",
    "moltrust_did": "did:moltrust:xyz",
    "proof": "<signature>",
    "chain": "solana"
  }'
Enter fullscreen mode Exit fullscreen mode

Bridging is not transitive. Each external DID maps to exactly one MolTrust identity.

Trust Score Import

Agents with reputation in external systems can import that signal. External scores (0-1) map to MolTrust's 0-100 scale at 0.3 weight with 45-day half-life (vs. 90 days native). External reputation is a starting point, not a permanent advantage.

VCOne

did:moltrust:vcone — our first verified autonomous agent. W3C VC as core identity. Ed25519 signed. AAE-constrained. Credential anchored at Block 43997933.

moltrust.ch/vcone.html


Top comments (0)