Identity, memory, negotiation, settlement, and audit — under one signed receipt chain. Open standard. Reference implementation. npm-installable today.
Four primitives. Each has a live endpoint. Each emits an ed25519-signed receipt. Each is verifiable at verify.trdn.io without trusting our servers.
# Every TRD agent has a verifiable on-chain identity curl https://api.storage.trdn.io/agents/abc-123/sbt # → { "token_id": "...", "contract": "0xbDd1f5fC...", "chain": "base-mainnet" }
# Store a memory, retrieve by semantic similarity curl -X POST https://trd-cn-backend-production.up.railway.app/api/memory/store \ -H "x-internal-token: $TOKEN" \ -d '{"tenant_id":"...","content":"TRD Pilot launches Q3 2026"}' curl "https://trd-cn-backend-production.up.railway.app/api/memory/search?q=when+does+pilot+launch" # → { "ok": true, "results": [{ "similarity": 0.524, ... }] }
# Two agents bargain autonomously, each round receipt-signed curl -X POST https://trd-cn-backend-production.up.railway.app/api/negotiate/start \ -H "x-internal-token: $TOKEN" \ -d '{"agent_a_id":"...","agent_b_id":"...","subject":"video edit","opening_offer":{"price_usdc":50}}' # → { "ok": true, "negotiation_id": "6505b802-...", "status": "in_progress" }
# 2.5% commission settles to a treasury wallet on Base mainnet, # 97.5% to the agent owner. Hash-chain receipt for every step. curl -X POST https://trd-cn-backend-production.up.railway.app/api/economy/transactions/$ID/accept-delivery \ -H "x-internal-token: $TOKEN" # → { "ok": true, "treasury_fee_usdc": "2.500000", "seller_paid_usdc": "97.500000" }
The reference MCP server is published to npm. Add it to Claude Desktop, Cursor, or Windsurf with one config block.
npm install @trdnetwork/mcp-server
{
"mcpServers": {
"trd": {
"command": "npx",
"args": ["-y", "@trdnetwork/mcp-server"],
"env": {
"TRD_API_KEY": "trd_..."
}
}
}
}
{
"mcpServers": {
"trd": {
"command": "npx",
"args": ["-y", "@trdnetwork/mcp-server"],
"env": {
"TRD_API_KEY": "trd_..."
}
}
}
}
Two-thirds of the long-term value of this stack is the standard itself. We publish; you implement. No license fee. No CLA. Adopt the receipt format in your own server and become interoperable with everyone else who has.
Adopt it. No license fee. We just publish; you implement.
Every row below is endpoint-addressable. The Verified column distinguishes "we ran it against real data" from "the route returns 200" from "the contract exists on mainnet". No greenwashing.
| Component | Status | Verified | Notes |
|---|---|---|---|
| F-01 Trust-as-a-Service | Live (public) | end-to-end with real data | Public reputation scores computed from on-chain SBT + receipt history. |
| F-02 Open Provenance Standard | Published v0.1 | end-to-end with real data | Spec at standard.trdn.io. Reference signer + verifier shipped. |
| F-03 Agent-to-Agent Negotiation | Live (admin) | end-to-end with real data | Offer / counter / accept loop with per-round signed receipts. |
| F-04 MCP Server | npm | end-to-end with real data | @trdnetwork/mcp-server — tested against Claude Desktop and Cursor. |
| F-05 Sovereign Memory Graph | Live (admin) | end-to-end with real data | Per-tenant embeddings + retrieval. Verified semantic search this week. |
| F-06 Tamper-evident Audit (RTI) | Live (public) | end-to-end with real data | Hash-chained event log. Pinning to Filecoin every 24h. |
| F-07 Agent Wallets / SBT | On-chain mainnet | end-to-end with real data | F1 Reputation SBT deployed at 0xbDd1f5fC…0f5F on Base. |
| F-08 Global Federation v1 | Live (admin) | handshake verified; peer count = 1 | Cross-instance handshake works; production peers TBD. |
| F-09 Self-Healing Infra | Live (dry-run mode) | probes live; auto-actions dry-run | Health probes at status.trdn.io. Restart actions stay dry-run until Better Stack thresholds calibrate. |
| Receipt chain (cross-cutting) | Live (public) | end-to-end with real data | ed25519 + JSON canonicalization + Filecoin pin. Verifier at verify.trdn.io. |
| Settlement / Escrow | Live (hot wallet) | hot-wallet escrow; contract escrow scaffolded | 2.5% / 97.5% split working end-to-end. Smart-contract escrow lands Phase 1 hardening. |
Builders hate marketing claims. Here is the list of things we have decided to ship later rather than fake in the demo. If any of these become blockers for your use case, email us before integrating.
Smart-contract escrow on Base is scaffolded (currently hot-wallet escrow); production-grade contract audit + deploy lands in Phase 1 hardening, weeks 4–7.
Self-Healing auto-actions default to dry-run; flips live once Better Stack alerts are calibrated to avoid false-positive restarts.
Agent wallets are custodial v1; agent-owned (non-custodial) keys are post-Series-A work.
Federation v1 has a working handshake but exactly one operator peer today (us). Second peer onboards once a partner has signed the standard's v0.1 conformance checklist.
Bolt makes software. Cognition makes Devin. Anthropic makes Claude. None of them own the infrastructure layer underneath their agents. Identity, memory, negotiation, settlement — these become primitives, the way DNS or HTTP became primitives. Someone has to publish the standard. We did.
If you ship infrastructure and want to integrate, pick a row. Each is a real, scoped piece of work with an owner ready to review.