All chains
Avalanche

Avalanche

EVM Layer 1 / Chain ID 43114

Avalanche is a blazingly fast, eco-friendly Layer 1 blockchain platform for decentralized applications and custom subnet deployments.

Quick Facts
Networks 2
Runtime EVM
Chain ID 43114
Real-time Yes
Data tables 5
Category Layer 1

Networks

avalanche-mainnet
Real-time EVM mainnet 5 tables
avalanche-testnet
EVM testnet 5 tables

Available Data

blocks

Block headers with timestamps, gas usage, miner info, and consensus data.

transactions

All onchain transactions with sender, receiver, value, gas, and input data.

logs

Event logs emitted by smart contracts, the primary source for tracking DeFi, NFT, and token activity.

traces

Internal transactions and call traces showing the full execution path of each transaction.

state_diffs

State changes per transaction, storage slot modifications, balance changes, and nonce updates.

How to index Avalanche blockchain data

Stream Avalanche event logs, transactions, and blocks from the SQD Portal in two lines of code. The example below uses the public endpoint, no API key required for development.

1curl --compressed -X POST \
2 'https://portal.sqd.dev/datasets/avalanche-mainnet/stream' \
3 -H 'Content-Type: application/json' \
4 -d '{
5 "type": "evm",
6 "fromBlock": 0,
7 "toBlock": 100,
8 "fields": {
9 "block": {"number":true,"timestamp":true},
10 "transaction": {
11 "hash": true,
12 "from": true,
13 "to": true,
14 "value": true
15 }
16 },
17 "transactions": [{}]
18 }'
avalanche-mainnet/stream
EVM · blocks 0100

Build with Avalanche data

Common production patterns teams ship with SQD on Avalanche.

Frequently asked questions

How do I index Avalanche blockchain data?
Use the SQD Portal API at portal.sqd.dev/datasets/avalanche-mainnet or the open-source Squid SDK. Both stream Avalanche blocks, transactions, and event logs in real time. The free tier supports development; paid Portal deployments cover production workloads with SLA-backed latency.
Is the Avalanche API free?
Yes. SQD provides a free public Portal endpoint for Avalanche with no API key required. For higher rate limits, dedicated infrastructure, and SLA-backed uptime, see the SQD Pricing page.
What Avalanche data tables does SQD provide?
SQD indexes 5 data tables for Avalanche: blocks, transactions, logs, traces, state_diffs. Each table is decoded, validated at ingestion, and queryable through the Portal API.
Does SQD support real-time Avalanche data?
Yes. SQD provides sub-second latency on Avalanche mainnet through the Portal's hot path. Both real-time streaming and full historical access are available from the same API.
What's the difference between SQD and an RPC node for Avalanche?
An RPC node serves raw, unvalidated Avalanche data limited to recent state. SQD's Portal indexes the full Avalanche history, decodes it into queryable tables, validates every block at ingestion, and serves it through a typed SDK, no node operations required.
Can I self-host Avalanche indexing with SQD?
Yes, the Squid SDK is open-source under the GPLv3 license. You can run your own indexer against the SQD Network or the Portal, or deploy on SQD Cloud for fully managed hosting.

Other layer 1 chains on SQD

Start building with Avalanche

Access Avalanche data through the SQD Portal, free tier available.