UNPKG

@f5i23q999d/cow-sdk

Version:

<p align="center"> <img width="400" src="https://github.com/cowprotocol/cow-sdk/raw/main/docs/images/CoW.png" /> </p>

26 lines (25 loc) 885 B
import { AdditionalTargetChainId, ChainInfo, SupportedChainId } from '../types.js'; /** * 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[];