Token Icons is a community-led initiative to source and maintain ERC20 icons in a transparent and highly-accessible way. The project is structured as follows:
/assets
: Repository containing metadata and PNG images for ERC20 icons./frontend
: Next.js website to discover and get info about popular ERC20 icons./package
: Node package with helper functions for interacting with assets.To install:
npm i token-icons
import { image } from 'token-icons'
const Example = () => {
return (
<img src={image('0xFd086bC7CD5C481DCC9C85ebE478A1C0b69FCbb9')} />
);
}
}