← all clusters
1 agent across 1 wallet
malformedThe URI was never a usable pointer. Nothing was deleted, because it could not have worked.
the document
- record hash
- 551c1a8429ca0a90_22
- scheme
- ipfs
- what it answered
- ipfs path is not a CID optionally followed by plain segments
- asked at
- 2026-09-20 11:22:00Z
- size
- unknown
- name it gives itself
- none readable
- first registered
- block 53,676,237
check it yourself
curl -sS -o /dev/null -w '%{http_code}\n' 'ipfs://monworld-oracle'who registered against it
Every agent here was registered by a different wallet.
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.
0xc0a7…5E431 agent · first at block 53,676,237
re-derive this
$2 = 551c1a8429ca0a90_22
SELECT owner, "agentCount", "firstSeenBlock" FROM "AgentRecordOwner" WHERE "chainId" = $1 AND record_id = $2 ORDER BY "agentCount" DESC, "firstSeenBlock" ASC LIMIT $3
the agents
1 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 = 551c1a8429ca0a90_22
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