Skip to content

Hyperstack

Hyperstack is data infrastructure as code for Solana. Define a schema that connects your onchain accounts and we create the backend infrastructure for you.

We handle:

  • Streaming onchain data from RPC nodes
  • Indexing the schema you defined
  • WebSocket streaming of that schema into your app
  • Generating type-safe client code to sync the schema into your app
function TokenList() {
const stack = useHyperstack(MY_PROGRAM_STACK);
const { data: tokens } = stack.views.tokens.list.use();
return tokens?.map(token => <TokenCard key={token.mint} {...token} />);
}

How It Works

Understand the architecture and key concepts.

Learn more →