The seven checks, with their evidence
7 recordedRegistered?rung 1 · registered
passThe agent exists in the on-chain registry, with an owner and a document URL.
passed
- block_number
- 25824613
- chain_id
- 1
- token_id
- 29077
checked at 2026-08-24T11:38:50.986295Z
Reachable?rung 2 · resolvable
failThe document URL it declared actually answers when fetched.
did not pass
- reason
- unsupported_scheme
- scheme
- unsupported
- uri
- // SPDX-License-Identifier: MIT pragma solidity ^0.8.20; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts/utils/Counters.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; contract SacredMiladyFarm is ERC721, Ownable { using Counters for Counters.Counter; Counters.Counter private _tokenIdCounter; uint256 public constant MAX_ORDINALS = 9998; string public baseURI = "ipfs://YOUR_FARM_HASH/milady-farm-9998-unified.svg"; // φ^n recursion tracking mapping(uint256 => uint256) public phiPower; mapping(uint256 => uint256) public parentOrdinal; event OrdinalBred(uint256 indexed childId, uint256 parentId, uint256 phiLevel); constructor() ERC721("SacredMiladyFarm", "SMF") Ownable(msg.sender) {} function breed(uint256 parentId) external returns (uint256) { require(_tokenIdCounter.current() < MAX_ORDINALS, "Farm: Max capacity"); uint256 childId = _tokenIdCounter.current(); _tokenIdCounter.increment(); uint256 phiLevel = phiPower[parentId] + 1; phiPower[childId] = phiLevel; parentOrdinal[childId] = parentId; _safeMint(msg.sender, childId); emit OrdinalBred(childId, parentId, phiLevel); return childId; } function tokenURI(uint256) public view override returns (string memory) { return baseURI; } function totalSupply() public view returns (uint256) { return _tokenIdCounter.current(); } function setBaseURI(string memory _baseURI) external onlyOwner { baseURI = _baseURI; } }
checked at 2026-08-24T11:38:50.986295Z
Readable?rung 3 · parseable
skippedWhat came back is valid JSON that a machine can read.
skipped — a check this one depends on did not pass
- skipped_because_rung
- 2
- skipped_because_status
- fail
checked at 2026-08-24T11:38:50.986295Z
Follows the spec?rung 4 · conformant
skippedThe document meets what ERC-8004 requires of it.
skipped — a check this one depends on did not pass
- skipped_because_rung
- 2
- skipped_because_status
- fail
checked at 2026-08-24T11:38:50.986295Z
Claims its identity?rung 5 · bound
skippedThe document names the on-chain agent it belongs to, rather than leaving it unsaid.
skipped — a check this one depends on did not pass
- skipped_because_rung
- 2
- skipped_because_status
- fail
checked at 2026-08-24T11:38:50.986295Z
Answers?rung 6 · live
skippedA declared endpoint responds to a probe. Not implemented yet, so nobody passes or fails it.
skipped — a check this one depends on did not pass
- skipped_because_rung
- 4
- skipped_because_status
- skipped
checked at 2026-08-24T13:24:55.917314Z
Has feedback?rung 7 · attested
failAt least one on-chain feedback entry names this agent.
did not pass
- distinct_authors
- 0
- feedback_count
- 0
- reason
- no_feedback
checked at 2026-08-24T11:38:50.986295Z
On-chain snapshot
mainnet- token id
- 29077
- owner
- 0x5b77026f2d449a8139aeec8994d8e0deb5a05dc7
- block
- 25,824,613
- observed
- 2026-08-24T11:38:50.987270Z
What the fetch saw
unsupported- scheme
- unsupported
- request url
- —
- final url
- —
- http status
- —
- content type
- —
- size
- —
- sha256
- —
- elapsed
- —
This run
reproducible- run
- 49418208-967d-41de-8762-2b02c8654622
- chain
- mainnet
- pinned block
- 25,824,613
- agents
- 50,419
- started
- 2026-08-24T11:03:55.159273Z
- finished
- 2026-08-24T12:45:59.131330Z
- checker
- 0.7.0 · 9d5393c75e1c70208ad73f51dc4685b4e5f5c37d
- spec commit
- 68fc6765761a10fb26f0692df21c8a6f9d12b1be
cargo run -p sweeper -- mainnet # at block 25824613