Contribute your GPU (or CPU) to the nwo-agi distributed supercomputer over the Hyperspace network. METASTATE agents run on your hardware instead of the Space's CPU - and you earn USDC on Base for every cycle, settled through the 35 / 35 / 30 split.
Run the nwo-agi client on your machine, share idle VRAM, and earn USDC when METASTATE agents run inference on your hardware. Paid through the 35/35/30 splitter on Base.
Instead of the Space's CPU, METASTATE agents dispatch heavy jobs (large-model inference, big regressions) to the pooled network - faster, and models too big for one machine become possible.
Beginners connect a wallet, accept terms, and copy one command - no coding. Advanced users and robots wire the Python API or CLI directly into a fleet.
Pick your path. The steps adapt to your experience level.
Click Connect Wallet at the top. Use MetaMask or any browser wallet on Base. This is the wallet that receives your USDC earnings.
Scroll to Register a node below, fill in your GPU memory and RAM (rough numbers are fine), and click register. A terms & conditions box appears - read and accept it to continue.
Open your terminal (on Windows: "Command Prompt"; Mac: "Terminal") and paste: pip install nwo-agi. This needs Python installed - if you don't have it, get it from python.org first.
After registering, your personal start command appears. Copy it, paste it into the terminal, and press Enter. Your node joins the mesh.
Come back here - your dashboard now shows earnings and GPU usage as agents run on your machine. Leave the terminal running to keep earning.
pip install nwo-agi (or pip install git+https://github.com/RedCiprianPater/nwo-agi.git for dev).
nwo-agi --robot-id "NODE-001" --wallet "0x..." --gpu-memory 16 --ram 32
Construct NWOBridge(robot_id, wallet, hardware=RobotHardware(...)), await bridge.start(), then await bridge.inference(model, prompt) and await bridge.get_earnings().
Point the Space at your node by enabling the bridge (NWOAGI_ENABLE=1) so agents dispatch to the network via /v1/compute/inference.
import asyncio
from nwo_agi import NWOBridge, RobotHardware
hw = RobotHardware(cpu_cores=8, gpu_memory_gb=16, ram_gb=32, robot_type="workstation")
bridge = NWOBridge(robot_id="NODE-001", wallet="0xYourWallet", hardware=hw)
async def main():
await bridge.start()
print(await bridge.get_earnings())
asyncio.run(main())POST /v1/agents/register with wallet + DID. Robots use the same soul-bound identity primitive as the NWO Cardiac registry.
Each robot runs the nwo-agi client with its own wallet and hardware profile; idle VRAM is pooled and earns per the weights above.
Agents call POST /v1/compute/inference to run models too large for one node - sharded across the mesh (pipeline + tensor parallelism).
Compute is paid via the splitter; results can be anchored with /v1/poi/verify and /v1/anchor/prepare for verifiable, on-chain attestation.
curl -X POST https://cpater-metastate.hf.space/v1/compute/inference \
-H "Content-Type: application/json" \
-d '{"model":"Qwen/Qwen2.5-32B-Instruct","prompt":"plan navigation from sensor data"}'Tell the network what you're contributing. Requires a connected wallet and accepted terms.
Please review and accept before registering a compute node.
1. Voluntary contribution. You are voluntarily sharing your own hardware's spare capacity with the nwo-agi distributed network. You may stop at any time by closing the client.
2. Compute & rewards. Your node may execute inference, training, storage, validation, or relay tasks. Rewards are paid in USDC on Base through the 35/35/30 splitter, proportional to verified contribution. Earnings are variable and not guaranteed.
3. Your responsibility. You are responsible for your own hardware, electricity, cooling, network, and any local taxes. Running compute generates heat and power draw.
4. Keys & security. You connect a wallet address only. You never share your seed phrase or private keys with METASTATE or this page. The client runs locally on your machine.
5. No warranty. The network is provided "as is" without warranty. METASTATE/NWO is not liable for hardware wear, downtime, lost earnings, or network conditions.
6. Acceptable use. You agree not to run malicious workloads, manipulate rewards, or interfere with other nodes. Nodes violating this may be removed.
7. Open-source. The nwo-agi client is MIT-licensed; you can inspect exactly what runs on your machine.