export const ETH = 1 export const BNB = 56 export const BNB_TESTNET = 97 export const AVAX = 43114 export const AVAX_TESTNET = 43113 export const POLYGON = 137 export const POLYGON_TESTNET = 80001 export type Chain = typeof ETH | typeof BNB | typeof BNB_TESTNET | typeof AVAX | typeof AVAX_TESTNET | typeof POLYGON | typeof POLYGON_TESTNET export const allChains: Chain[] = [ ETH, BNB, BNB_TESTNET, AVAX, AVAX_TESTNET, POLYGON, POLYGON_TESTNET, ]