UNPKG

@cowprotocol/cow-sdk

Version:

## 📚 [Docs website](https://docs.cow.fi/)

26 lines (25 loc) • 882 B
import { AdditionalTargetChainId, ChainInfo, SupportedChainId } from '../types'; /** * Details of all supported chains. */ export declare const ALL_SUPPORTED_CHAINS_MAP: Record<SupportedChainId, ChainInfo>; /** * All supported chains. */ export declare const ALL_SUPPORTED_CHAINS: ChainInfo[]; /** * The list of supported chains. */ export declare const ALL_SUPPORTED_CHAIN_IDS: SupportedChainId[]; /** * Maps a chain where you can bridge to, but not sell tokens from (not supported by CoW Protocol) */ export declare const ADDITIONAL_TARGET_CHAINS_MAP: Record<AdditionalTargetChainId, ChainInfo>; /** * All chains (both supported by CoW Protocol, or chains where you can bridge to) */ export declare const ALL_CHAINS: ChainInfo[]; /** * All chain ids (both supported by CoW Protocol, or chains where you can bridge to) */ export declare const ALL_CHAINS_IDS: number[];