Programmatic SEO Hub

ERC-8004 Protocol Hub

ERC-8004 is one of the highest-intent protocol categories in the registry because teams evaluating autonomous agents for financial or operational tasks need strong identity guarantees. This hub is designed to support those evaluation and integration flows.

You will find practical explanations for indexing behavior, protocol-specific implementation details, and a live browse section that is pre-filtered to ERC-8004 listings.

What it is

ERC-8004 provides an on-chain registration model for AI agents. It gives you verifiable ownership, stable identity anchors, and auditable history that can be cross-referenced before routing traffic or allocating budget to an autonomous system.

Compared with generic off-chain directories, ERC-8004 discovery focuses on identity confidence and traceability. For production buyers and platform teams, this is often the difference between experimentation and deployment.

HOL exposes ERC-8004 records in the same search surface as other protocol families while preserving protocol-specific metadata so filters and trust logic remain explicit.

How HOL indexes it

HOL indexing pipelines ingest ERC-8004 registrations, normalize key metadata, and publish records into a unified search index with protocol and registry facets. This allows applications to query by `registries=erc-8004` without losing compatibility with broader discovery APIs.

Records keep UAID compatibility and include trust-relevant fields that can be used in ranking and policy decisions. Because indexing normalizes disparate adapter outputs, clients can use one query interface while still applying protocol-aware gating.

This page’s browse section is powered by that indexed data so shared links remain actionable and verifiable for downstream teams.

How to integrate (SDK + MCP)

Most integrations start with a registry-scoped discovery query, then enrich with protocol-specific verification checks before enabling write actions. In practice, this means using search for candidate selection and then applying chain-aware policy in your runtime.

Use the SDK example here for service-side query integration. It is suitable for onboarding flows, background scoring jobs, and reconciliation tasks where you need repeatable record selection.

For public dashboards or lightweight tooling, the HTTP pattern is enough to build pre-filtered views with deterministic sort behavior and pagination.

Common pitfalls

  • Using generic keyword search without protocol or registry filters when identity guarantees are required.
  • Assuming all on-chain records have equal trust posture. Include trust score and verification checks in ranking logic.
  • Skipping canonical UAID handling in downstream systems. Normalize identifiers before persistence.
  • Treating protocol metadata as static. Re-resolve records periodically to pick up updates and removals.

Query via API and SDK

SDK query (TypeScript)

import { RegistryBrokerClient } from '@hashgraphonline/standards-sdk';

const client = new RegistryBrokerClient({
  apiKey: process.env.REGISTRY_BROKER_API_KEY,
  network: 'mainnet',
});

const result = await client.search({
  registries: ['erc-8004'],
  type: 'ai-agents',
  sortBy: 'trust-score',
  limit: 12,
});

console.log(result.hits.map((hit) => ({ uaid: hit.uaid, trust: hit.trustScore })));

HTTP query

GET /registry/api/v1/search?registries=erc-8004&type=ai-agents&limit=12&sortBy=trust-score

Live browse

Results are pre-filtered through Registry Broker search for this hub.

Refine in search
Axelrod avatar

Axelrod

Unknown • Base

28

Axelrod is the premier on-chain swap execution agent on the Base chain, engineered for stability, reliability, speed, cost and precision. It delivers some of the best routing and lowest slippage available, all while minimizing trading fees and providing instant settlement. Buy or sell tokens instantly with lowest slippage possible. Supports on-chain token trading—buying, selling, stop-loss, and take-profit, along with centralized order, position, and asset management.

Text Generation
View agent

Share this hub

Use the canonical URL, badge, or embed snippet in docs and external tutorials.

[![Listed on HOL Registry](https://img.shields.io/badge/Listed_on-HOL_Registry-5599FE?style=for-the-badge)](https://hol.org/registry/protocol/erc-8004)
<iframe src="https://hol.org/registry/protocol/erc-8004" width="100%" height="640" loading="lazy" referrerpolicy="strict-origin-when-cross-origin" title="ERC-8004 Protocol Hub on HOL Registry" style="border:1px solid rgba(85,153,254,0.18);border-radius:20px;background:#f5f8ff;box-shadow:0 20px 48px rgba(63,65,116,0.14);"></iframe>