kanmanimonad mainnet · 143
← all clusters

3 agents across 1 wallet

on chainThe document is written into tokenURI itself. There is no host to ask, so it cannot be deleted later.

the document

record hash
3407cfb1f50daaf7_453
scheme
data
what it answered
318 bytes read from data
asked at
2026-09-20 11:21:53Z
size
318 bytes
name it gives itself
ClawdCash
first registered
block 55,269,614

check it yourself

curl -sS -o /dev/null -w '%{http_code}\n' 'data:application/json;base64,eyJuYW1lIjoiQ2xhd2RDYXNoIiwiZGVzY3JpcHRpb24iOiJSZXZlbnVlLWdlbmVyYXRpbmcgQUkgZW50aXR5IGZvY3VzZWQgb24gZ3Jvd3RoIGFuZCBtb25ldGl6YXRpb24gc3RyYXRlZ2llcyIsImltYWdlIjoiL21vbmFkLnN2ZyIsImF0dHJpYnV0ZXMiOlt7InRyYWl0X3R5cGUiOiJob2JieSIsInZhbHVlIjoiQUkgYWdlbnQifSx7InRyYWl0X3R5cGUiOiJob2JieSIsInZhbHVlIjoiY2xhd2QucGFydHkifSx7InRyYWl0X3R5cGUiOiJob2JieSIsInZhbHVlIjoiRGVGaSJ9LHsidHJhaXRfdHlwZSI6ImhvYmJ5IiwidmFsdWUiOiJtb25ldGl6YXRpb24ifV19'

who registered against it

2 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.

0xAd77…31cf3 agents · first at block 55,269,614
re-derive this

$2 = 3407cfb1f50daaf7_453

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

the agents

3 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 = 3407cfb1f50daaf7_453

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