Token Availability
Token availability across different networks in Azoth SDK
The SDK supports the following stablecoin tokens:
USDT
Tether USD, a widely used stablecoin
USDC
USD Coin, a fully-collateralized stablecoin
PYUSD
PayPal USD, a stablecoin issued by PayPal (only on Ethereum mainnet)
Network and Token Availability Matrix
Below is a matrix showing which tokens are available on which networks:
polygon
✅
✅
❌
bsc
✅
✅
❌
avalanche
✅
✅
❌
base
❌
✅
❌
scroll
✅
✅
❌
arbitrum
✅
✅
❌
ethereum
✅
✅
✅
sei
✅
✅
❌
zksync
✅
❌
❌
Contract Versions
The SDK supports multiple contract versions for each token on each network. By default, it will use the latest available version, but you can specify a particular version if needed.
For example, on Polygon, both USDT and USDC have versions "1" and "1.5.3" available.
When creating a new SDK instance, you can specify a particular version:
import { AzothSDK } from '@azothpay/sdk';
// Using the latest version (default)
const azoth = AzothSDK.create(provider, 'polygon', 'USDT');
// Specifying a particular version
const azothV1 = AzothSDK.create(provider, 'polygon', 'USDT', '1');
Last updated