the document
- record hash
- e2193ffb23341bfb_75
- scheme
- http
- what it answered
- 17836 bytes read from http
- asked at
- 2026-09-20 11:21:53Z
- size
- 17,836 bytes
- name it gives itself
- none readable
- first registered
- block 56,680,663
check it yourself
curl -sS -o /dev/null -w '%{http_code}\n' 'https://execution.market/workers/0x52e05c8e45a32eee169639f6d2ca40f8887b5a15'who registered against it
24 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.
0x1030…13C725 agents · first at block 56,680,663
re-derive this
$2 = e2193ffb23341bfb_75
SELECT owner, "agentCount", "firstSeenBlock" FROM "AgentRecordOwner" WHERE "chainId" = $1 AND record_id = $2 ORDER BY "agentCount" DESC, "firstSeenBlock" ASC LIMIT $3
the agents
25 agents point at this one document.
#8318#8319#8320#8321#8322#8323#8324#8325#8326#8327#8328#8329#8330#8331#8332#8333#8334#8335#8336#8337#8338#8339#8340#8341#8342
Brighter means the agent carries at least one feedback. Faint means nothing has ever been said about it.
re-derive this
$2 = e2193ffb23341bfb_75
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