> ## Documentation Index
> Fetch the complete documentation index at: https://www.helius.dev/docs/llms.txt
> Use this file to discover all available pages before exploring further.

# Guides for Analytics and Indexing Data

> Developer tutorials for building indexers, dashboards, and data pipelines on Solana: parsed swap and mint streams, block monitoring, parsed transaction history, and RPC optimization.

Learn how to turn onchain data into structured, queryable datasets to power your applications.

Parsed Streams and Parsed Events do the decoding for you, in real time and in history, so this path covers both, plus keeping your credit usage in check.

## Recommended guides

Here are guides commonly referenced by analytics, indexing, and data pipeline developers:

<CardGroup cols={2}>
  <Card title="Stream parsed swaps" icon="arrow-right-arrow-left" href="/docs/parsed-streams/guides/track-jupiter-swaps">
    Get decoded, human-readable Jupiter swaps in real-time
  </Card>

  <Card title="Track new token launches" icon="rocket" href="/docs/parsed-streams/guides/track-pumpfun-mints">
    Build a reconnect-safe listener that logs every Pump.fun deploy
  </Card>

  <Card title="Fetch Pump.fun Mints" icon="clock-rotate-left" href="/docs/parsed-events/guides/fetch-pumpfun-mints">
    Use the Parsed Events API to get all mints on Pump.fun
  </Card>

  <Card title="Get parsed history via GraphQL" icon="diagram-project" href="/docs/parsed-events/guides/query-with-graphql">
    Pull specific transactions and events for any address
  </Card>

  <Card title="Track slots and blocks" icon="cube" href="/docs/laserstream/guides/slot-and-block-monitoring">
    Monitor slot progression and block production to drive your pipeline
  </Card>

  <Card title="RPC optimization techniques" icon="gauge-high" href="/docs/rpc/optimization-techniques">
    Reduce credit consumption and improve throughput across your workload
  </Card>
</CardGroup>

Browse all guides in the [Guides overview](/docs/guides/overview).

## Key products

<CardGroup cols={2}>
  <Card title="Parsed Streams" icon="wave-square" href="/docs/parsed-streams">
    Human-readable, real-time event streams; no decoders required
  </Card>

  <Card title="Parsed Events" icon="clock-rotate-left" href="/docs/parsed-events">
    Human-readable transaction data, queryable by address
  </Card>

  <Card title="getTransactionsForAddress" icon="list" href="/docs/rpc/gettransactionsforaddress">
    Full parsed transaction history for any address in one call
  </Card>

  <Card title="Historical Replay" icon="rotate-left" href="/docs/laserstream/historical-replay">
    Backfill up to 24 hours of streamed data in case of downtime
  </Card>

  <Card title="How to Index Solana Data" icon="database" href="/docs/rpc/how-to-index-solana-data">
    Architecture patterns for building your own Solana indexer
  </Card>

  <Card title="Dedicated Nodes" icon="server" href="/docs/dedicated-nodes">
    Single-tenant nodes for heavy RPC and archival workloads
  </Card>
</CardGroup>
