@asset-projects/token-list
Version:
List of tokens on Ethereum and Ethereum-compatible chains
18 lines (17 loc) • 360 B
TypeScript
export declare type FungibleToken = {
chainId: number;
type: 'ERC20';
address: string;
name: string;
symbol: string;
decimals: number;
logoURI: string;
};
export declare type NonFungibleToken = {
chainId: number;
type: 'ERC721' | 'ERC1155';
address: string;
name: string;
symbol: string;
logoURI: string;
};