For GPU Providers
Step-by-step guide to becoming a GPU Computing Provider on Swan 2.0 Inference Cloud
This guide walks through turning your GPU into an AI inference endpoint on Swan Chain — from starting a local model server, to installing the computing-provider agent, to earning stablecoin revenue from real inference traffic.
0. Check prerequisites
Providers connect outbound to Swan Inference over WebSocket — no public IP, domain, or SSL setup is required. You just need a capable GPU and one of two supported OS/inference-engine stacks:
Legacy GPUs (TESLA P4, GTX 1050 Ti, anything < 8 GB VRAM) cannot serve modern inference workloads and will not receive traffic. Full tier-to-model mapping is in Hardware Tiers.
You'll also need:
Go 1.22+ to build the
computing-provideragentDocker 24.0+ with the NVIDIA Container Toolkit (Linux only)
A funded wallet or credit card for collateral (step 5)
1. Start a model server
Your GPU needs an OpenAI-compatible inference server running locally. Swan Inference will route requests to it via the computing-provider agent.
Linux (NVIDIA) — SGLang
Verify it's healthy: curl http://localhost:30000/v1/models.
macOS (Apple Silicon) — Ollama
Verify it's healthy: curl http://localhost:11434/api/tags.
2. Install the computing-provider agent
Clone and build from source (mainnet):
Full install details including the NVIDIA Container Toolkit setup are in the computing-provider README.
3. Run the setup wizard
The wizard creates your provider account (or logs you into an existing one), auto-discovers your running model server, and writes config.toml and models.json:
A typical run looks like this (macOS + Ollama):
Save the sk-prov-* key — it's shown once and authenticates this provider to the network.
If you already have a sk-prov-* key (for example, from the web signup at inference.swanchain.io/provider-signup), pass it directly:
Config files land in ~/.swan/computing/:
config.toml— WebSocket URL, API key, node namemodels.json— mapping from Swan Inference model IDs to your local endpoints
Configuration reference
The wizard writes sensible defaults, but if it failed to discover your model server, you run a non-standard port, or you want to serve multiple models, edit these files directly.
Provider config (~/.swan/computing/config.toml)
Model endpoints (~/.swan/computing/models.json)
endpoint
Yes
URL of your local inference server (SGLang, vLLM, Ollama)
gpu_memory
Yes
GPU VRAM used by this model in MB
category
Yes
Model type: text-generation, image, embedding, audio
local_model
No
Local model name if different from the key (e.g., Ollama's qwen2.5:7b)
api_key
No
API key if your model server requires authentication
context_length
Recommended
The context window your backend really serves. Auto-detected from max_model_len on vLLM/SGLang only; set it explicitly for Ollama, llama.cpp or any proxy — see the Context-Window Integrity notice
format, quantization
Recommended
Weight format (fp16, awq, gptq, gguf) and quantization detail (q4_k_m, w4a16, …). Consumers see these on the model page next to your 30-day uptime and typical time-to-first-token, and can pin requests to your offering by provider ID — so declaring them honestly is how you win explicit traffic
The keys in models.json must match valid Swan Inference model IDs exactly, including the organisation prefix (meta-llama/Llama-3.2-3B, not llama-3.2-3b). Run computing-provider models catalog or check the model catalog for the full list.
The agent watches models.json and hot-reloads on change — no restart needed. You can also force a reload:
4. Start the provider and pass benchmarks
Run the agent:
Then check your status:
You'll move through these stages automatically:
Connect
The agent opens a WebSocket to Swan Inference, registers your models, and the registration benchmark (math, code, latency) runs
Minutes
Collateral
Deposit on-chain or by card (step 5)
Minutes to confirm
Activation
Automatic once collateral is confirmed, your GPU passes eligibility (≥ 8 GB VRAM, compute capability 8.0+) and the benchmark has passed. No admin approval is required; computing-provider inference request-approval exists as a parallel path if you want a human to look
Immediate after the three checks
Probation
The first 24 hours as active. Keep at least 50% uptime; otherwise the provider returns to pending and must re-benchmark
24 hours

5. Deposit collateral
Collateral is a refundable deposit that backs the slashing rules; activation waits for it. Deposit on-chain from your owner wallet, or pay by card:
Ethereum
1
USDC
20 USDC
0x1dEe92Da8fc4878795418aEde112100A57286a9a
Base
8453
USDC
20 USDC
0x7fac98B02f4Fcda9Ac49508eb2E97E4BE4fecE9B
Swan Chain
254
SWAN
35,000 SWAN
0x7fac98B02f4Fcda9Ac49508eb2E97E4BE4fecE9B
Card (Stripe)
—
USD
shown at checkout
—

Refunds have a 7-day waiting period and suspend routing until complete. Details, lifecycle and slashing rules: Earnings and Collateral.
6. Monitor earnings and uptime
The Provider dashboard at inference.swanchain.io/dashboard shows live earnings, request counts, and benchmark history.

For a local view, the agent ships its own web dashboard:
Set where payouts go:
What you earn, and how you get paid
Each request credits you
tokens × payout pricefor that model. Payout prices are shown in the dashboard's model market and in the public catalog; at the time of writing they are 90% of the consumer price for almost every model. See Computing Provider Income.Token Plan traffic is paid at the same rate but pro-rated against the plan pool at month end.
Request a payout to your beneficiary wallet from Payments: minimum $10, flat $1 fee, one request per chain per hour. Set the wallet with
computing-provider inference set-beneficiary 0x…, or convert earnings into inference credit instead.
Provider status values
pending
yes
no
Awaiting collateral, GPU eligibility or benchmark
under_review
yes
no
You requested manual review
approved
yes
no
Admin approved, awaiting collateral
activating
yes
no
Collateral verified, activation in progress
active
yes
yes
Serving and earning; shown as "Active (Probation)" for the first 24 h
suspended
no
no
Suspended by admin, or during a collateral refund
rejected
no
no
Application rejected
offline
no
no
Connection lost
computing-provider inference status prints your status, the step you are on, and the next action.
Staying verified
After activation the platform keeps checking that you serve what you registered: periodic benchmarks (results expire after 30 days), fingerprint challenges against your weight files, fixed-seed and logprob comparisons, and context-window probes. Results move a trust score that weights how much traffic you receive; repeated failures trip a circuit breaker until you recover, and verified misrepresentation can be slashed from collateral with a 48-hour appeal. computing-provider selfcheck catches the quiet failures — a model advertised but not served, a context window larger than the backend really accepts, a backend rejecting requests — before they cost you traffic.
Switching or adding models
Edit ~/.swan/computing/models.json — the agent watches this file and hot-reloads without restarting. Start additional model servers on different ports and add them all to the JSON. Full walkthrough with multi-GPU pinning is in the computing-provider README.
Troubleshooting
invalid provider API key
Verify key starts with sk-prov- and check ApiKey in ~/.swan/computing/config.toml
WebSocket connection failed
Confirm outbound port 443 is open; URL must be wss:// not http://
Provider online but no requests
Model name mismatch — --served-model-name must exactly match the key in models.json and a model ID in the catalog
could not select device driver "nvidia"
Install the NVIDIA Container Toolkit; see computing-provider README
Stuck in pending
Provider needs collateral + passing benchmark + hardware check. Run computing-provider inference status to see which condition is missing
Full troubleshooting catalog: computing-provider README — FAQ.
Next steps
The computing-provider repository carries the full configuration reference, troubleshooting guide, SGLang deployment and tuning notes, and Apple Silicon support.
Provider Onboarding — hardware tiers, revenue split, slashing rules
Computing Provider Income — contribution score formula and reward distribution
Computing Provider Collateral — required amounts and refund process
Inference Marketplace — how pricing, routing, and settlement work under the hood
Questions? Reach the team on Discord or open an issue on the computing-provider repo.
Last updated