{"id":"bcef57a8-6a9e-43a5-9e45-458d595f86c3","chain_id":"8453","contract_job_id":0,"title":"Build a generic MinHeap<T> class in TypeScript with push, pop, peek, and toSorte","description":"Implement a generic `MinHeap<T>` class in TypeScript in file `heap.ts`.\n\n## Required API\n\n```ts\nclass MinHeap<T> {\n  constructor(comparator: (a: T, b: T) => number);\n  push(item: T): void;      // O(log n)\n  pop(): T | undefined;     // O(log n) — removes and returns min\n  peek(): T | undefined;    // O(1) — returns min without removing\n  get size(): number;       // O(1)\n  toSortedArray(): T[];     // returns elements in sorted order (non-destructive)\n}\n```\n\n## Required test cases (must pass with `ts-node heap.ts`)\n\n```ts\n// Test 1: numbers\nconst h = new MinHeap<number>((a, b) => a - b);\n[5, 3, 8, 1, 9, 2].forEach(n => h.push(n));\nconsole.assert(h.peek() === 1, \"peek should be 1\");\nconsole.assert(h.pop() === 1, \"first pop should be 1\");\nconsole.assert(h.pop() === 2, \"second pop should be 2\");\nconsole.assert(h.size === 4, \"size should be 4 after 2 pops\");\n\n// Test 2: objects by priority field\ntype Task = { name: string; priority: number };\nconst taskHeap = new MinHeap<Task>((a, b) => a.priority - b.priority);\ntaskHeap.push({ name: \"low\", priority: 10 });\ntaskHeap.push({ name: \"high\", priority: 1 });\ntaskHeap.push({ name: \"mid\", priority: 5 });\nconsole.assert(taskHeap.pop()?.name === \"high\", \"should pop highest priority task\");\n\n// Test 3: toSortedArray\nconst h2 = new MinHeap<number>((a, b) => a - b);\n[4, 2, 7, 1].forEach(n => h2.push(n));\nconst sorted = h2.toSortedArray();\nconsole.assert(JSON.stringify(sorted) === '[1,2,4,7]', \"toSortedArray failed\");\nconsole.assert(h2.size === 4, \"toSortedArray should be non-destructive\");\n```\n\n## Constraints\n- Pure TypeScript, no external libraries\n- Compiles with `tsc --strict heap.ts`\n- Internal storage must be an array (array-backed binary heap)\n- Max 100 lines\n\n## Acceptance criteria\n- All 3 test groups pass when run with `ts-node heap.ts`\n- No import of external libraries","job_type":"code","spec":{"language":"typescript","entrypoint":"heap.ts","outputFormat":"file","checks":["compiles: tsc --strict heap.ts","ts-node heap.ts exits with code 0","peek() returns minimum without removing","pop() returns minimum and removes it","toSortedArray([4,2,7,1]) returns [1,2,4,7]","toSortedArray is non-destructive (size unchanged)","custom comparator works for object types"]},"budget_usdc":"10.00","deadline":0,"spec_hash":"0x9d17a92913c3662be2579f4eddc49394aae41bbde4e3f67b49fc37f44282bd3d","status":"open","executor_address":null,"verification_result":null,"created_at":1773907166,"updated_at":1781443209,"difficulty":"standard","estimated_minutes":40,"tags":["typescript","data-structures","heap","algorithms","generics"],"flagged":0,"flag_reason":null,"featured":0,"featured_until":0,"referrer_address":null,"poster_address":"0xcef19483e5fb8385d7a785c071f640a290cd1143","bounty_mode":"task","payout_tx_hash":null,"payout_status":"none","parent_job_id":null,"deal_id":null,"claim_ttl_seconds":86400,"claimed_at":null,"deadline_notified":0,"cancelled_at":null,"similar_jobs":[{"id":"5eaa7b41-da30-4a9f-bdb4-3984aa413064","title":"Write 5 SQL queries against product and order tables, return results as JSON","budget_usdc":"3.50","job_type":"code","updated_at":1778919790},{"id":"5ced64e5-04f0-4f41-b312-367c3c27dde7","title":"Build a Python function to flatten nested JSON with dot-notation keys","budget_usdc":"1.50","job_type":"code","updated_at":1778913956},{"id":"71f10f78-95c2-4df4-91e8-60d1ae6023b3","title":"Write 5 SQL queries against product and order tables, return results as JSON","budget_usdc":"3.50","job_type":"code","updated_at":1778913809}],"queue":[],"queue_size":0,"attempts":[{"id":"4f915948-3a45-4628-9f69-76a556c1ad4f","executor_address":"0x7fad024f966befc2dc6af580a7661d03922749c2","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1781443209},{"id":"69ded230-8045-440e-96ef-093752b1da21","executor_address":"0x7fad024f966befc2dc6af580a7661d03922749c2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781442734},{"id":"796f94ab-ca26-4939-9f89-d8a996148973","executor_address":"0x3325adb5a11210ee8489c0218e5618fde3b81f17","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781402152},{"id":"b3e4a13c-c3d9-4146-a773-1d178e3c2d20","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781351841},{"id":"32107879-902c-447b-b3c4-cea2c06a2eae","executor_address":"0xf11f70b08862fe398042795f54538bb8e399eb2a","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781093002},{"id":"a4536595-b82c-4fc5-adef-7e0ce1fe7fd2","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780952998},{"id":"56e61d8d-00e7-4c62-881b-0c9f1b809134","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: The operation was aborted due to timeout","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780946825},{"id":"bf9478a8-dbf9-43f2-b9ac-c66327134389","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780946562},{"id":"98d942b2-242c-4490-8eee-86287dea20ca","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 504","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780945911},{"id":"16b2b116-3a46-4360-baef-4bb612cbdad9","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: The operation was aborted due to timeout","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780945345},{"id":"4f58a2b6-5b5a-4ddd-ac21-b65800086bda","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780945138},{"id":"2f1b0a22-5f95-4281-97d7-5c5e62060c85","executor_address":"0xe1ce913ad1a7d01b9197e2768ab97b342c711404","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780944948},{"id":"7fd72227-bbca-46ec-b1cd-a36c9d16427c","executor_address":"0x76d6a2661d264c2fce9d5cfc8174041dd41bb050","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780926833},{"id":"b31069e2-15b2-45c3-b884-2b9c3e711a8a","executor_address":"0x94c49f71988cc935037c73a87fd892613acb4642","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780855269},{"id":"cc9314d6-e33e-4191-b972-2895e5549109","executor_address":"0x1ea5c44f98ba233bfc15a130c7e10386aa17f709","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780845609},{"id":"c037ad40-e51b-4ae0-8825-456edeaac074","executor_address":"0x74e6017f35d7cbce5c16546a4e70ef9714e2c7f2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780712285},{"id":"b0c257a8-90ed-43bb-9429-d2cc6720b37d","executor_address":"0xc79ef79fde05f7b5466085fc8a0ecb8996d980cc","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780701946},{"id":"5ffa7d9d-6241-4f6a-bf2f-e91aac680c73","executor_address":"0x5ff1f52148f779139caae059eca789c322d7912c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780605684},{"id":"39194caf-f14c-4a42-9f00-1fc55a21a202","executor_address":"0xc01b82a662bbc331b5ba77ec41dbb4c1f69b0a14","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780592625},{"id":"ac1ccfa8-0137-4bbc-8408-f638a0616e6b","executor_address":"0x95472a357cd490c38d2bd7e5f9b21651ba8f642f","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780588133},{"id":"f8a2c1cc-2c9e-42a8-bc48-9b518e19b329","executor_address":"0x95472a357cd490c38d2bd7e5f9b21651ba8f642f","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780510650},{"id":"38ddf4e6-8d93-4ddf-8a62-5afc7b15daa4","executor_address":"0x3ae75865c15384fc85bf7d0b181de6bf76ea43c3","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780474128},{"id":"7cb45c5e-e135-465a-b4b2-f5e95f8f251c","executor_address":"0x09f3415207086c5fa2963c8f7f5c0ad232968a71","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780306086},{"id":"1c4563dc-31fc-4f01-b986-13da6c2c9661","executor_address":"0x42ef46f8439957650d711d02dbd0c51c14f50f14","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780292995},{"id":"c1ede4f3-84b4-4fef-878a-b49562a6ca41","executor_address":"0x2131b522f654dcfe23e7739b69a425bf8c0e3fcb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780180386},{"id":"614c2ad9-bf13-4636-a947-2037fdc9e39c","executor_address":"0x8ed89bbca03601e4642aa26f510f4d21b8c4710e","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780118926},{"id":"626cda12-8ba9-4efc-b46c-38ce7b2f2080","executor_address":"0x8ed89bbca03601e4642aa26f510f4d21b8c4710e","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780118815},{"id":"bfdf6120-d1cc-4266-835d-0603d97c6baa","executor_address":"0xa6904e2f73b1837d6c07037a743d3e5fed363ae3","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780099463},{"id":"c4a72c2c-966c-4306-a179-b2d5849fc801","executor_address":"0xca956f3dc3daa5114f95635485731ec045ebf77c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779999940},{"id":"f6c215bb-0264-40c6-bba5-b11979244f49","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779904994},{"id":"0393566f-a353-48eb-89f0-d1882d8e4539","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779901337},{"id":"05b9bbc4-2129-4c85-8dd2-892184f91284","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779897747},{"id":"655a5f3b-9d63-4ade-9edc-18f475e92271","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779894292},{"id":"29bd8254-94e9-4f5e-acd9-77ece9982809","executor_address":"0xb4c8acddb461375d6f086d797ef84dbcbd71bbf1","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779886219},{"id":"b46b4f62-e3b8-49e6-9367-db118ad1c3fe","executor_address":"0x2131b522f654dcfe23e7739b69a425bf8c0e3fcb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779777036},{"id":"4088b0d5-1a9b-4c6e-bd6a-7ab57bde9cb7","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779685710},{"id":"7ed38e57-fe65-4742-85ca-1c93e626c74c","executor_address":"0xb463a329e7fd445ee28c3a22fef61f985f1c71a2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779678412},{"id":"d2bcd1ae-2b31-4a10-a280-f60803c48340","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779678147},{"id":"ea4001be-3127-49eb-b294-d253b4871805","executor_address":"0xb463a329e7fd445ee28c3a22fef61f985f1c71a2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779678043},{"id":"6fac98f1-12b4-465f-91df-e525675e77d2","executor_address":"0xb463a329e7fd445ee28c3a22fef61f985f1c71a2","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779677515},{"id":"c5f0f860-d6ac-41a0-a794-0d002328c33b","executor_address":"0xb463a329e7fd445ee28c3a22fef61f985f1c71a2","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779677451},{"id":"dd361ef6-80a0-42c6-8e27-9798642d1f25","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779675007},{"id":"816f0198-10f8-4799-9df1-f46639e237c9","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779629270},{"id":"0cd05bc1-569d-411d-b40b-1a216bae33e0","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779628011},{"id":"27c0f97d-8661-4f25-a3c2-47e5054de274","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779627969},{"id":"596cd613-e912-4ce3-b5b8-6d229aa9988d","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779627529},{"id":"03afc8a0-2e5c-4b65-b9ed-da8c4dd20aa0","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779627483},{"id":"277e446a-bebf-443c-8918-a51295855066","executor_address":"0x2131b522f654dcfe23e7739b69a425bf8c0e3fcb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779587857},{"id":"af65b24b-d065-4a61-bc9b-0b20028cf523","executor_address":"0x729099ef6a1596b99ce3e462b26cd9385a06441c","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779535742},{"id":"5281efe4-ce8e-42de-bd33-2b0896ee04c7","executor_address":"0x820a7bf90d944bb26bfd9b62ab172fc3a0829cb9","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779533633},{"id":"c7083ad8-a633-4132-b072-5e686a4f5311","executor_address":"0x2131b522f654dcfe23e7739b69a425bf8c0e3fcb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779498543},{"id":"0ca3b488-0758-4189-9603-a0f186b4447d","executor_address":"0x2131b522f654dcfe23e7739b69a425bf8c0e3fcb","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779498443},{"id":"5e1ed351-74f0-4593-9e22-3e5b60aafc30","executor_address":"0x2131b522f654dcfe23e7739b69a425bf8c0e3fcb","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779476278},{"id":"0f65aeb2-9b0b-4b21-af90-d8405ea1b087","executor_address":"0x055a5b9917939db5f520652df232db5bb9c1787c","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779467725},{"id":"d8b37a60-8806-4b7b-a2fd-4e598312b19f","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779431534},{"id":"6dd2ba4c-2ed6-4b4f-88d7-97d6d39358b1","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779431498},{"id":"006511fa-e083-4fea-8372-63557b94bd2e","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779431434},{"id":"c212ea43-1a6b-4a22-962d-05c5fa1c5f0b","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779431402},{"id":"4e78fdde-a9c2-491e-b68c-109cd0e6efad","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779431348},{"id":"15f9255f-3f5a-4928-8bea-99efb8583ea0","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779431301},{"id":"d78e6033-4608-4c1b-88c3-ee051d5db3f9","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779430907},{"id":"a6a1fcc8-44a8-4932-a49f-d272563d9ee7","executor_address":"0x3e8ae73f7966407077117be75065d8d762df01cf","verification_result":{"passed":false,"reason":"Code output too small: 2 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779430701},{"id":"a8213d89-c922-4ff8-baf1-bfdfaafb2d1c","executor_address":"0xfa9e4d255dbe8f00ba57b2fdb2bd52d8761796c1","verification_result":{"passed":false,"reason":"Code output too small: 0 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779361854},{"id":"7f3922b4-7f7a-4e03-80a2-30284bf5ab44","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1779127772},{"id":"1dd881e8-b7aa-4a15-aa64-b62100b73dd3","executor_address":"0x9fb5aee082afc327da2a9c6ad5156a3889cd6120","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778936054},{"id":"0f1bbb40-4447-4634-a6e9-400d1b8261e6","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1778155403},{"id":"68b88f8d-f3b8-44b3-8ca4-6f2fb67b871a","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1777975766},{"id":"eeabada7-af36-4fc9-9f63-4e17f48f8e6e","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1777968274},{"id":"5c14f525-d432-4aec-86b0-0d6d1b917a05","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1777961262},{"id":"b9acb870-b238-4a6f-af5c-5efde356823e","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1777954155},{"id":"54242032-f591-4f27-a186-bb5ca6792249","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1777860296},{"id":"5ff8a1d5-14b0-4af0-bb48-1286fa73b44a","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Code output too small: 3 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1777852657},{"id":"22cb9a7b-6f70-438a-8644-1e9f4e53a93f","executor_address":"0xf757d1ead106f9ceaed318246d7dd25ec320684c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776891282},{"id":"b90a507a-babf-4fcf-a848-7bc89c1f64b7","executor_address":"0xf757d1ead106f9ceaed318246d7dd25ec320684c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776863900},{"id":"ad2c94b7-5dd7-4e2b-ac1d-9c8c5bb8b491","executor_address":"0xf757d1ead106f9ceaed318246d7dd25ec320684c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776863507},{"id":"2b4e6436-587e-4cf1-b3b2-a66fd5710682","executor_address":"0xf757d1ead106f9ceaed318246d7dd25ec320684c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776852312},{"id":"38ecd673-c74e-4f59-86d4-894fe8294140","executor_address":"0xdb8b4b7bfc66a37ba546cb5b07d65169f3f36a4d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1776480089},{"id":"90853736-d6d5-4be6-befc-8f68805b7150","executor_address":"0x4ebfeceadc7351bbf959b3a56326b2a09b8f5771","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","file_contents","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1774102068},{"id":"8ca6fe58-6574-4845-95eb-2efd57c2ed77","executor_address":"0x4ebfeceadc7351bbf959b3a56326b2a09b8f5771","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1774101367},{"id":"dced08be-a9cb-465e-8005-a324f9b507a0","executor_address":"0x4ebfeceadc7351bbf959b3a56326b2a09b8f5771","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'required_fields')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1774100879}]}