kanmanimonad mainnet · 143
← all clusters

4 agents across 3 wallets

answeredThe document was fetched and read.

the document

record hash
9624d04257c92628_90
scheme
http
what it answered
790 bytes read from http
asked at
2026-09-20 11:21:54Z
size
790 bytes
name it gives itself
Sera
first registered
block 55,558,721

check it yourself

curl -sS -o /dev/null -w '%{http_code}\n' 'https://raw.githubusercontent.com/SakshiShah29/The-Agora/main/contracts/metadata/sera.json'

who registered against it

1 of these registrations came from a wallet that registered more than one agent against this same document.

Counted at registration time, not from who holds the token now. An agent is an ERC-721 and ownership moves, so a live aggregate would answer "who holds these today" when the claim being made is about who registered them.

0xfb2d…89Fa2 agents · first at block 55,619,378
0x1BE4…f2001 agent · first at block 55,558,721
0x159d…0f311 agent · first at block 55,562,585
re-derive this

$2 = 9624d04257c92628_90

SELECT owner, "agentCount", "firstSeenBlock"
FROM "AgentRecordOwner"
WHERE "chainId" = $1 AND record_id = $2
ORDER BY "agentCount" DESC, "firstSeenBlock" ASC
LIMIT $3

the agents

4 agents point at this one document.

Brighter means the agent carries at least one feedback. Faint means nothing has ever been said about it.

re-derive this

$2 = 9624d04257c92628_90

SELECT a.id, a."agentId", a.owner, a."agentWallet", a."registeredAtBlock",
       coalesce(fb.total, 0) AS feedback_count
FROM "Agent" a
LEFT JOIN (SELECT agent_id, count(*) AS total FROM "Feedback" WHERE "chainId" = $1 GROUP BY agent_id) fb
  ON fb.agent_id = a.id
WHERE a."chainId" = $1 AND a."uriHash" = $2
ORDER BY a."agentId" ASC
LIMIT $3 OFFSET $4