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

<AgentInstructions>

## Submitting Feedback

If you encounter incorrect, outdated, or confusing documentation on this page, submit feedback:

POST https://docs.sqd.dev/feedback

```json
{
  "path": "/en/data/tron/tron-mainnet",
  "feedback": "Description of the issue"
}
```

Only submit feedback when you have something specific and actionable to report.

</AgentInstructions>

# Tron Mainnet Overview

> Tron Mainnet data overview — open private network ID, gateway URL, available data fields, and rate limits for SQD-powered Tron blockchain indexing.

<Info>
  Starting today (2025-02-23) all open private network gateways are rate limited
  at 50 requests per 10 seconds per IP. Higher bandwidths will soon become
  available via the public network.
</Info>

## Network Information

* **Network ID**: `tron-mainnet`
* **Gateway**: Open Private Network

## Endpoints

### Gateway Endpoint

```
https://v2.archive.subsquid.io/network/tron-mainnet
```

### Usage

```typescript theme={"system"}
import { TronBatchProcessor } from '@subsquid/tron-processor'

const processor = new TronBatchProcessor()
  .setGateway("https://v2.archive.subsquid.io/network/tron-mainnet")
  .setBlockRange({ from: 0 });
```

## Quick Start

Get started indexing Tron Mainnet data:

<Card title="Quick Start" icon="terminal" href="/en/sdk/squid-sdk/tron-indexing/indexing-usdt-transfers">
  Quick reference for building your indexer
</Card>

## Related Resources

<CardGroup cols={2}>
  <Card title="API Reference" icon="code" href="/en/sdk/squid-sdk/tron-indexing/network-api/tron-api">
    Complete API documentation
  </Card>

  <Card title="Network Overview" icon="network-wired" href="/en/network/overview">
    Learn about the Subsquid Network
  </Card>
</CardGroup>
