X
The maze is in the contract. The contract grades the run.

The path AI walked, as a labyrinth the chain checks

A first-person maze with one way through. Along it, twelve stations: 1950 Turing asks the question, 1956 Dartmouth names the field, 1997 Deep Blue, 2017 the transformer, 2022 ChatGPT. The map and the stations live in a contract on Robinhood Chain. Your browser reads them out of chain state, you walk, and every cell you cross is a move. At the exit you hand the moves to the contract: it walks them over its own map, refuses a step into a wall or a station out of order, and records you.

run in progress
grid31 × 31 · 961 bytes
pathone, 260 moves
stations12 · 1950 → 2022
judgeverify(bytes) in the EVM
finishes
record
$AIHRsoon

The labyrinth

31 × 31 cells, one path, twelve stationsreading…
stations0 / 12
moves0
time0:00
next
W A S D move and turn · Q E strafe · mouse look · on a phone, left half moves and right half turns

Stations

in the order the path passes them

Hall

everyone the contract has let out
reading the chain…

How it works

Map

31 × 31 cells, one byte each, 961 bytes in contract storage. Carved by a seeded backtracker, so the maze is perfect: exactly one path from the entrance to the exit, no loops. The twelve stations sit on that path, spaced along it, which is why they can only be reached in order.

Moves

Each cell you cross is one byte: 0 up, 1 right, 2 down, 3 left. Wandering into dead ends adds moves. The clean solution is 260 moves; fewer is impossible.

Judge

verify(moves) walks the bytes over the stored map inside the EVM and returns whether it finished, how many steps, how many stations were passed and where it stopped. submit(moves) records a finish and a personal best; the fewest steps by anyone is the record. Nothing else is stored.

wallA step into a wall or off the edge ends the walk there. The contract tells you the cell.
orderA run that reaches the exit having skipped a station is not a finish. In a perfect maze this cannot happen by walking; it only happens if the moves are forged.
teleportEvery run starts at the entrance. A run that begins somewhere else walks into a wall on its first move.
lengthMore than 6,000 moves is refused. The clean path is 260.

Proof

One contract, no owner, no setters, nothing to withdraw. The map cannot change after deployment. Tested on a fork of Robinhood Chain mainnet: the solution verifies, a detour verifies with more steps, a step into a wall, off the edge, a skipped first move, an empty run and a run over 6,000 moves are all refused, personal bests and the record update the way the docs say.

$AIHRsoon

Choose a wallet