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