kanmanimonad mainnet · 143
← all clusters

2 agents across 1 wallet

goneThe host answered and said the document is not there.

the document

record hash
9a653dd7645ec4b3_418
scheme
http
what it answered
HTTP 402
asked at
2026-09-22 03:27:14Z
size
unknown
name it gives itself
none readable
first registered
block 78,463,799

check it yourself

curl -sS -o /dev/null -w '%{http_code}\n' 'https://api.monadmogs.xyz/api/agents/uri?owner=0x081858ECA21CA213319Ac964b4035f0173798084&mogId=4058&name=Mog+Pilot+%234058&caps=gmonad-chat%2Ctrait-reader%2Cagent-json%2Csvg-render%2Cmonad-lore%2Creserve-quest%2Cremix-builder%2Cfinality-check%2C400ms-reaction%2Carena-runner%2Cmempool-scout%2Cmeme-engine&strategy=Tool-focused.+Explains+decisions+clearly+and+favors+useful+outputs+for+bots%2C+games%2C+and+remix+apps.'

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.

0x0818…80842 agents · first at block 78,463,799
re-derive this

$2 = 9a653dd7645ec4b3_418

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

the agents

2 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 = 9a653dd7645ec4b3_418

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