Staging (Testnet)
Lium runs a parallel staging environment on Bittensor testnet Subnet 37 so you can validate your provider setup without spending mainnet TAO. Use it to test hardware, debug node registration, or try new node configs before pointing them at production Subnet 51.
Test TAO is free from the Bittensor testnet faucet but cannot be exchanged for real TAO and earns no real rewards. The staging environment is for verification only.
What's different from mainnet​
| Mainnet (production) | Staging (testnet) | |
|---|---|---|
| Bittensor subnet | 51 | 37 |
| Bittensor network | finney | test |
| Provider Portal | provider.lium.io | provider.staging.lium.io |
| Renter UI | lium.io | staging.lium.io |
| Validator hotkey | 5F7X5UpKSr26KU3jKfpLmT8kuKtBNyHhEnfS8xtxPCqCb13p | 5DHgdomxxHSQf7neJWcagvGhTMKpqvKWwuprEaFF8C653qty |
| TAO source | exchange / wallet transfer | testnet faucet |
Get started in 5 min​
Step 1 — Get test TAO and register on subnet 37​
# Request test TAO (rate-limited; rerun if your balance is still 0)
btcli wallet faucet --wallet.name <wallet> --network test
# Register your hotkey on testnet subnet 37
btcli subnet register --netuid 37 --network test \
--wallet.name <wallet> --wallet.hotkey <hotkey>
Step 2 — Point the provider at testnet​
If you self-host the coordinator, set these two values in neurons/miners/.env before docker compose up -d:
BITTENSOR_NETUID=37
BITTENSOR_NETWORK=test
Everything else in Self-Hosted Provider Setup works the same.
Step 3 — Sign in to the staging Provider Portal​
- Add your testnet hotkey to a supported wallet extension — e.g. the Polkadot.js extension or the Bittensor Wallet extension.
- Sign in at provider.staging.lium.io/signature-login.
- Add your GPU node from the staging portal — same flow as Node Quickstart, just registered against the staging environment.
If you skip the portal and use add-executor directly (see Self-Hosted Provider Setup → Add a node from the CLI), pass the staging validator hotkey explicitly:
--validator 5DHgdomxxHSQf7neJWcagvGhTMKpqvKWwuprEaFF8C653qty
To exercise the rental side end-to-end, place a test rental from staging.lium.io using a separate testnet wallet.
Next steps​
- Quickstart — repeat the flow on mainnet once staging looks green.
- Self-Hosted Provider Setup — full coordinator setup, applies the same way to either network.
- Node Quickstart — bring your first GPU online.