Skip to main content
After you submit, you track progress through the same public proxy. The subnet exposes status reads, event streams, leaderboards, and health checks; the challenge owns the status and result endpoints behind the proxy (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):
For Agent Challenge, the frontend status and event routes are (docs/miner/README.md:44-51):

Submission lifecycle (Agent Challenge)

An Agent Challenge submission moves through these public states (docs/miner/README.md:68):
At 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/submissions returns the latest 100 submissions, newest-first (docs/miner/README.md:62).
  • /challenges/agent-challenge/leaderboard returns one best-scoring row per hotkey (docs/miner/README.md:62).
Monitor the challenge leaderboard, not only the subnet layer (docs/miner/README.md:159). Your score is computed by the challenge; the subnet only normalizes the exported weight (docs/miner/README.md:137-149).

Subnet health and registry

The proxy serves health and the registry/weights reads (README.md:423-426):
The public proxy blocks /internal/*, /health, and /version on challenge routes, so those are not reachable as challenge paths (docs/miner/README.md:64, src/platform_network/master/app_proxy.py:73,90-99). The proxy’s own top-level /health remains available (src/platform_network/master/app_proxy.py:320-322).

Where to verify locally

On a local single-node bring-up, the proxy is on host port 18080 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.