Usage

The token list is available at: https://requestnetwork.github.io/request-token-list/latest.json You can fetch the token list directly in your application:
const tokenList = await fetch(
  "https://requestnetwork.github.io/request-token-list/latest.json"
).then((res) => res.json());

Token List Structure

Each token in the list contains the following information:
{
  "id": "TKN-mainnet"
  "name": "Token Name",
  "address": "0x...",
  "symbol": "TKN",
  "decimals": 18,
  "chainId": 1,
  "logoURI": "https://..."
}

Adding a New Token

We welcome community contributions! To add a new token to the list:
1

Fork the request-token-list repository on Github
2

Add your token information to tokens/token-list.json
3

Make sure your token meets our requirements (see CONTRIBUTING.md)
4

Run tests locally: npm test
5

Create a Pull Request