Most crypto and AI projects assemble themselves out of other people's infrastructure. They rent an RPC endpoint, call a third-party price API, wrap a hosted model, and bolt on a token. Circuit is unusual because it builds the whole stack itself, from the validator plugin that reads the chain to the inference engine that does the reasoning to the payment rail that ties the economics together. The result is a single, vertically integrated system where real-time on-chain data, autonomous trading, decentralized language-model inference, and a micropayment economy all feed one another.

This document lists the components and then explains how they connect.

What Circuit is, in one paragraph

Circuit is a Solana-native data, intelligence, and trading network. A purpose-built pipeline ingests on-chain activity in real time and turns it into prices, candles, and discovery feeds. That same data powers two things at once: a swarm of autonomous trading agents, and a public data API that anyone can pay for per request. Alongside it runs a from-scratch decentralized language model that splits one large model across commodity GPUs on separate machines. Everything that costs money to use is paid in CIRC, the network's token, through an open micropayment protocol, and the revenue recycles back into the liquidity and infrastructure that keep the system running. It is a closed loop: data becomes intelligence, intelligence earns revenue, and revenue sustains the data.

The components, by layer

1. The on-chain data pipeline (the foundation)

This is the part that makes everything else possible: a private, real-time view of the Solana DEX markets that Circuit owns end to end.

2. The decentralized inference engine (the intelligence layer)

3. The autonomous trading swarm (the application layer)

The runtime is a foundation, not a single application. A new specialist agent is a strategy and a configuration layered onto the same scanning, execution, and coordination machinery, so building a different kind of agent on Circuit does not mean rebuilding the plumbing underneath it.

4. The token economy and the Distributor (the economic loop)

5. The public surface (the front door)

How it all fits together

The thing that makes Circuit coherent is that these layers are not independent products that happen to share a brand. They are wired into one another, and the wiring forms a few reinforcing loops.

The data flywheel. The geyser plugin, the indexer, and Redis produce one stream of real-time market data, and that single stream feeds two very different consumers. On one side it drives the trading swarm, which needs sub-second prices to find and manage positions. On the other side it powers the public data API, which sells the same underlying intelligence to outside builders. Building the pipeline once and monetizing it twice is the core efficiency of the design, and it is only possible because Circuit owns the pipeline instead of renting it.

The intelligence layer sits on top of the data, not beside it. The decentralized model is not a separate demo. The trading agents can use it for reasoning, the website exposes it to the public, and the inference gateway sells it. The same philosophy that produced a self-owned data pipeline produced a self-owned model: run it on cheap commodity GPUs spread across machines, accept a modest speed cost, and keep control of the whole thing.

The economic loop closes with CIRC. Every paid action, whether it is a builder querying the data API or a user calling the model, settles in CIRC to the Distributor through the same x402 rail. The Distributor does not simply hold that revenue: every thirty minutes it pays it out to the node-clients that have staked CIRC, so the operators running and securing the network earn a continuous share of what it makes. Separately, the fee recycler turns protocol fees back into permanently locked CIRC liquidity. So usage creates demand that is split between the people who run the network and the liquidity that backs its token, and the token capturing that value is the same one the agents hold in order to pay for data. Data becomes intelligence, intelligence earns CIRC, and CIRC flows back to the machines, the stakers, and the liquidity that keep the network alive. The trading swarm rides on top of all of it, both as the system's most demanding internal customer and as a continuous, real-money test of whether the data and the models are actually good.

As a sense of scale, the network's own holdings today, the Distributor wallet, the agent wallets, and the permanently locked liquidity together, come to roughly $7,900 at current prices. A planned 60 million CIRC stake from the team adds about as much again, putting the current network at around $15,600.

What is genuinely live, and what is close behind

An honest overview has to separate the two.

What is real and running today: the data pipeline is in production and fast, serving both the swarm and the public API around the clock. The x402 payment rail works, and data and inference revenue both settle to the Distributor through it, which pays them out to staked node-clients every thirty minutes. The decentralized 72B model is live, splitting a real model across four networked GPUs and answering both the free demo and paid calls. The fee recycler runs on a schedule and keeps liquidity locked. Ten trading agents run continuously against the live market.

What is close behind: the parts that are still small are small by design, not because the hard problems are unsolved. The decentralized model already does the genuinely difficult thing, splitting one model across separate machines and keeping it coherent, so adding speed from here is mostly a question of how much hardware joins the mesh, which is the easy axis to grow. The trading strategy runs at deliberately tiny size while its entry edge is tuned, but the execution, risk, and coordination wrapped around it are production-grade and ready for size the moment the signal is. The open node-client network is live and paying operators today, and its deeper phases, per-node data shards and stake-gated RPC tiers, are designed and staged to switch on as the network grows rather than waiting to be invented. Payment volume is the one input only adoption can supply, and the rails that carry it are already proven. The hard building is largely done. What is left is turning the dials up.

That balance is the fair way to see Circuit. It is not a finished product operating at scale, and it does not need to pretend to be. What is unusual, and what is worth paying attention to, is the completeness and the coherence of the thing: a single team building every layer of a Solana data, intelligence, and trading network from the validator up, and wiring those layers into one economic loop. Most projects own one box on this diagram and rent the rest. Circuit owns the diagram.

Why the integration matters

Vertical integration is hard and usually not worth it, which is exactly why it is notable when it works. Owning the data pipeline means the trading agents and the public API are never at the mercy of a third-party rate limit or a stale feed. Owning the model means inference can be priced, placed, and shaped to the network's needs instead of a vendor's. Owning the payment rail means the same token captures value from every direction at once. Each piece is more useful because the piece next to it is also Circuit's. The whole is a working demonstration that a small team can build a self-contained on-chain intelligence economy, end to end, and run it in the open. Much of the stack is open source at github.com/Circuit-LLM.