M2M TRC-8004 Agent Registry
RegistryOur AgentsValidatorsDocsSpecSDKGitHub
TRON Agent Registry

A public registry for agent identities and validation outcomes on TRON. Hybrid architecture: contracts as truth, indexer + database for fast discovery.

Product

Browse agentsRegisterValidators

Developers

DocsSDKContractsGitHub

Community

Twitter
© 2026 TRON Agent Registry · TRC-8004
Open Source

Register agents. Publish evidence. Record validation on TRON.

TRON Agent Registry is a public index for agent identities, metadata, and validation outcomes.

Register an agentBecome a validator
What's live

Registry foundation

  • —13 registered agents
  • —0 validation requests
  • —10 feedback entries
How it works

Hybrid system

  • —Contracts = source of truth
  • —Indexer watches events
  • —API + DB power fast search
Launch note

Early-stage honesty

  • —Agents will appear as they register
  • —Validation is permissionless
  • —Initial validator is active

Contract addresses

Deployment addresses for our TRC-8004 registries.

Contract docsView repo
Addresses
Identity Registry
TFLvivMdKsk6v2GrwyD2apEr9dU1w7p7Fy
Validation Registry
TLCWcW8Qmo7QMNoAKfBhGYfGpHkw1krUEm
Reputation Registry
TFbvfLDa4eFqNR5vy24nTrhgZ74HmQ6yat
M2M TRC20 Token
TSH8XLQRMrCTTdCr3rUH2zUiuDZQjfmHaX

Getting started

Two paths: publish an agent, or validate evidence. Both are permissionless and recorded on TRON.

RegisterValidators
For agent developers
Publish + request validation
✓Install the SDK (or call contracts directly).
✓Register an identity and set a metadata URI.
✓Include skills + endpoints in your metadata JSON.
✓Request validation with an evidence URI.
✓Track validation outcomes on your agent page.
For validators
Review + validate evidence

Recent agents

The latest agents registered on the TRON network.

View all agents
Minara AI
Minara AI
Feedback
+1 / -1
Validations
0
Owner
TXxoKo...hGNWSN
Registered
Mar 27, 2026

Validation mechanics

Validation is explicit. Validators review evidence. The registry records the request + response on-chain, while the website provides searchable views.

ContractsDocs
1

Register agent identity

Mint an agent identity (TRC-8004) and set a metadata URI. The URI points to a rich JSON describing skills, endpoints, tags, and version.

2

Request validation

Submit an evidence URI (e.g., IPFS) that contains the run output, inputs, logs, and reproduction notes. A request hash is recorded on-chain.

3

Validator responds

Any TRON address can validate. The validator reviews the evidence and submits a result with a status (completed or rejected).

4

Reputation emerges

Developer integration

The contracts are the source of truth. The SDK and API exist to make reads fast and writes predictable across environments.

SDK referenceAPI
SDK (example interface)TRON · mainnet/shasta
# Read: fast search via API cache agents = await registry.search_agents(query="trading", skills=["market_analysis"]) # Write: register identity + metadata URI on-chain agent_id = await registry.register_agent( name="TradingBot Pro", description="Market analysis + execution", skills=[{"id":"market_analysis","name":"Market Analysis"}], endpoints=[{"type":"rest_api","url":"https://api.example.com/v1"}], tags=["defi","trading"], version="1.0.0" ) # Validation: request + response are recorded on-chain tx = await registry.request_validation(agent_id=agent_id, evidence_uri="ipfs://bafy...")
✓Use any TRON address (no allowlist).
✓Monitor validation requests (events or API feed).
✓Review evidence (inputs, outputs, logs, reproducibility).
✓Submit validation results on-chain.
✓Build public credibility through consistency.
Minara AI
Minara AI
Feedback
+0 / -0
Validations
0
Owner
TXxoKo...hGNWSN
Registered
Mar 27, 2026
https://example.com/agent-card.json
Feedback
+0 / -0
Validations
0
Owner
TA4HSs...A2zCJK
Registered
Mar 23, 2026

The site aggregates and visualizes outcomes. Contracts store the immutable trail; the API/DB power fast search and analytics.

What we do not do

  • →No hidden scoring algorithms
  • →No automatic "verified" without evidence
  • →No requirement for special validator permissions
  • →No assumption of trust in the website — verify via chain

What the backend adds

  • →Indexer watches contract events
  • →Database cache for search + filters
  • →API endpoints for profiles, leaderboards, analytics
  • →Websocket updates (optional) for real-time feeds