UNPKG

@goat-sdk/plugin-modespray

Version:

<div align="center"> <a href="https://github.com/goat-sdk/goat">

16 lines (14 loc) 317 B
interface TokenChain { contractAddress: string; } interface TokenChains { [chainId: number]: TokenChain; } interface Token { decimals: number; symbol: string; name: string; chains: TokenChains; } declare const SUPPORTED_TOKENS: Record<string, Token>; export { SUPPORTED_TOKENS, type Token };