@tristeroresearch/mach-sdk
Version:
A TypeScript SDK for integrating with Mach's API.
27 lines (26 loc) • 709 B
JavaScript
/**
* @fileOverview This module defines constants for various blockchain networks, providing both lowercase and uppercase keys for flexibility.
* @constant chains - Maps network names to their respective identifiers for easy reference.
*/
export const chains = {
ethereum: 'ethereum',
optimism: 'optimism',
arbitrum: 'arbitrum',
avalanche: 'avalanche',
polygon: 'polygon',
base: 'base',
celo: 'celo',
matic: 'polygon',
eth: 'ethereum',
op: 'optimism',
arb: 'arbitrum',
avax: 'avalanche',
ETH: 'ethereum',
OP: 'optimism',
ARB: 'arbitrum',
AVAX: 'avalanche',
MATIC: 'polygon',
POLYGON: 'polygon',
BASE: 'base',
CELO: 'celo',
};