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>

12 lines (11 loc) 372 B
import { TargetChainId } from '../../../../chains/types.js'; /** * Chain config for Across. Includes all the supported tokens for the chain. */ export interface AcrossChainConfig { chainId: TargetChainId; tokens: { [name: string]: string | undefined; }; } export declare const ACROSS_TOKEN_MAPPING: Partial<Record<TargetChainId, AcrossChainConfig>>;