Skip to content

balancer/tokenlists

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Feb 28, 2025
bd3344f · Feb 28, 2025
Dec 5, 2024
Feb 27, 2025
Feb 28, 2025
Sep 5, 2023
Dec 10, 2024
Dec 10, 2024
Mar 15, 2023
Dec 10, 2024
Mar 17, 2023
Jan 31, 2025
Jun 26, 2023
Jun 26, 2023
Mar 17, 2023

Repository files navigation

Balancer tokenlists

This is a general purpose tokenlist generation app that Balancer uses to generate it's tokenlist.

Make changes to the Balancer tokenlist

To make changes to the balancer tokenlist edit the files in src/tokenlists/balancer.

  1. metadata.ts - Edit this to change the highlevel tokenlist metadata.
  2. tokens/<network>.ts - Edit this to add or remove tokens from the generated tokenlist. E.g Tokens for Arbitrum go in tokens/arbitrum.ts, tokens for Ethereum go in tokens/ethereum.ts.
  3. overwrites.ts - Edit this to overwrite any token data that is incorrect when generated automatically.

Once changes are made, the tokenlist can be regenerated by running:

npm run generate

This updates the generated file at /generated/balancer.tokenlist.json

However, you do not need to run this command locally. Simply make changes to the mentioned files and merge them with the main branch. Following this, an autogenerated PR will be created to update the generated tokenlist files.

Create a new tokenlist

Although this repo is primarily for maintaining the balancer.tokenlist.json file, it can be forked and used to generate any kind of tokenlist. Simply run:

npm run tokenlist:create my-new-tokenlist

This will create a new template tokenlist in /src/tokenlists with the necessary files. Then, just add token addresses to the tokens.ts file and run npm run generate to generate your tokenlist json file.

Development

To run the generate command locally or in the Github actions of a fork you will need to add these ENV variables:

DRPC_KEY=xxx
INFURA_KEY=xxx
ALCHEMY_KEY=xxx
COINGECKO_API_KEY=xxx

You'll need to sign up for each of those services to get keys: