UNPKG

@cowprotocol/cow-sdk

Version:

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

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