@asset-projects/token-list
Version:
List of tokens on Ethereum and Ethereum-compatible chains
23 lines (22 loc) • 592 B
TypeScript
export * from './types';
import type { FungibleToken, NonFungibleToken } from './types';
export declare const getTokenList: (chainId: number) => {
ERC20: {
chainId: number;
type: string;
address: string;
name: string;
symbol: string;
decimals: number;
logoURI: string;
}[];
ERC721: {
chainId: number;
type: string;
address: string;
name: string;
symbol: string;
logoURI: string;
}[];
} | undefined;
export declare const tokens: () => (FungibleToken | NonFungibleToken)[];