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>

13 lines (12 loc) 236 B
import { ChainId } from '../../chains/types.js'; /** * Token on a chain. */ export interface TokenInfo { chainId: ChainId; address: string; decimals: number; name?: string; symbol?: string; logoUrl?: string; }