Supported Networks

Supported blockchain networks in Azoth SDK

The SDK currently supports the following networks:

Network
Chain ID
Description

polygon

137

Polygon mainnet, a popular Ethereum scaling solution

bsc

56

Binance Smart Chain, Binance's EVM-compatible blockchain

avalanche

43114

Avalanche C-Chain, an EVM-compatible blockchain

base

8453

Base, an Ethereum L2 scaling solution by Coinbase

scroll

534352

Scroll, an Ethereum L2 zk-rollup scaling solution

arbitrum

42161

Arbitrum, an Ethereum L2 optimistic rollup scaling solution

ethereum

1

Ethereum mainnet

sei

32741

Sei EVM, a high-performance EVM-compatible blockchain

zksync

324

zkSync Era, an Ethereum L2 zk-rollup scaling solution

You can get a list of all supported networks programmatically:

import { AzothSDK } from '@azothpay/sdk';

const networks = AzothSDK.getAvailableNetworks();
console.log(networks);

RPC Providers

To use the Azoth SDK, you'll need access to an RPC endpoint for the network you're targeting. Here are some public RPC endpoints for the supported networks:

For production use, we recommend using a dedicated RPC provider service like Infura, Alchemy, or QuickNode.

Last updated