πŸ’Ž Supported Networks

Sentio allows users to work with different chains through different APIs. Current we support following types of chains:

  • EVM Chains: in production stage, see coinbase for an example.
  • Aptos: in production stage, see pancake for an example.
  • SUI: in production stage, see cetus for an example.
  • Fuel: in beta stage, see fuel-assets for an example.
  • Starknet: in alpha stage.
  • Bitcoin: in alpha stage, see here for an example.
  • Solana: in alpha stage, see here for an example.

You can also mix different chains in on project, example here.

Supported network and its features are listed below, we are actively supporting more networks, let us know via
[email protected]
about your use case to help us prioritize network support.

βœ…

We only include mainnet in the list. The most complete supported chain list could be found at
the status page.

EVM Chains

ChainIDSlugEventsArchive RPCsTracesDebugger
Arbitrum42161arbitrum-oneβœ“βœ“βœ“
Astar592astarβœ“βœ“βœ“βœ“
Astar zkEVM3776astar-zkevmβœ“βœ“
Aurora1313161554auroraβœ“βœ“
Avalanche43114avalancheβœ“βœ“βœ“
B2 Mainnet223b2-mainnetβœ“βœ“
Base8453baseβœ“βœ“βœ“
BEVM11501bevmβœ“βœ“
Binance Smart Chain56bscβœ“βœ“βœ“
Bitlayer Mainnet200901bitlayerβœ“βœ“
Blast Mainnet81457blast-mainnetβœ“βœ“βœ“
Bob Mainnet60808bobβœ“βœ“
Chiliz88888chilizβœ“βœ“
Conflux eSpace1030conflux-espaceβœ“βœ“
Corn Maizenet21000000corn-maizenetβœ“βœ“
Cronos Mainnet25cronosβœ“βœ“
Cronos zkEVM388cronos-zkevmβœ“βœ“
Derive Mainnet957derive-mainnetβœ“βœ“
Ethereum1mainnetβœ“βœ“βœ“βœ“
Fantom Opera250fantomβœ“βœ“
Fraxtal Mainnet252frax-mainnetβœ“βœ“
Karak Mainnet2410karak-mainnetβœ“βœ“
KCC Mainnet321kucoinβœ“βœ“
Linea59144lineaβœ“βœ“βœ“βœ“
Manta Pacific169manta-pacific-mainnetβœ“βœ“
Mantle5000mantleβœ“βœ“
Merlin Mainnet4200merlinβœ“βœ“
Metis1088metisβœ“βœ“
Mode Mainnet34443mode-mainnetβœ“βœ“
Moonbeam1284moonbeamβœ“βœ“βœ“βœ“
opBNB Mainnet204opbnbβœ“βœ“
Optimism Mainnet10optimismβœ“βœ“
Polygon137maticβœ“βœ“βœ“βœ“
Polygon zkEVM1101polygon-zkevmβœ“βœ“
Scroll534352scrollβœ“βœ“βœ“
Sei Mainnet1329seiβœ“βœ“
Soneium Mainnet1868soneium-mainnetβœ“βœ“βœ“βœ“
Sonic Mainnet146sonic-mainnetβœ“βœ“βœ“βœ“
Swell Mainnet1923swell-mainnetβœ“βœ“
TAC Testnet2390tac-testnetβœ“βœ“
Taiko Mainnet167000taikoβœ“βœ“
Unichain Sepolia1301unichain-sepoliaβœ“βœ“
X Layer Mainnet196xlayer-mainnetβœ“βœ“βœ“
Zircuit Mainnet48900zircuitβœ“βœ“
zkLink Nova810180zklink-novaβœ“βœ“
zkSync Era324zksync-eraβœ“βœ“

More on EVM

Move Chains

ChainTxnEventEntry FuncArchive RPCsAccountDebugger
Aptosβœ“βœ“βœ“βœ“βœ“βœ“
Aptos Testnetβœ“βœ“βœ“
SUIβœ“βœ“βœ“βœ“βœ“βœ“
SUI Testnetβœ“βœ“βœ“
Move Testnetβœ“βœ“βœ“βœ“βœ“

More on Aptos and SUI

Fuel

ChainStageLog HandleCall HandleTransfer Handle
Fuel MainnetBetaβœ“βœ“βœ“
Fuel TestnetBetaβœ“βœ“βœ“

More on Fuel

Starknet

ChainStageEventsArchive RPCs
StarknetBetaβœ“βœ“

More on starknet

Solana

ChainStageTransaction HandleInstruction Handle
SolanaAlphaβœ“βœ“

More on Solana

Examples

To quickly create single chain processor or subgraph, you can use the following command.

Arbitrum

Chain ID: 42161, chain slug: arbitrum-one.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 42161
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 42161
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Astar

Chain ID: 592, chain slug: astar.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 592
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 592
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Astar zkEVM

