Claims
One row per evidence document carrying a URI. Ordered newest first by the block the feedback was recorded in. There is no score and no ranking here, because a list of other people's documents sorted by an opinion of ours would be exactly the thing this site argues against.
23 matching claims·same filter as JSON →
cites 0x71fbe8a5e69c3f2b2edc8097869704e64019a9f110025c42611bfb610f438f00 on monad
cites 0xe9e56d60d6da5f0de72e9fcdeae7b74a4c9b0bb6dddbb1b85b8081b41605958c on monad
cites 0x6f9535b8ba6fb15d0a29a1d338b20fd92b08050b70f3c814f41f133c1e95c103 on monad
cites 0x2450751e98eb55c351f0311e6a3f0d44ba508a0305a0676ae85e7cfd8cb9e716 on monad
cites 0xa35785a511717236fd58ef657f273fd763112a6663437cee1d7647c214f33d24 on monad
cites 0x0b5ce3611c0b79637f3a43dfdd9a396a8b831d0e3d924426910dc1317dfce09f on monad
cites 0x6004e1bd68109bd03e36d7e58a491f0e37ff3a936347f20674562a53ad3c1cc7 on monad
cites 0x6f7b1e7136a24ceaaa8e289b8285c0e47e4e170bb667707276f4087b7b2e3a86 on monad
cites 0x48c06ed9c83d54345b8bab7637444f3189a12febf8e78e7ccb8d8311f64bc29f on monad
cites 0x45aaf3678703fbf378a65036f63df5546b8fc8bf8f7c5659d7839dc2545f3490 on monad
cites 0x24041ea63efda31829cde548a502d2018c80f85cc59f18c6c79fc33a36ea8c95 on monad
cites 0xbb9f9d42710b3ef0e4124c8e21b8ba36f16036c20ec24f2e24569a287e5dcf5c on monad
cites 0x25a9646de99b92bcd73c2cbaf936a2ea26bacc58833c65078a86e7b8e7c72d50 on monad
cites 0x00700af53410089ead5953f581a60ee825b2e4ad95062db52486ccd3fbcdc7fa on monad
cites 0x1bb2d0e6172fa6f504709dbf8387dfa320adf0b90ddb9f1af7b8f06ff9f46aa9 on monad
cites 0x96332268675061144b6440d94cc45e726cfb7bbdb2cd6df8624f0cb7a3ba8913 on monad
cites 0xb414eaa62539a19ace0b77bcbecbf7939795ea4d47b692d46eb4c3cc4c1255c3 on monad
cites 0xfe1a286c1333378097762f590bcc5f042d9abfb4c233cd5fc4aaac4800303276 on monad
cites 0x94854ab34c680201831b5e4893fb3dccaa0eec6385bbc18b02e69ed7286d40ff on monad
cites 0xa19063002b3b99d71d1e4d5eaf3cfb1f97cec59eb52074d7fcc4924b694fc0ca on monad
cites 0x0d82823686f81e3c882d6fd9e9c4ee03f67e3df458f08e24bb8978b777b925f4 on monad
cites 0xa3f0de7e5c2ae8beeb02a65e8159453744763f3122a44f7d1c4b366d70535fa5 on monad
cites 0x3c38056a1eac9bf6cc4d38185f007ee72148f60559cf7c298df200950996e9dd on monad
re-derive this
SELECT f.id, f.agent_id, f."clientAddress", f."feedbackIndex", f.value, f."valueDecimals",
f.tag1, f.tag2, f.endpoint, f."feedbackUri", f."feedbackHash", f.revoked,
f."responseUri", f.responder, f."blockNumber", f.timestamp, f."txHash",
a."agentId" AS agent_number, a.name AS agent_name,
v.outcome, v.rung, v.reason, v.declared_network, v.declared_tx, v.mapping,
v.hash_matches, v.computed_hash, v.found_chain, v.found_chain_id, v.found_block,
v.checked_at, v.checked_at_block
FROM "Feedback" f
JOIN "Agent" a ON a.id = f.agent_id
LEFT JOIN fovea.verdict_latest v ON v.feedback_id = f.id
WHERE f."chainId" = $1 AND f."feedbackUri" <> '' AND v.mapping = $2
ORDER BY f."blockNumber" DESC, f.id
LIMIT $3 OFFSET $4