CoW Swap default token lists and token image repository
The process has been automated, and it's now much simpler. The forms are self-explanatory and should contain all the info you need to proceed.
Notes:
- Images will be optimized in the background
- If you want to add a token/image to multiple networks, create one issue per network
Head to the issues section and pick your action:
For adding tokens to CoW Swap's default token list, or to update an existing one, use the Add Token form.
Use the Remove Token form.
Even though the token is removed from the default list, its image will be kept.
Not all tokens should be in the default token list, but the more token images we have the better UX.
For this, use the Add Image form.
flowchart TD
Start(User: Picks form) --> UserFillsForm(User: Fills in form and creates issue)
UserFillsForm --> |Form ok| ImageProcessed("Automated: [Optional] Optimize image")
ImageProcessed --> PRCreated(Automated: Creates Pull Request)
ImageProcessed --> |Failed to process image| AutomatedIssueClosure
PRCreated --> TeamReview(Team: Reviews Pull Request)
UserFillsForm --> |Form invalid| AutomatedIssueClosure(Automated: Closes issue)
TeamReview --> |Request approved| TeamMergesPR(Team: Merges Pull Request)
TeamReview --> |Request rejected| TeamClosesPR(Team: Closes Pull Request and Issue)
Instructions for setting up and running the various scripts locally
Currently runs on Node.js v18 (as this scripts use fetch, which was introduced in Node.js 18)
# Install dependencies
yarn
# Generate Coingecko list
yarn coingeckoThere's a script that will fetch all images from the CowSwap list and store them in src/public/images/<chainId>/<address>.png
yarn downloadImagesTo generate updated token lists from Coingecko and Uniswap:
yarn generateAuxListsThis script fetches and processes token data from both Coingecko and Uniswap APIs to create auxiliary token lists. These lists are used to enhance token metadata and support across different networks.
- Coingecko lists contain up to the top 500 tokens per chain, sorted by volume
- Uniswap lists are a combination of:
- Token for given chain already existing in the default Uniswap list
- Mainnet tokens, mapped to the target chain, via Coingecko api
The version and timestamp are bumped according to token list standard.
COINGECKO_API_KEY: Your Coingecko API key (required for API access)
The script generates token list files in src/public/ for the following networks:
- Ethereum (CoinGecko.1.json)
- Arbitrum (CoinGecko.42161.json, Uniswap.42161.json)
- Avalanche (CoinGecko.43114.json, Uniswap.43114.json)
- Base (CoinGecko.8453.json, Uniswap.8453.json)
- BNB (CoinGecko.56.json, Uniswap.56.json)
- Gnosis Chain (CoinGecko.100.json, Uniswap.100.json)
- Lens (CoinGecko.232.json, Uniswap.232.json)
- Linea (CoinGecko.59144.json, Uniswap.59144.json)
- Plasma (CoinGecko.9745.json, Uniswap.9745.json)
- Ink (CoinGecko.57073.json, Uniswap.57073.json)
- Polygon (CoinGecko.137.json, Uniswap.137.json)
To support a new network (e.g. Ink, chain ID 57073), run these steps in order:
-
Generate auxiliary token lists for the new chain (the chain must already be in
COINGECKO_CHAINSinsrc/scripts/auxLists/utils.ts):COINGECKO_API_KEY=your_key yarn generateAuxLists
This creates
src/public/CoinGecko.<chainId>.jsonandsrc/public/Uniswap.<chainId>.jsonfor the new network. -
Fetch permit info for the new chain. The default token list (
CowSwap.json) will not include tokens for new networks yet if you haven't added any, so you must pass the path to the chain-specific list as the second argument:yarn run fetchPermitInfo -- <chainId> CoinGecko.<chainId>.json
Example for Ink:
yarn run fetchPermitInfo -- 57073 CoinGecko.57073.json
Without the second argument, the script would use
CowSwap.jsonand skip all tokens (they would have the wrong chainId), leaving the permit file empty. -
Include only the new network's files in your PR. The scripts above may have updated files for other networks too; do not include those changes, as they are updated daily by a cron job.