UNPKG

@tristeroresearch/mach-sdk

Version:

A TypeScript SDK for integrating with Mach's API.

16 lines (15 loc) 308 B
/** * @module supportedChains * @description Supported chain constants */ import { arbitrum, avalanche, base, bsc, celo, mainnet, optimism, polygon, } from 'viem/chains'; export const supportedChains = [ mainnet, optimism, arbitrum, bsc, base, avalanche, polygon, celo, ];