UNPKG

butterjs-sdk

Version:
12 lines (11 loc) 467 B
import { BaseCurrency } from '../entities'; /** * get token entity from address and chain id * @param tokenAddress * @param chainId */ export declare function getTokenByAddressAndChainId(tokenAddress: string, chainId: string): BaseCurrency; /** Chain Id to supported tokens */ export declare const ID_TO_SUPPORTED_TOKEN: (id: string) => BaseCurrency[]; /** Chain Id to all available tokens */ export declare const ID_TO_ALL_TOKEN: (id: string) => BaseCurrency[];