Chain ID: 3776, chain slug: astar-zkevm.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 3776
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 3776
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Aurora

Chain ID: 1313161554, chain slug: aurora.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1313161554
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1313161554
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Avalanche

Chain ID: 43114, chain slug: avalanche.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 43114
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 43114
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

B2

Chain ID: 223, chain slug: b2-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 223
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 223
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Base

Chain ID: 8453, chain slug: base.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 8453
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 8453
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

BEVM

Chain ID: 11501, chain slug: bevm.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 11501
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 11501
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Binance Smart Chain

Chain ID: 56, chain slug: bsc.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 56
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 56
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 97, slug bsc-testnet with limited capabilities.

Bitlayer

Chain ID: 200901, chain slug: bitlayer.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 200901
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 200901
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Blast

Chain ID: 81457, chain slug: blast-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 81457
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 81457
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 168587773, slug blast-testnet with limited capabilities.

Bob

Chain ID: 60808, chain slug: bob.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 60808
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 60808
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Chiliz

Chain ID: 88888, chain slug: chiliz.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 88888
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 88888
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Conflux eSpace

Chain ID: 1030, chain slug: conflux-espace.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1030
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1030
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Corn

Chain ID: 21000000, chain slug: corn-maizenet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 21000000
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 21000000
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Cronos

Chain ID: 25, chain slug: cronos.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 25
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 25
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 338, slug cronos-testnet .

Cronos zkEVM

Chain ID: 388, chain slug: cronos-zkevm.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 388
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 388
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Derive

Chain ID: 957, chain slug: derive-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 957
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 957
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Ethereum

Chain ID: 1, chain slug: mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnets are available at chain ID: 17000, 11155111, slug holesky, sepolia with limited capabilities.

Fantom Opera

Chain ID: 250, chain slug: fantom.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 250
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 250
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Fraxtal

Chain ID: 252, chain slug: frax-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 252
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 252
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Karak

Chain ID: 2410, chain slug: karak-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 2410
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 2410
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

KCC

Chain ID: 321, chain slug: kucoin.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 321
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 321
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Linea

Chain ID: 59144, chain slug: linea.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 59144
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 59144
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Manta Pacific

Chain ID: 169, chain slug: manta-pacific-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 169
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 169
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Mantle

Chain ID: 5000, chain slug: mantle.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 5000
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 5000
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Merlin

Chain ID: 4200, chain slug: merlin.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 4200
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 4200
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Metis

Chain ID: 1088, chain slug: metis.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1088
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1088
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Mode

Chain ID: 34443, chain slug: mode-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 34443
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 34443
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Moonbeam

Chain ID: 1284, chain slug: moonbeam.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1284
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1284
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

opBNB

Chain ID: 204, chain slug: opbnb.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 204
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 204
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Optimism

Chain ID: 10, chain slug: optimism.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 10
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 10
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Polygon

Chain ID: 137, chain slug: matic.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 137
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 137
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Polygon zkEVM

Chain ID: 1101, chain slug: polygon-zkevm.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1101
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1101
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Scroll

Chain ID: 534352, chain slug: scroll.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 534352
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 534352
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Sei

Chain ID: 1329, chain slug: sei.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1329
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1329
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Soneium

Chain ID: 1868, chain slug: soneium-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1868
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1868
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 1946, slug soneium-minato with limited capabilities.

Sonic

Chain ID: 146, chain slug: sonic-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 146
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 146
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 57054, slug sonic-testnet with limited capabilities.

Swell

Chain ID: 1923, chain slug: swell-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1923
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1923
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 1924, slug swell-testnet .

TAC

Currently support is for testnet only. Chain ID: 2390, chain slug: tac-testnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 2390
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 2390
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

Taiko

Chain ID: 167000, chain slug: taiko.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 167000
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 167000
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 167008, slug taiko-hekla-testnet .

Unichain Sepolia

Chain ID: 1301, chain slug: unichain-sepolia.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 1301
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 1301
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

X Layer

Chain ID: 196, chain slug: xlayer-mainnet.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 196
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 196
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 195, slug xlayer-sepolia with limited capabilities.

Zircuit

Chain ID: 48900, chain slug: zircuit.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 48900
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 48900
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

️ Testnet is available at chain ID: 48899, slug zircuit-testnet .

zkLink Nova

Chain ID: 810180, chain slug: zklink-nova.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 810180
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 810180
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>

zkSync Era

Chain ID: 324, chain slug: zksync-era.

Finish Step 1-3 from Quickstart. You could create indexer in either sentio processor or subgraph format.

Create and upload an example Sentio processor
npx @sentio/cli@latest create -n <project name> --chain-type eth --chain-id 324
...
npx @sentio/cli@latest upload
Create and deploy an example Subgraph
npx @sentio/cli@latest graph create -n <project name> --chain-id 324
...
npx @sentio/cli@latest graph deploy --owner <owner> --name <project name>