📔Add your token to Token List

Follow these steps to get your token listed and visible to Panora and all its integrators

Easily add your token to the Panora Aptos Token List by following these steps:

Steps to Add a Token

  1. Fork the Repository Fork the Aptos-Tokens GitHub repo.

  2. Add Token Icon Add the token_symbol.svg file for the token in the logos folder in your forked repository. Ensure it's no larger than 250x250 pixels and has a unique symbol not used by any existing token.

  3. Add a SubmitTokenRequestInfo object at the end of submit-token-request.ts list.

    Provide the following details:

    SubmitTokenRequestInfo

    • chainId: The chain ID to which the token belongs (default is 1 for Aptos Mainnet)

    • tokenAddress: The complete address used to identify the token as per the Aptos Coin Standard (Legacy)

    • faAddress: The complete address used to identify the token as per the Aptos Fungible Asset (FA) Standard

    • name: The name of the token

    • symbol: The symbol registered by the token minter on-chain

    • decimals: The number of decimal places for the token

    • logoUrl: The URL for the token's logo (the logo should be added to the logos folder in your repository to get the correct link)

    • websiteUrl: The official website URL of the token (optional, but preferred for faster validations)

    • coinGeckoId: The CoinGecko ID used for fetching price feeds (optional)

    • coinMarketCapId: The CoinMarketCap ID used for fetching price feeds (optional)

    Example:

  {
    "chainId": 1,
    "tokenAddress": "0x1::aptos_coin::AptosCoin",
    "faAddress": "0xa",
    "name": "Aptos Coin",
    "symbol": "APT",
    "decimals": 8,
    "logoUrl": "https://raw.githubusercontent.com/PanoraExchange/Aptos-Tokens/main/logos/APT.svg",
    "websiteUrl": "https://aptosfoundation.org",
    "coinGeckoId": "aptos",
    "coinMarketCapId": 21794,
  }
  1. Commit Changes Commit your changes with a descriptive message explaining the modifications made.

  2. Make a Pull Request Navigate to your forked repository, open a pull request, and submit it for review. Select the base repository as Aptos-Tokens and branch as main for merging your changes.

  3. Community Discussion and Amplification It is highly recommended to engage in discussions when new projects seek validation into the list. Tweet @PanoraExchange to notify your community and Panora about your request submission. This increases visibility and community engagement, potentially expediting approval of your PR

    Reminder: Tokens are always available for trading by pasting the complete token address into our token picker, regardless of their validation status.

Important Note

Tokens can always be traded by entering the token symbol or full token address in the token picker, even if not yet verified.

Last updated