Skip to Content
Getting StartedGetting Started for Providers

Getting Started for Providers

Turn your idle hardware into a passive income stream by joining the NeoEngine network.

Prerequisites

  • Computer with at least 4 CPU cores and 8GB RAM
  • Stable internet connection (50+ Mbps recommended)
  • Solana wallet with NGNX tokens for staking
  • macOS 12+, Ubuntu 20.04+, or Windows 10+

Quick Start

Install the Daemon

# macOS / Linux curl -fsSL https://get.neoengine.dev | sh # Windows (PowerShell) irm https://get.neoengine.dev/windows | iex

Authenticate

neoengine auth login

Stake Tokens

Minimum 100 NGNX to start as a Tier 0 provider.

neoengine stake deposit 100

Register Your Node

neoengine provider register

This detects your hardware and registers it on-chain.

Start the Daemon

neoengine daemon start

Your machine is now accepting jobs.

Hardware Detection

When you register, NeoEngine automatically detects:

  • CPU model, cores, and clock speed
  • Total and available RAM
  • GPU (if present) including VRAM
  • Storage capacity and type (SSD/HDD)
  • Network bandwidth
# View detected hardware neoengine provider hardware

Pricing Your Resources

Set competitive rates to attract jobs:

neoengine provider pricing set \ --cpu 0.02 \ --memory 0.01 \ --gpu 0.75 \ --storage 0.002

Check market rates with neoengine market prices before setting your own.

Monitoring

View Your Status

neoengine provider status

Shows:

  • Current tier and reputation
  • Stake amount
  • Jobs completed
  • Earnings to date
  • Uptime percentage

View Active Jobs

neoengine job list --active

View Earnings

neoengine wallet earnings

Running as a Service

macOS (launchd)

neoengine daemon install

Linux (systemd)

sudo neoengine daemon install --system sudo systemctl enable neoengine sudo systemctl start neoengine

Windows

neoengine daemon install --service

GPU Providers

If you have a supported GPU:

# Verify GPU is detected neoengine provider hardware --gpu # Enable GPU jobs neoengine provider config set gpu.enabled true

Supported GPUs:

  • NVIDIA (CUDA 11+) — Full support
  • AMD (ROCm) — Coming soon
  • Apple Silicon (Metal) — macOS only

Next Steps