import { chain as ARB } from './ARB.js'; import { chain as ARB_SEPOLIA } from './ARB_SEPOLIA.js'; import { chain as ARC_TESTNET } from './ARC_TESTNET.js'; import { chain as AVAX } from './AVAX.js'; import { chain as AVAX_FUJI } from './AVAX_FUJI.js'; import { chain as BASE } from './BASE.js'; import { chain as BASE_SEPOLIA } from './BASE_SEPOLIA.js'; import { chain as ETH } from './ETH.js'; import { chain as ETH_SEPOLIA } from './ETH_SEPOLIA.js'; import { chain as MATIC } from './MATIC.js'; import { chain as MATIC_AMOY } from './MATIC_AMOY.js'; import { chain as MONAD } from './MONAD.js'; import { chain as MONAD_TESTNET } from './MONAD_TESTNET.js'; import { chain as NEAR } from './NEAR.js'; import { chain as NEAR_TESTNET } from './NEAR_TESTNET.js'; import { chain as OP } from './OP.js'; import { chain as OP_SEPOLIA } from './OP_SEPOLIA.js'; import { chain as SOL } from './SOL.js'; import { chain as SOL_DEVNET } from './SOL_DEVNET.js'; import { chain as UNI } from './UNI.js'; import { chain as UNI_SEPOLIA } from './UNI_SEPOLIA.js'; export { ARB, ARB_SEPOLIA, ARC_TESTNET, AVAX, AVAX_FUJI, ETH, ETH_SEPOLIA, MATIC, MATIC_AMOY, MONAD, MONAD_TESTNET, BASE, BASE_SEPOLIA, OP, OP_SEPOLIA, UNI, UNI_SEPOLIA, NEAR, NEAR_TESTNET, SOL, SOL_DEVNET, }; export type Chain = typeof ARB | typeof ARB_SEPOLIA | typeof ARC_TESTNET | typeof AVAX | typeof AVAX_FUJI | typeof ETH | typeof ETH_SEPOLIA | typeof MATIC | typeof MATIC_AMOY | typeof MONAD | typeof MONAD_TESTNET | typeof BASE | typeof BASE_SEPOLIA | typeof OP | typeof OP_SEPOLIA | typeof UNI | typeof UNI_SEPOLIA | typeof NEAR | typeof NEAR_TESTNET | typeof SOL | typeof SOL_DEVNET;