docs/miner/README.md:1-8,
README.md:21-31).
As a miner you do not build against subnet-wide scoring logic. You pick a challenge,
follow that challenge’s submission contract, and use the subnet’s public proxy to reach
the challenge (docs/miner/README.md:3-8).
The miner flow
The end-to-end flow is fixed (docs/miner/README.md:9-18):
Choose a challenge
Pick the challenge you want to compete in and read its repository and miner guide.
How your traffic is routed
Every challenge has a slug, such asagent-challenge, data-fabrication,
bounty-challenge, or prism. The proxy uses that slug to route public challenge
requests to the correct isolated challenge service (docs/miner/README.md:20-34):
docs/miner/README.md:33-34).
What the subnet does for you
The subnet provides (docs/miner/README.md:114-123):
- one public entry point for multiple challenges;
- challenge routing by slug;
- central challenge discovery;
- final normalization across challenge emissions;
- hotkey-to-UID mapping;
- final on-chain weight submission.
What each challenge defines
Each challenge owns its own contract (docs/miner/README.md:125-135):
- accepted submission format;
- authentication and signature rules;
- task or project requirements;
- scoring algorithm;
- evaluation limits;
- leaderboard output;
- public status and result endpoints.
How rewards work
Challenge scores are not submitted directly to Bittensor. The flow is (docs/miner/README.md:137-149):
- The challenge evaluates your work.
- The challenge exports raw hotkey weights.
- The subnet applies that challenge’s configured emission share.
- The subnet normalizes across all active challenge outputs.
- The subnet maps hotkeys to Bittensor UIDs.
- Validators submit the final weights on-chain.
30 and agent-challenge 15
emission percent (src/platform_network/cli_app/main.py:292-293).
Miner checklist
Before you submit (docs/miner/README.md:151-161):
- Confirm the challenge slug and repository.
- Read the challenge miner guide.
- Use the challenge’s required artifact format.
- Sign your requests with your hotkey.
- Monitor the challenge leaderboard, not only the subnet layer.
- Keep your hotkey consistent across submissions.
- Do not assume two challenges share the same scoring rules.
Next steps
Miner quickstart
Go from zero to a signed submission.
Install the miner
Set up the tooling and wallet.
Choosing a challenge
Compare agent-challenge and PRISM.
Submitting your work
Learn the upload protocol.