AETHON DOCS
LAUNCH APP →
DEVELOPER DOCS

Build on Aethon.

Submit GPU compute jobs in four lines. Pay in $AETHON, settle per-second on Solana, burn on completion — no cloud accounts, no billing dashboards.

Introduction

Aethon is a distributed GPU network operating system. Instead of relying on a single high-end machine, it aggregates compute from independent NVIDIA nodes and orchestrates execution through a central coordination layer — turning idle silicon into one programmable AI compute layer.

Non-custodial
Your wallet signs every transaction.
Per-second
Stop paying when your job stops.
On-chain proof
Every job & burn is verifiable.

Quickstart

Install the SDK:

bash
npm install @aethon/sdk

Submit your first job:

compute.ts
import { Aethon } from "@aethon/sdk";

const aethon = new Aethon({ wallet: process.env.SOLANA_WALLET, cluster: "mainnet-beta" });

const job = await aethon.compute({
  gpu: "nvidia-h100-pcie-80gb",
  script: "./train_model.py",
  duration: 3600,
});

console.log(job.id, job.cost, job.burnTx);

GPU types

SLUGVRAMTFLOPSMARKET$AETHON
{{ g.slug }}{{ g.vram }}{{ g.tflops }}{{ g.market }}{{ g.token }}

SDK reference

{{ m.sig }}{{ m.desc }}

Pricing & burn

Cost is billed per second at the $AETHON rate. On job completion, ~1% of the spent tokens are permanently burned via the SPL burn instruction. Deflationary pressure scales with network usage.

cost = rate_per_sec × seconds_used
burned = cost × 0.01 → SPL burn on settlement

Run a node

Contribute your NVIDIA GPU and earn $AETHON by reputation, uptime and completed jobs. Download the node client for your OS, then register from the terminal.

⬇ macOSaethon-node · arm64 · 48 MB ⬇ Linuxx86_64 · .deb / .rpm ⬇ Windowsx64 · .exe installer

Then register your GPU and start earning:

bash
aethon node register --gpu h100-pcie-80gb \
  --region us-east-1 --wallet ~/.config/solana/id.json
aethon node start

FAQ

{{ f.q }}
{{ f.a }}