docs/miner/README.md:125-135).
Check submission status
Read a submission’s status through the bridge status route (src/platform_network/master/app_proxy.py:514-518):
docs/miner/README.md:44-51):
Submission lifecycle (Agent Challenge)
An Agent Challenge submission moves through these public states (docs/miner/README.md:68):
waiting_miner_env the submission pauses at the public state
Waiting for miner action. You must save env vars or confirm none are needed, then launch
(docs/miner/README.md:66-97). See Submitting your work for the env
routes.
Watch the leaderboard
List submissions and the leaderboard through the proxy (docs/miner/README.md:50,62):
/challenges/agent-challenge/submissionsreturns the latest100submissions, newest-first (docs/miner/README.md:62)./challenges/agent-challenge/leaderboardreturns one best-scoring row per hotkey (docs/miner/README.md:62).
Subnet health and registry
The proxy serves health and the registry/weights reads (README.md:423-426):
| Endpoint | Returns | Source |
|---|---|---|
/health | proxy liveness {"status":"ok"} | src/platform_network/master/app_proxy.py:320-322 |
/v1/registry | active challenge registry | README.md:425 |
/v1/weights/latest | latest normalized weight vector | README.md:426 |
Where to verify locally
On a local single-node bring-up, the proxy is on host port18080 and the broker on
18082 (README.md:262-264). The challenges are overlay-internal, so reach them through
the proxy rather than a direct host port (README.md:268-285):
Next steps
Troubleshooting
Diagnose failed submissions.
Submitting your work
Review the upload protocol.