Add to Tokenlist

Tokenlists

Tokenlists is a specification for lists of token metadata (e.g. address, decimals, etc.) that can be used by any dApp interfaces that needs one or more lists of tokens. Anyone can create and maintain a token list, as long as they follow the specification. The Pangolin community invites you to add your token to our tokenlist!

Adding Your Token to Pangolin's List

Adding Your Token

  1. Add an entry in Pangolin's tokenlist. Please use the checksum address. Here is an example using PNG:

    {
      "chainId": 43114,
      "address": "0x60781C2586D68229fde47564546784ab3fACA982",
      "decimals": 18,
      "name": "Pangolin",
      "symbol": "PNG",
      "logoURI": "https://raw.githubusercontent.com/pangolindex/tokens/main/assets/43114/0x60781C2586D68229fde47564546784ab3fACA982/logo.png"
    }
  2. Update the timestamp field to the current timestamp.

  3. Update the version field to adhere to semantic versioning:

    • Increment major version when tokens are removed.

    • Increment minor version when tokens are added.

    • Increment patch version when tokens already on the list have minor details changed (name, symbol, logo URL, decimals).

Note: Changing a token address or chain ID is considered both a remove and an add, and should be a major version update.

  1. Create a new directory named using your checksum token address.

  2. Add your 24x24 token image as a file named logo.png inside the directory.

  3. Add your 48x48 token image as a file named logo_48.png inside the directory.

  4. No image should be larger than 10 KB.

  5. Make sure the token is verified on the explorer.

  6. Create a PR titled Add [TOKEN_NAME] to the main branch.

Example directory structures

β”œβ”€ tokens/
└─┬─ assets/
  └─┬─[chain_id]/
    β”‚
    β”œβ”€β”¬β”€ 0x60781C2586D68229fde47564546784ab3fACA982/
    β”‚ β”œβ”€β”€ logo.png
    β”‚ └── logo_48.png
    β”‚
    β”œβ”€β”¬β”€ 0xB31f66AA3C1e785363F0875A1B74E27b85FD66c7/
    β”‚ β”œβ”€β”€ logo.png
    β”‚ └── logo_48.png
    β”‚
 ...

Disclaimer

Pangolin allows anyone to submit new assets to this repository. However, this does not mean that Pangolin is in direct partnership with any project.

Pangolin will reject projects that are deemed as a scam or fraudulent after review. Pangolin reserves the right to change the terms of asset submissions at any time due to changing market conditions, risk of fraud, or any other factors we deem relevant.

Last updated