Share your GPU on the GhostNexus decentralized cloud and earn passive income.
pip install ghostnexus-node
export GHOSTNEXUS_PROVIDER_API_KEY="gn_live_YOUR_KEY"
ghostnexus-nodeRTX 4090 earns ~$0.35/hr at $0.50/hr pricing (70% payout). 24/7 passive income from idle GPU time.
| GPU | GhostNexus rate | Your cut (70%) | Monthly (24/7) |
|---|---|---|---|
| RTX 4090 | $0.50/hr | $0.35/hr | ~$252 |
| RTX 4080 | $0.40/hr | $0.28/hr | ~$202 |
| RTX 3090 | $0.30/hr | $0.21/hr | ~$151 |
| A100 40GB | $1.50/hr | $1.05/hr | ~$756 |
Earnings depend on utilization. Sign up at ghostnexus.net/start.
pip install ghostnexus-nodeSign up at ghostnexus.net and go to Dashboard → Provider → Get API Key.
export GHOSTNEXUS_PROVIDER_API_KEY="gn_live_YOUR_KEY"
ghostnexus-node| Variable | Default | Description |
|---|---|---|
GHOSTNEXUS_PROVIDER_API_KEY |
(required) | Your provider API key |
GHOSTNEXUS_WS_URL |
wss://ghostnexus.net/ws/provider |
WebSocket endpoint |
GHOSTNEXUS_DOCKER_IMAGE |
python:3.11-slim |
Docker image for job sandboxing |
GHOSTNEXUS_JOB_MEMORY |
512m |
Memory limit per job |
GHOSTNEXUS_JOB_CPUS |
1.0 |
CPU limit per job |
GHOSTNEXUS_GPU_PASSTHROUGH |
false |
Pass GPU into containers |
GHOSTNEXUS_JOB_TIMEOUT |
300 |
Max job duration (seconds) |
LOG_LEVEL |
INFO |
Logging verbosity |
export GHOSTNEXUS_GPU_PASSTHROUGH=true
export GHOSTNEXUS_JOB_MEMORY=8g
export GHOSTNEXUS_JOB_CPUS=4.0
export GHOSTNEXUS_JOB_TIMEOUT=3600Jobs run in Docker containers with strict sandboxing:
--network=none— no internet access--read-only— immutable filesystem--cap-drop=ALL— no Linux capabilities--security-opt no-new-privileges:true— no privilege escalation--user 65534— runs asnobody- Hard memory + CPU limits via cgroups
Prerequisites: Python 3.9+, Docker, NVIDIA GPU + drivers, NVIDIA Container Toolkit (for GPU passthrough)
[Unit]
Description=GhostNexus Provider Node
After=network.target docker.service
[Service]
Type=simple
Environment=GHOSTNEXUS_PROVIDER_API_KEY=gn_live_YOUR_KEY
Environment=GHOSTNEXUS_GPU_PASSTHROUGH=true
Environment=GHOSTNEXUS_JOB_MEMORY=8g
Environment=GHOSTNEXUS_JOB_CPUS=4.0
ExecStart=/usr/local/bin/ghostnexus-node
Restart=always
RestartSec=10
[Install]
WantedBy=multi-user.targetsudo systemctl enable ghostnexus-node && sudo systemctl start ghostnexus-nodeCreate start_provider.bat:
@echo off
set GHOSTNEXUS_PROVIDER_API_KEY=gn_live_YOUR_KEY
set GHOSTNEXUS_GPU_PASSTHROUGH=true
set GHOSTNEXUS_JOB_MEMORY=8g
pythonw -m ghostnexus_nodeAdd to shell:startup for auto-run on boot.
git clone https://github.com/Milaskinger/ghostnexus-node
cd ghostnexus-node
pip install -e ".[dev]"- ghostnexus.net/start — Become a provider
- PyPI — Package
- ghostnexus-python — Client SDK
- contact@ghostnexus.net — Support
MIT — see LICENSE.