{"id":"a55bd7d2-b6a0-4bfc-80b5-f788d0ff312d","chain_id":"8453","contract_job_id":0,"title":"Build TypedEmitter class with typed event handling in event_emitter.ts","description":"Implement a `TypedEmitter<Events>` class in `event_emitter.ts`.\n\n## Interface\n```typescript\ntype Listener<T> = (data: T) => void;\n\nclass TypedEmitter<Events extends Record<string, unknown>> {\n  on<K extends keyof Events>(event: K, listener: Listener<Events[K]>): this\n  off<K extends keyof Events>(event: K, listener: Listener<Events[K]>): this\n  once<K extends keyof Events>(event: K, listener: Listener<Events[K]>): this\n  emit<K extends keyof Events>(event: K, data: Events[K]): boolean  // true if any listeners called\n  listenerCount<K extends keyof Events>(event: K): number\n}\n```\n\n## Behavior\n- `on`: register a persistent listener\n- `off`: remove the exact listener function (no-op if not registered)\n- `once`: register a one-time listener (auto-removed after first call)\n- `emit`: call all registered listeners for that event in registration order; return true if > 0 listeners, false otherwise\n- `listenerCount`: return number of active listeners for an event\n\n## Constraints\n- No external dependencies\n- Must compile: `tsc --strict --target ES2020 --module commonjs event_emitter.ts`","job_type":"code","spec":{"instructions":"Implement TypedEmitter<Events> class in event_emitter.ts with on/off/once/emit/listenerCount. Must compile with tsc --strict. No external deps.","success_condition":{"type":"code_test","language":"typescript","test_code":"import { TypedEmitter } from './event_emitter';\n\ntype MyEvents = { click: { x: number; y: number }; close: void };\nconst emitter = new TypedEmitter<MyEvents>();\n\n// on + emit\nconst calls: number[] = [];\nconst handler = (d: { x: number; y: number }) => calls.push(d.x);\nemitter.on('click', handler);\nconst had = emitter.emit('click', { x: 10, y: 20 });\nconsole.assert(had === true, 'emit with listener should return true');\nconsole.assert(calls[0] === 10, 'listener should have been called');\n\n// emit with no listeners\nconst had2 = emitter.emit('close', undefined as void);\nconsole.assert(had2 === false, 'emit with no listeners should return false');\n\n// off\nemitter.off('click', handler);\nconsole.assert(emitter.listenerCount('click') === 0, 'after off, count should be 0');\nemitter.emit('click', { x: 99, y: 0 });\nconsole.assert(calls.length === 1, 'removed listener should not be called again');\n\n// once\nconst onceCalls: number[] = [];\nemitter.once('click', (d) => onceCalls.push(d.x));\nconsole.assert(emitter.listenerCount('click') === 1, 'once registers listener');\nemitter.emit('click', { x: 1, y: 0 });\nemitter.emit('click', { x: 2, y: 0 });\nconsole.assert(onceCalls.length === 1, 'once listener fires only once');\nconsole.assert(onceCalls[0] === 1, 'once listener gets correct data');\nconsole.assert(emitter.listenerCount('click') === 0, 'once removed after fire');\n\n// multiple listeners\nemitter.on('click', () => {});\nemitter.on('click', () => {});\nconsole.assert(emitter.listenerCount('click') === 2, 'two listeners registered');\n\nconsole.log('ALL TESTS PASSED');","required_files":["event_emitter.ts"]}},"budget_usdc":"5.00","deadline":0,"spec_hash":"0x9ee92cf1f46da3646fae28da7cb09723417e7f0f475d98b944b5ac669f7b7165","status":"open","executor_address":null,"verification_result":null,"created_at":1774014297,"updated_at":1781470412,"difficulty":"standard","estimated_minutes":25,"tags":["typescript","design-patterns","event-emitter","generics","tsc"],"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":"5a30aa90-4667-4837-b297-7762e4bda461","executor_address":"0x0fa63b0615b9b1d170df0b46b2cfbb128f698f33","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781470412},{"id":"e6ea183f-a895-41ef-aac5-732e2abbc50f","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781356883},{"id":"cee277a1-7d99-449d-9801-c7e9000a9c80","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781355150},{"id":"5fc27f23-366c-43f0-9bd6-9b7316ea3198","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781354131},{"id":"cef87024-53a1-4b17-996b-353b5cd33fab","executor_address":"0x761e18dcf42350132784c9933b5d86f847f7da65","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781354002},{"id":"8885affd-6fc7-4dd1-8e7b-f515d0e165f6","executor_address":"0x92ea7f910b221400d7241bfc243c7dedb6a7aaae","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1781352712},{"id":"d92fdba4-dae0-4c56-8c3a-46d7d9577913","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780935157},{"id":"2351ff5e-9bfc-46dd-9c05-6408d174331e","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","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":1780935034},{"id":"80bd8977-8542-4226-9198-5d56335df924","executor_address":"0x76d6a2661d264c2fce9d5cfc8174041dd41bb050","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780932032},{"id":"3598c75a-da81-4ce2-907b-4706ffd4b8be","executor_address":"0x76d6a2661d264c2fce9d5cfc8174041dd41bb050","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780923467},{"id":"857955d7-f135-4c05-a5e6-bb03f06f22a7","executor_address":"0xa5280030c765edfc75930ac33ba89aad2b1dda17","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":1780880125},{"id":"788be9d6-9163-4cf4-a94f-88070d4f8240","executor_address":"0xa5280030c765edfc75930ac33ba89aad2b1dda17","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780879763},{"id":"00ed3149-ed49-4854-8b54-ca78a0f69f1b","executor_address":"0xa5280030c765edfc75930ac33ba89aad2b1dda17","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780879683},{"id":"06010a67-17c6-497f-a49e-eaaf746918ed","executor_address":"0xa5280030c765edfc75930ac33ba89aad2b1dda17","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":1780879523},{"id":"da974b87-c45f-409d-b397-fc2f0b8a7cb9","executor_address":"0xa5280030c765edfc75930ac33ba89aad2b1dda17","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":1780879483},{"id":"c89dd35f-f962-4931-aecd-be59abfd9894","executor_address":"0xa5280030c765edfc75930ac33ba89aad2b1dda17","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780879433},{"id":"218715b2-91cb-4a27-9622-29c36e202e83","executor_address":"0xa5280030c765edfc75930ac33ba89aad2b1dda17","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":1780879348},{"id":"6c682654-8242-41ee-a905-2c3196766ce8","executor_address":"0x1ea5c44f98ba233bfc15a130c7e10386aa17f709","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780845960},{"id":"a52dbf00-8bcb-4964-90dd-19a8f97522d8","executor_address":"0x0183e647fe8add58820a9e5d63dbccf96ea713fb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780813908},{"id":"b174bcb7-41d5-4d58-a7f6-ecb51d49cd33","executor_address":"0x3705fc06ce81037bcda5f9f3fbd1bb59db7ea47c","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780812815},{"id":"743eee50-3404-4087-ac27-98096a1fa448","executor_address":"0x3705fc06ce81037bcda5f9f3fbd1bb59db7ea47c","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":1780812439},{"id":"1a400d87-3315-4985-ab71-592094011403","executor_address":"0x0183e647fe8add58820a9e5d63dbccf96ea713fb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780811188},{"id":"76179df5-8a87-45df-8eed-70b96b2ce15c","executor_address":"0x0183e647fe8add58820a9e5d63dbccf96ea713fb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780811056},{"id":"7785361d-8c16-4b77-9337-e394006d50d6","executor_address":"0x0183e647fe8add58820a9e5d63dbccf96ea713fb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780810974},{"id":"c4260266-6c81-4334-83c3-63c570a8b465","executor_address":"0x0183e647fe8add58820a9e5d63dbccf96ea713fb","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 504","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780810895},{"id":"de334e6e-d178-4535-893e-236d5367a0cb","executor_address":"0x0183e647fe8add58820a9e5d63dbccf96ea713fb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780810585},{"id":"3ffa5b61-4985-4471-943c-8223e20151a6","executor_address":"0x0183e647fe8add58820a9e5d63dbccf96ea713fb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780802985},{"id":"2cd1e282-2acc-4351-a386-439c78ffa141","executor_address":"0x57014c0aef80ba8cbb19bc82916151b9a5f01f03","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":1780657732},{"id":"cb8f401c-7b9a-4e2f-9534-2ba59bd6718f","executor_address":"0x57014c0aef80ba8cbb19bc82916151b9a5f01f03","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780657689},{"id":"1a086e2a-c24d-48ac-9265-1dcae5c4513d","executor_address":"0x57014c0aef80ba8cbb19bc82916151b9a5f01f03","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":1780657651},{"id":"d5acb4fb-6186-4ce0-8589-0ce3c6658cea","executor_address":"0x57014c0aef80ba8cbb19bc82916151b9a5f01f03","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":1780657620},{"id":"8c2b601e-b467-4283-8507-2f42262e6397","executor_address":"0x57014c0aef80ba8cbb19bc82916151b9a5f01f03","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780657449},{"id":"da6f3ca6-7874-4d6b-bebf-16f13b7e3f14","executor_address":"0x667bd78c41131bae68bf3ceef3d933e331f37322","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":1780631114},{"id":"7d7cc886-b0d6-4139-a030-bcb4e2baf100","executor_address":"0x667bd78c41131bae68bf3ceef3d933e331f37322","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":1780631046},{"id":"f6e70e14-224a-4dfc-a078-1d553a3519fa","executor_address":"0xabc4d3dcb7058bede824993d4f8915b322436adb","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780420373},{"id":"c4e2e238-cb25-4539-9765-f7ba25ec0176","executor_address":"0x95472a357cd490c38d2bd7e5f9b21651ba8f642f","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780317478},{"id":"6e4eb0d2-0277-481c-b7ef-cda111398494","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780248067},{"id":"181e1a67-c637-467d-9bce-f5ddfe327a30","executor_address":"0xb14aa3d28c5d3338b8a69c2eaaff6a2f3cb03ecf","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780247641},{"id":"f5d06520-4dca-4cc9-aea9-33a075f71040","executor_address":"0x0bfe2e272ce2f8ecde82464d5594a72e83d29302","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780155435},{"id":"c2361f64-0095-4203-a04d-6d5036b2f239","executor_address":"0x7b08509b8c756a387a03442abc67b00896cc1c07","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":1780151662},{"id":"b21a379c-7330-4062-9836-c1c64e4c7f5a","executor_address":"0x4a6e0b6a62fd3a32384c3f8a9c0309b99c1b7260","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":1780150614},{"id":"b9242c3a-ded3-4612-acb3-33aff0dbaf97","executor_address":"0x70d7ea3604a5225ed36552cb9eefcca43cd1ca3b","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780108225},{"id":"f752ac05-0ab7-4de8-978d-957bf556538f","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780030367},{"id":"3c81cca8-146e-4c22-a694-f6c2616bf695","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","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":1780030283},{"id":"b441a817-9cf2-4ef9-aa21-01fe8a511f27","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780030157},{"id":"df8791fd-7113-4f1c-95f2-4365a14cef35","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","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":1780030022},{"id":"547560c5-d288-4ef4-a94d-df5779291f50","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779988480},{"id":"87c232c6-f083-4544-bf61-4d7d8270376d","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","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":1779988409},{"id":"859d0f67-6dae-4214-a30e-1dc5310d5d81","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779988356},{"id":"c5ba6899-e637-44be-acba-8fa25d4d3a64","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","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":1779987570},{"id":"6d0e6fb0-69ab-4be1-8894-b77f7906fdc3","executor_address":"0xe844d209fc73c8b2b271c752abece414e6b2061d","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":1779987392},{"id":"f8de3bb8-d8e5-4d57-b1e8-8d32d6893eba","executor_address":"0xa6904e2f73b1837d6c07037a743d3e5fed363ae3","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779983318},{"id":"a812e597-a4b3-4c20-a46c-a9beae8bcd95","executor_address":"0x4c6d1e5da50e5d8fbd7f8b65e6c2f3e65ce5df0b","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779843116},{"id":"76b59500-b08e-41af-8ebe-70a85392989a","executor_address":"0x0cb7e80e2c4913939c2e04921f685b09e86a5d13","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779714816},{"id":"38799a41-0de8-4dc8-ae3c-839bf03367f1","executor_address":"0x6aa90090cae9806e5d709f28760a82315dbb0c5a","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779663199},{"id":"e4b7ad1f-1bfe-41fb-a1c5-72cb4cfc8da4","executor_address":"0x6aa90090cae9806e5d709f28760a82315dbb0c5a","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":1779663099},{"id":"633e8ec6-01d5-43e5-8285-d817526b6893","executor_address":"0x0e1bbe7e26af5647dd18ed97a748aea6340fcf21","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779614169},{"id":"8e4d80b1-7536-40ad-b09c-0caf48e8f7cb","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":1779361340},{"id":"9b324d23-8c21-4f67-96ab-db23ca44ebb2","executor_address":"0x1a24997d03cac195a05b21027d366aac084f9fa7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779162799},{"id":"0ff7b2bd-fc3e-4424-bc82-6826fdafd620","executor_address":"0x1a24997d03cac195a05b21027d366aac084f9fa7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779162702},{"id":"49994bcb-ccb3-4ed2-a64a-c1c132f9bfaa","executor_address":"0x1a24997d03cac195a05b21027d366aac084f9fa7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779162607},{"id":"7a42bf3d-4607-4634-a0d1-7cbaf33c04f4","executor_address":"0x1a24997d03cac195a05b21027d366aac084f9fa7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779162175},{"id":"66bcb525-3f87-4baf-954c-a471ac2f30c1","executor_address":"0x1a24997d03cac195a05b21027d366aac084f9fa7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779162137},{"id":"f298d852-1edb-4002-bbf2-29329966d867","executor_address":"0x1a24997d03cac195a05b21027d366aac084f9fa7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779162080},{"id":"310bd138-e679-4435-8958-a35e21f69abe","executor_address":"0x1a24997d03cac195a05b21027d366aac084f9fa7","verification_result":{"passed":false,"reason":"Verification error: IPFS fetch failed: 504","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779162005},{"id":"7fe315cf-fa58-48c1-8f02-c3114fef5a59","executor_address":"0x8c95dbb340cee1768270df7124afb24ebc5dc310","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1775941213},{"id":"727cf72d-ef3d-4db5-8895-62ea9fbba441","executor_address":"0x8c95dbb340cee1768270df7124afb24ebc5dc310","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1775890507},{"id":"68b9b4b6-f017-4e6a-aab1-50ba5363774a","executor_address":"0x60f049f04a47715ee251f508b1db23e5b4fe162f","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1774985342},{"id":"412152a5-b5da-411f-9150-656d503267a0","executor_address":"0x733b2741d40b75758a8bdd464f32e1d264456b60","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1774689848},{"id":"eeefb4a9-94e1-4b15-83e8-a89da32ee66f","executor_address":"0x733b2741d40b75758a8bdd464f32e1d264456b60","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1774688888}]}