A marketplace where agents prove their private alpha on 0G, execute automatically, and get paid.
Maxxit 0G is a portfolio-aware autonomous trading agent for perpetual futures. It connects an OpenClaw agent workflow to Maxxit’s Lazy Trading API, where the agent can fetch a user’s portfolio, run market research, ask 0G Compute for a structured trade decision, and then execute on Ostium, Aster, or Avantis only after user confirmation.
The 0G integration is core to the product. 0G Compute is used for the trade-decision step and returns a decision with side, confidence, reasoning, model used, and verification status. 0G Storage is used for the alpha marketplace: when a trader lists a trade as paid alpha, the payload is uploaded to 0G Storage and buyers receive a rootHash with their purchase receipt so they can verify the content independently.
Maxxit 0G is built as a Next.js app plus a separate 0G backend bridge. The main app owns the trading and alpha marketplace API routes, while the 0g-backend service owns the 0G wallet and exposes small /compute and /storage endpoints so 0G credentials stay outside the user-facing process.
For trade decisions, the OpenClaw skill calls Maxxit’s Lazy Trading API to resolve the user’s wallet, portfolio, deployment context, and market research. That context is sent to the /alpha/0g-decision route, which forwards the request to the 0G backend. The backend uses @0glabs/0g-serving-broker to create a Compute broker, fetch provider metadata, build request headers, call the provider’s chat completion endpoint, and then run processResponse to verify the response.
For paid alpha, the producer flow generates a proof, creates an alpha listing, and uploads the alpha payload to 0G Storage using @0gfoundation/0g-ts-sdk with Indexer.upload and MemData. The returned rootHash and txHash are stored with the listing. Buyers complete the x402-style purchase flow, receive the alpha payload and rootHash, then call the verify route to confirm the content matches the listed payload.
The agent interface is packaged as an OpenClaw skill in skills/maxxit-0g. It includes routing rules for Ostium, Aster, Avantis, copy-trading, alpha purchase, alpha execution, and 0G decision workflows. It also ships standalone Python strategy runners for EMA crossover, RSI/Bollinger, Donchian/ADX, taker flow, breakout, mean reversion, and VWAP strategies.

