@cowprotocol/cow-sdk
Version:
## 📚 [Docs website](https://docs.cow.fi/)
12 lines (11 loc) • 369 B
TypeScript
import { TargetChainId } from '../../../../chains/types';
/**
* 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>>;