Public gateways
EVM / Ethereum-compatible
This section lists public EVM gateways available from the open private network. If you are developing a squid, supply the gateway URL of your network to setGateway()
EvmBatchProcessor
configuration method, for example:
const processor = new EvmBatchProcessor()
.setGateway('https://v2.archive.subsquid.io/network/ethereum-mainnet')
See EVM API if you're looking to interface with one of these gateways directly.
(*) Only for EVM data. For Substrate and ink! data use the corresponding Substrate gateway.
(!) Genesis block for Bitfinity Testnet is 2760000.
(!!) The first available block for CrossFI Testnet is 1.
(!!!) Genesis block for Neon EVM Devnet is 177455580.
L1 fields availability
Extra information on L1 height and transaction fees is available for select Layer 2 EVM networks:
- Optimism Sepolia
- Base
- Base Sepolia
- Zora
- Zora Sepolia
- Scroll (
l1Fee
only) - Scroll Sepolia (
l1Fee
only)
Substrate-based
This section lists public Substrate gateways of the open private network. Gateway URLs should be used with the setGateway()
SubstrateBatchProcessor
configuration method, for example:
const processor = new SubstrateBatchProcessor()
.setGateway('https://v2.archive.subsquid.io/network/phala')
.setRpcEndpoint('https://api.phala.network/rpc') // required on Substrate
See Substate API if you're looking to interface with one of these gateways directly.
(*) Asset Hub networks for Polkadot and Kusama were formerly known as Statemint and Statemine, respectively
(**) The Avail Mainnet dataset starts at block 1
Solana and compatibles
This section lists public gateways of the open private network that serve data of Solana and compatible networks. Gateway URLs should be used with the setGateway()
SolanaDataSource
configuration method, for example:
const dataSource = new SolanaDataSource()
.setGateway('https://v2.archive.subsquid.io/network/solana-mainnet')
Read more about Solana indexing in the dedicated section.
See Solana API if you're looking to interface with one of these gateways directly.
Network | Gateway URL |
---|---|
Solana (*) | https://v2.archive.subsquid.io/network/solana-mainnet |
Eclipse Testnet | https://v2.archive.subsquid.io/network/eclipse-testnet |
Soon Devnet (**) | https://v2.archive.subsquid.io/network/soon-devnet |
(*) Solana data is available starting from block (not slot!) 254_625_450.
(**) Soon Devnet data is available starting from block 2_471_639.
Fuel
SQD's open private network serves Fuel Network data via the following gateways:
Network | Gateway URL |
---|---|
Fuel Mainnet | https://v2.archive.subsquid.io/network/fuel-mainnet |
Fuel Testnet | https://v2.archive.subsquid.io/network/fuel-testnet |
Gateway URL should be used with the setGateway()
FuelDataSource
configuration method:
const dataSource = new FuelDataSource()
.setGateway('https://v2.archive.subsquid.io/network/fuel-mainnet')
Read more about Fuel indexing in the dedicated section.
See Fuel API if you're looking to interface with any of the Fuel gateways directly.
Tron
SQD's open private network serves Tron data via the following gateway:
https://v2.archive.subsquid.io/network/tron-mainnet
Gateway URL should be used with the setGateway()
TronBatchProcessor
configuration method:
const processor = new TronBatchProcessor()
.setGateway('https://v2.archive.subsquid.io/network/tron-mainnet')
Read more about Tron indexing in the dedicated section.
See Tron API if you're looking to interface with the Tron gateway directly.
Starknet
SQD's open private network serves Starknet data via the following gateway:
https://v2.archive.subsquid.io/network/starknet-mainnet
See Starknet API to learn how to interface with it.