Download Dawn. Earn while your laptop sleeps.
A 14 MB native agent. Detects when your machine is idle, runs sandboxed micro-jobs, and settles payouts in USDC on Base. Yields instantly when you come back.
macOS 12 Monterey or newer · Apple Silicon & Intel
DownloadFrom install to earning.
Grab the build for your OS above and unpack it. It's an early-access CLI — the bundled README has the one-line run command.
Open the app and paste a Base address (or generate one in-app). All payouts settle in USDC to this wallet.
Battery threshold, thermal limits, on/off schedule. Defaults are safe — the agent only runs when you're not.
Dawn picks up micro-jobs while you're away and yields the moment you return. Earnings claimable any time.
Runs on almost anything.
Your machine. Your rules.
Submitting jobs instead of running them?
Skip the desktop app. Use the Dawn SDK to push jobs onto the network from your backend — AI inference, rendering, ETL, anything you can compile to WebAssembly. Pay per job in USDC.
View the SDK on GitHubimport { Dawn } from "@dawn/sdk";
const dawn = new Dawn({ wallet });
const job = await dawn.jobs.submit({
type: "inference",
model: "llama-3.1-8b",
input: prompt,
maxPayout: "0.002", // USDC
});
const result = await job.wait();