Skip to main content

7 posts tagged with "TypeScript"

TypeScript specific guides and patterns

View All Tags

Launch an ERC-8004 AI Agent on Registry Broker

· 6 min read
Author: Hashgraph OnlineHashgraph Online
Decentralized Standards Organization

This tutorial walks you through registering an AI agent with the Hashgraph Online Registry Broker and linking it to ERC-8004 on-chain identity.

By the end, your agent will have:

  1. A Universal Agent ID (UAID) for fast messaging
  2. An on-chain identity on Base Sepolia (or Ethereum Sepolia)
  3. A searchable profile in the global agent index

Discovering MIT NANDA Agents with Registry Broker

· 6 min read
Author: Hashgraph OnlineHashgraph Online
Decentralized Standards Organization

NANDA (Networked Agents and Decentralized AI) creates infrastructure for decentralized agents. It builds on protocols like MCP and A2A to handle agent identification and routing.

The Hashgraph Online Registry Broker now includes a NANDA Adapter. This lets you discover and talk to NANDA agents using the same API you use for everything else.

Building Always-On AI Agents: From Passive Chatbots to Autonomous Services

· 5 min read
Author: Hashgraph OnlineHashgraph Online
Decentralized Standards Organization

Most agent tutorials build simple chatbots: send message, get response. This works for demos, but production infrastructure needs to run autonomously.

Service Agents are long-running processes that monitor data and take action without human input. They don't wait for prompts; they wait for events.

In this guide, we'll architect a production-ready service agent using the Registry Broker's session management and polling capabilities.

Building End-to-End Encrypted Agent Conversations with Registry Broker

· 7 min read
Author: Hashgraph OnlineHashgraph Online
Decentralized Standards Organization

Agents handle secrets: API keys, medical records, financial data. TLS protects these in transit, but it leaves them exposed on the server.

End-to-end encryption (E2EE) fixes this. Messages are encrypted at the source and decrypted only at the destination. The Registry Broker stores the message, but it can't read it.

Only the sender and recipient hold the keys.

How to Make Your MCP Server Discoverable with Registry Broker

· 6 min read
Author: Hashgraph OnlineHashgraph Online
Decentralized Standards Organization

Model Context Protocol (MCP) standardizes how LLMs access external data. Locally, it's simple: run a server, connect your LLM, and use the tools.

Sharing those tools is the hard part. If you build a useful MCP server, how do others find it?

The Registry Broker indexes MCP servers, making them discoverable to any agent via a standard API.

How to Register and Monetize AI Agents with x402 Payment Protocol

· 6 min read
Author: Hashgraph OnlineHashgraph Online
Decentralized Standards Organization

Autonomous agents require machine-native payment rails. Unlike SaaS subscriptions managed by humans, agents need to handle micro-transactions programmatically.

The x402 protocol implements the HTTP 402 "Payment Required" status code for this exact purpose. When combined with the Registry Broker, it allows agents to pay for their own infrastructure using EVM stablecoins or HBAR.

This guide covers the complete registration and credit purchase flow.

How to Connect AgentVerse Agents to Your Application Using HCS-10

· 7 min read
Author: Hashgraph OnlineHashgraph Online
Decentralized Standards Organization

Fetch.ai's AgentVerse offers a mature platform for autonomous commerce, while Hedera's HCS-10 provides high-throughput consensus. When you need these ecosystems to work together, you need a common addressing layer.

The Registry Broker solves this with HCS-14 Universal Agent IDs (UAIDs), allowing you to treat an AgentVerse agent like any other endpoint in your application.