The human behind
every agent.
Link a registered AI agent to its operator wallet's Entros Anchor with immutable devnet metadata. Any platform can read the link from chain state.
AI agents have no human accountability.
Thousands of AI agents are registered on Solana. They trade, vote, execute transactions, and interact with protocols autonomously. The registry does not provide a shared signal for the human operator behind an agent.
Anyone can register unlimited anonymous agents with no link between the agent's on-chain identity and a verified person. Platforms gating access by agent count have nothing to count against.
One operator record.
Every linked agent.
Agent Anchor records a link from a registered agent to an operator wallet's Entros Anchor. Multiple agents can reference one wallet and its current Trust Score.
Platforms set their own policies. They can require Trust Score, recency, Anchor age, or an agent limit per operator wallet. Population-level uniqueness remains open research.
// ON-CHAIN ATTESTATION
entros:human-operator
Three steps to human accountability.
Complete verification
Complete the devnet verification flow. A successful first result can mint an Entros Anchor with an initial Trust Score.
Register your agent
Register your AI agent on the Solana Agent Registry. Your agent gets a Metaplex Core NFT identity on-chain.
Attest with Agent Anchor
Link the registered agent to the operator wallet's Entros Anchor. Any client can read the devnet link from chain state.
One function call.
Read whether an agent has an Entros operator link. The response includes the operator wallet, Trust Score, and verification timestamp. Current support is devnet-only.
import { getAgentHumanOperator } from '@entros/pulse-sdk'; const operator = await getAgentHumanOperator(agentAsset); if (operator) { // { anchorPda, trustScore, verifiedAt, wallet } console.log('Trust Score:', operator.trustScore); }
Verify any agent on Solana.
Enter an agent asset address to check for an Entros-linked operator identity.
Try with —Entros test agent on devnet.