{"id":"7a44ac22-ae75-4e27-930b-0902a1b3e6cb","chain_id":"8453","contract_job_id":0,"title":"Build a binary search tree package in Go with insert, search, and traversal","description":"Write `bst.go` (package main) implementing a binary search tree with integer values.\n\n## Interface\n```go\ntype Node struct { Val int; Left, Right *Node }\ntype BST struct { Root *Node }\nfunc (b *BST) Insert(val int)\nfunc (b *BST) Search(val int) bool\nfunc (b *BST) InOrder() []int   // sorted ascending\nfunc (b *BST) Height() int      // 0 for empty tree\n```\n\n## Rules\n- Stdlib only. Duplicate inserts are no-ops.\n- `InOrder()` returns a new slice sorted ascending.\n- `Height()` returns 0 for empty tree, 1 for single-node tree.\n\n## Deliverable\nSingle file `bst.go`. Must compile with `go build` (Go 1.21+). Include a `main()` function (can be empty).","job_type":"code","spec":{"instructions":"Write bst.go with BST struct and Node struct. Methods: Insert(int) — no-op on duplicate, Search(int) bool, InOrder() []int — ascending sorted slice, Height() int — 0 empty/1 single node/max depth otherwise. Package main with empty main(). Stdlib only. Go 1.21+.","success_condition":{"type":"code_test","language":"bash","test_code":"#!/bin/bash\nset -e\n\ntest -f bst.go || { echo \"FAIL: bst.go not found\"; exit 1; }\n\n# Write test file\ncat > bst_test.go << 'GOTEST'\npackage main\n\nimport (\n  \"fmt\"\n  \"reflect\"\n  \"testing\"\n)\n\nfunc TestBST(t *testing.T) {\n  b := &BST{}\n\n  // Empty tree\n  if b.Search(5) { t.Fatal(\"Search on empty should return false\") }\n  if b.Height() != 0 { t.Fatalf(\"Empty tree height should be 0, got %d\", b.Height()) }\n  if got := b.InOrder(); len(got) != 0 { t.Fatalf(\"InOrder on empty should be [], got %v\", got) }\n\n  // Insert and search\n  for _, v := range []int{5, 3, 7, 1, 4, 6, 8} {\n    b.Insert(v)\n  }\n  if !b.Search(5) { t.Fatal(\"Search(5) should be true\") }\n  if !b.Search(1) { t.Fatal(\"Search(1) should be true\") }\n  if !b.Search(8) { t.Fatal(\"Search(8) should be true\") }\n  if b.Search(99) { t.Fatal(\"Search(99) should be false\") }\n  if b.Search(0) { t.Fatal(\"Search(0) should be false\") }\n\n  // In-order\n  got := b.InOrder()\n  want := []int{1, 3, 4, 5, 6, 7, 8}\n  if !reflect.DeepEqual(got, want) { t.Fatalf(\"InOrder want %v got %v\", want, got) }\n\n  // Height: root=5, left=3, right=7, children at depth 2 (1,4,6,8) → height=3\n  h := b.Height()\n  if h != 3 { t.Fatalf(\"Height should be 3, got %d\", h) }\n\n  // Duplicate insert is no-op\n  b.Insert(5)\n  got2 := b.InOrder()\n  if !reflect.DeepEqual(got2, want) { t.Fatalf(\"Duplicate insert changed InOrder: %v\", got2) }\n\n  // Single node height\n  b2 := &BST{}\n  b2.Insert(42)\n  if b2.Height() != 1 { t.Fatalf(\"Single node height should be 1, got %d\", b2.Height()) }\n\n  fmt.Println(\"ALL TESTS PASSED\")\n}\nGOTEST\n\ngo test -v -run TestBST . || { echo \"FAIL: go test failed\"; exit 1; }\nrm -f bst_test.go","required_files":["bst.go"]}},"budget_usdc":"6.00","deadline":0,"spec_hash":"0xecf8ad926647afd3e848cbf4620672c9e8e5f40c572eb1379831ef078cd90a9d","status":"open","executor_address":null,"verification_result":null,"created_at":1773846762,"updated_at":1780928669,"difficulty":"intermediate","estimated_minutes":15,"tags":["go","data-structures","binary-search-tree","algorithms","stdlib"],"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":"cda43a1b-3771-4ca4-a4c5-feb119769b1f","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":1780928669},{"id":"93cba2a1-bac2-4d36-ae9f-f8c312e8089f","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","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":1780502535},{"id":"95d5d617-2dea-4920-b852-38997fc04adc","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","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":1780501925},{"id":"05a83511-4b37-4a35-9874-01ff389bf8ad","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","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":1780501755},{"id":"c90b3f90-f4bd-490c-a996-63c699ae636f","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","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":1780501653},{"id":"7ca91117-9125-4a7d-a57d-fc124b84ad9d","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780501541},{"id":"e06c2afa-92f6-447b-8250-8c0ee43fc824","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780501428},{"id":"8a87cf95-dcbc-457b-92bb-a03d018fd5ed","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780501314},{"id":"b9f0b0d3-b520-49ee-896b-8086e9f0d087","executor_address":"0x2d2470916ddda64f8b753cbef6651fa0a25e5bb1","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":1780501128},{"id":"70294eb3-2ed7-4f2e-9532-67c25ae850ca","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780379493},{"id":"0f7f9808-d692-4aad-8278-cf05257111de","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780379463},{"id":"9f760af4-c9b6-412f-84a3-755a753c4c98","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780379424},{"id":"52eac3b6-c82e-4bea-aa80-7aea5af91a00","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780379396},{"id":"77797b65-fdd7-4db0-afdb-69aa62175d80","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780379326},{"id":"a2788d1e-e34b-4d4c-9eb4-3fde5eb37a35","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780379285},{"id":"f944e256-ef9a-43ae-81a4-990fdb3d3ae6","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780379242},{"id":"034892ad-1ecc-4379-a24e-3400fdba51c5","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Code output too small: 1 lines","details":{"checksRun":["output_parse","sufficient_code"],"checksFailed":["sufficient_code"]}},"passed":false,"created_at":1780379200},{"id":"6912d470-cb3e-4996-94cc-1b7c8b9ec534","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780379172},{"id":"da17cff8-fa53-45a8-9d20-ffec6c6fa673","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780379121},{"id":"b524b68a-a26c-4256-88ab-57ad510c51d3","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780379078},{"id":"be82c739-9110-4d2c-a0b2-79b616928e81","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780379030},{"id":"86e9fb59-e06e-48f8-947b-f8babdef38fd","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780378804},{"id":"9ac18198-425f-423e-8053-a30d424492c6","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780378761},{"id":"86747033-f643-44c3-b043-603a90e09199","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780378725},{"id":"57b9d197-41cc-4145-b08c-623fe87abb53","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780378660},{"id":"d5fe9a64-7ffe-465b-bf13-3198a2824df8","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780378617},{"id":"45334db0-4591-4dae-878b-4ba65659df31","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780378578},{"id":"92468eeb-983f-4d0d-a951-50642a624adb","executor_address":"0x908aca55ebdd887a6c62ab3694e7a87abda14ab7","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":1780378506},{"id":"984c1db1-e474-4a85-87b6-bf5c501a58da","executor_address":"0xd87828f65205af6932b1da68c93388eea31c4b42","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780371466},{"id":"e56da5a7-3103-4c8e-a4b6-a58942ca1f8e","executor_address":"0xd87828f65205af6932b1da68c93388eea31c4b42","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":1780371408},{"id":"560d91ef-2877-4f03-92b0-5d32c7a0cada","executor_address":"0xd87828f65205af6932b1da68c93388eea31c4b42","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":1780371365},{"id":"d2dcc1cc-1b88-44fa-8ca0-bad169d6fedc","executor_address":"0xd87828f65205af6932b1da68c93388eea31c4b42","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780371090},{"id":"ad2caa2b-7309-4703-80f1-33c920ed5ce8","executor_address":"0xcb130e4a1b64c461a82a6d50e8613a203022ebf7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780082122},{"id":"99d979dd-56eb-465c-82f9-3a717abf87b1","executor_address":"0xcb130e4a1b64c461a82a6d50e8613a203022ebf7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780078383},{"id":"cd97a97d-543f-4f0a-a598-3582f463fb0b","executor_address":"0xcb130e4a1b64c461a82a6d50e8613a203022ebf7","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":1780076009},{"id":"dd82a08d-aa12-4f60-92e4-3b230ccc9299","executor_address":"0xcb130e4a1b64c461a82a6d50e8613a203022ebf7","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":1780075915},{"id":"bc37be17-d123-4e57-bc98-bf875011fdea","executor_address":"0xcb130e4a1b64c461a82a6d50e8613a203022ebf7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780075876},{"id":"77e4a713-373a-4cab-b339-c7505c51bdd4","executor_address":"0xcb130e4a1b64c461a82a6d50e8613a203022ebf7","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1780075841},{"id":"bee665d0-456a-479c-8ab3-c1a329c3d9cf","executor_address":"0xcb130e4a1b64c461a82a6d50e8613a203022ebf7","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":1780075500},{"id":"a23382c5-98af-4a62-8a7b-ab480e3d9fd3","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":1779976234},{"id":"587d706d-b09d-4855-84b9-d148d7623e2b","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":1779823132},{"id":"7157785b-fae4-477a-b416-c3241f3b99af","executor_address":"0x820a7bf90d944bb26bfd9b62ab172fc3a0829cb9","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779551952},{"id":"08ac4e18-ab8f-4442-b3ed-9905f8178d92","executor_address":"0x820a7bf90d944bb26bfd9b62ab172fc3a0829cb9","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":1779551785},{"id":"8e4070e7-acc3-481c-9873-78a972626d86","executor_address":"0x820a7bf90d944bb26bfd9b62ab172fc3a0829cb9","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779551594},{"id":"6347d8ab-9b2c-4642-af8c-79e2aa4e2fd4","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779517005},{"id":"e1d9a035-4a57-4e6b-b01f-be619cd5a41b","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779516934},{"id":"9d879bd4-3803-4bfc-96cd-8fa60b3123df","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","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":1779516859},{"id":"c3571e7b-2756-434a-bf79-96c3260c2e4f","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779516775},{"id":"f13d2490-4c53-4800-8f02-8888eb283855","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779516652},{"id":"6f2b137b-b3f0-4986-9c8c-a74d5db3cfe8","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779516549},{"id":"93dd8049-61dd-4ccb-ab0a-8707de0ae901","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779515807},{"id":"b873c6ce-e063-4353-bdfd-cec024863745","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779515659},{"id":"07ac93e7-e014-4fa4-be29-d5b6775519b9","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","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":1779515569},{"id":"e05d8a4f-bdbd-4bef-940b-bb23d96abc39","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1779514612},{"id":"bf77804c-2d9b-44ea-aab5-8d9c14a5a3fe","executor_address":"0x38ca5e1a9641630b38fe2d537ee9e2d781dfda44","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":1779514462},{"id":"14a13568-b3ed-4212-99ae-96a189458c33","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":1779361450},{"id":"3801fed2-42f5-4a5d-9b80-aff90875891d","executor_address":"0x0db3e43a4773628dfd8101546eef6e645411f4f3","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":1778785045},{"id":"265f1cb5-b90b-4370-9741-a59b0b621ed5","executor_address":"0x0db3e43a4773628dfd8101546eef6e645411f4f3","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":1778784773},{"id":"e61b858a-37e1-46ca-9e0f-5abbe88d4ea0","executor_address":"0x0db3e43a4773628dfd8101546eef6e645411f4f3","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778784699},{"id":"458631fd-d93a-42ad-b8c5-e0d8be898c0d","executor_address":"0x0db3e43a4773628dfd8101546eef6e645411f4f3","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778784601},{"id":"ff442c13-9e76-4630-83d6-7a340f60b94f","executor_address":"0x28f4a1deecc6248f9b028ac2d8bb675a71b71d60","verification_result":{"passed":false,"reason":"Verification error: Cannot read properties of undefined (reading 'length')","details":{"checksRun":[],"checksFailed":["ipfs_fetch"]}},"passed":false,"created_at":1778784069}]}