RelAI Now Supports Solana Agent Registry

web3luka
Mar 5, 2026 · 3 min read
RelAI Now Supports Solana Agent Registry

RelAI now supports the Solana Agent Registry — the official ERC-8004 compatible on-chain identity and reputation infrastructure for AI agents on Solana, backed by the Solana Foundation.

Every API published on RelAI can now be registered as an agent on both chains:

  • SKALE Base — via ERC-8004 smart contracts (existing)
  • Solana — via Solana Agent Registry (new)

What Is Solana Agent Registry?

Solana Agent Registry is an open, on-chain protocol that gives AI agents verifiable identity, portable reputation, and trust infrastructure on Solana. It is fully interoperable with ERC-8004 on Ethereum — agents can build trust across chains.

It consists of three on-chain registries:

  • Identity Registry — mints a non-transferable agent NFT linked to metadata (name, endpoint, capabilities, x402 support)
  • Reputation Registry — records structured feedback over time: success rate, response time, quality scores
  • Validation Registry — allows independent third parties to attest and verify agent behavior

Why This Matters

ERC-8004 started as an Ethereum standard. It is now becoming a multichain agent identity layer:

  • Solana Foundation officially adopted it as the basis for Solana Agent Registry
  • 8004scan launched Solana support on March 4, 2026 — agents from all networks are now tracked in one explorer
  • 8004 Market lets users discover and interact with registered agents across chains
Any agent registered through RelAI — on SKALE or Solana — is discoverable in this growing ecosystem.

How It Works on RelAI

When you publish an API on RelAI and register it on Solana Agent Registry:

  1. An agent NFT is minted on Solana via the 8004-solana SDK
  2. After every paid relay call, RelAI automatically submits on-chain feedback:
- successRate — 100% on success, 0% on failure - responseTime — rolling average in milliseconds
  1. Stats are visible in your API dashboard and publicly queryable on 8004scan
Registration is done from your API settings page in the RelAI dashboard — one click, no configuration needed.

Querying Agent Data

Agent reputation on Solana is publicly readable — no authentication required:

// GET https://api.relai.fi/solana8004/agent-by-api/{apiId}

{
"asset": "8oo4dC4JvBLwy5tGgiH3WwK4B9PWxL9Z4XjA2jzkQMbQ",
"name": "My API",
"feedbackCount": "42",
"reputation": {
"averageScore": "95",
"totalFeedbacks": "42"
}
}

Or query directly from the Solana Agent Registry using the 8004-solana SDK:

import { SolanaSDK } from '8004-solana'

const sdk = new SolanaSDK({ cluster: 'mainnet-beta' })
const summary = await sdk.getSummary(assetPubkey)

console.log(summary.averageScore) // reputation score
console.log(summary.totalFeedbacks) // total feedback count

Multichain Agent Identity

RelAI contributes to a unified agent identity layer across EVM and Solana. A single API on RelAI can hold:

ChainStandardExplorer
SKALE BaseERC-8004 (EVM)SKALE Explorer
SolanaSolana Agent Registry8004scan
Both registries track the same core metrics — success rate and response time — making reputation portable and independently verifiable from any chain.
Want to register your API on Solana Agent Registry? Publish it on relai.fi and hit "Register on Solana" in your API settings. For ERC-8004 on SKALE, see our ERC-8004 guide.

Understand x402 before you implement

This guide uses payment primitives from the x402 standard. Read the protocol overview for a complete flow, terminology, and integration FAQ.