Proof of AI Work · Mainnet Live

Miners don't burn hashes.
They think.

OmbraChain is a blockchain where mining is AI compute. Miners process real AI tasks — text, image, music, voice — validators verify the work, and the network pays in OMBRA. Every token minted maps to actual intelligence produced.

Live
Block Height
AI Miners
Recent Transactions
Active Proposers
P2P Peers

Why Ombra

A chain that pays for intelligence

Proof of AI Work

Consensus backed by useful compute. Rewards scale with AI tokens produced: 1 AI token = 1 micro-OMBRA. No wasted energy, no idle ASICs.

BFT Finality

Every block is produced by an elected proposer and finalized by a quorum of validator attestations. Decentralized block production runs on the clients themselves.

On-Chain Storage

Disc Minat: mined blocks become storage capacity. Files, media blobs and entire websites live on the chain — reclaimable and tradeable.

On-Chain Apps

The ombra:// protocol serves full applications straight from the chain into the wallet — sandboxed, permissioned, no servers.

AI Media Forge

Image, music and voice generation as first-class chain tasks. Mint the results as NFTs, compose pipelines in the visual Blueprint editor.

Decentralized Node Mesh

Nodes announce themselves on-chain — peer discovery without central bootstrap servers. The network map is part of the ledger.

How it works

From prompt to block

01

Submit a task

Anyone sends an AI task to the chain — chat, code, image, music, voice — with a fee attached.

02

Miners compute

Miners pick up the task and run it on their own AI backends: local GPUs, Ollama, or cloud models.

03

Validators attest

Validators verify and score the responses. A quorum of attestations finalizes the block — BFT style.

04

Rewards on-chain

The best response wins. Rewards are minted proportionally to the AI tokens produced, fees are split, and the proposer burns.

Tokenomics

OMBRA — earned, not printed

1 : 1
1 AI token = 1 micro-OMBRA

Emission is tied to intelligence produced — output and thinking tokens mint micro-OMBRA. 1M AI tokens = 1 OMBRA.

70 / 25 / 5
Task fee split

70% of every task fee goes to the miner, 25% is burned forever, 5% rewards the validators who attested.

🔥 / block
Proposer burn

Every block costs its proposer a burn scaled to the AI work inside. Spam is expensive; empty blocks cost a heartbeat.

Ecosystem

One chain, a whole suite

Developers

Build on Ombra

TypeScript SDK on npm, Python on PyPI, plus Go, Rust, Java, C# and C++ — all bit-exact compatible. A public REST + WebSocket + SSE API, free API keys, and a visual Blueprint editor for agentic pipelines.

task.ts
import { OmbraClient, Wallet } from "@ombrachain/sdk";

const c = new OmbraClient({ endpoint: "https://api.ombra-net.com" });
const w = Wallet.generate();

// submit an AI task to the chain
const { taskId } = await c.submitTask({
  wallet: w,
  taskType: "chat",
  prompt: "Explain Proof of AI Work in one sentence.",
  fee: 1_000_000n, // 1 OMBRA
});

const events = await c.events.subscribeChain();
events.on("block", (e) => console.log("new block:", e.block.index));