đŸĒ™Token Onboarding

Token Listing

We will automatically list pools for the DEXes and chains that we support. There is no liquidity threshold for the pools to be listed and we do not charge a listing fee for new tokens or pools. If you are a new DEX or chain that we do not yet support, please reach out to us, and we will evaluate integrations accordingly.

If a pool does not show up on Coinhall within 60 minutes of pool creation of a supported DEX, it usually means that at least one token within the pool is missing essential metadata (eg. number of decimals). Follow the troubleshooting steps below to ensure that your token has the correct on-chain metadata.

Troubleshooting steps

For tokenfactory tokens, use the following query:

seid query bank denom-metadata \\
  --denom='REPLACE_ME_WITH_CA' \\
  --node='<https://sei-rpc.polkachu.com:443>' \\
  --output='json' | jq

And ensure that the output looks like the following:

{
  "metadata": {
    "description": "",
    "denom_units": [
      // The first item always exists by default
      {
        "denom": "factory/sei1...111/abc",
        "exponent": 0,
        "aliases": [
          "uabc"
        ]
      },

      // The second item is the important field and MUST be present!
      {
        "denom": "abc",
        "exponent": 6, // number of decimals that we will use
        "aliases": [
          "abc"
        ]
      }
    ],
    "base": "factory/sei1...111/abc",
    "display": "abc",
    "name": "abc",
    "symbol": "ABC"
  }
}

For CW20 tokens, use the following query:

seid query wasm contract-state smart REPLACE_ME_WITH_CA '{"token_info":{}}' \\
  --node='<https://sei-rpc.polkachu.com:443>' \\
  --output='json' | jq

And ensure that the output looks like the following:

{
  "data": {
    "name": "abc",
    "symbol": "ABC",
    "decimals": 6, // This is the important field
    "total_supply": "12345"
  }
}

We do a routine check every two business days, and tokens that have successfully updated their metadata will be accounted for and listed. If you have an urgent need to fix and list your token outside of the regular schedule, we offer an express service for a fee of 200 USDC (maximum 12 hours lead time from receiving payment). This fee will also include updating your token information which is covered in the section below.

To request the express service for token listing, fill up the Google form and select 'List my token on Coinhall', and follow the subsequent instructions on the form. Note that we will never DM you first.

Update Token Information

If you are a project admin and would like to update your token information for a listed token on Coinhall, please fill in the form below. If your token is not listed yet, refer to the previous section.

We do a routine check every two business days to update token information that are submitted. If you have an urgent need to update your token info, we offer an express service for a fee of 200 USDC (maximum three hours lead time from receiving payment). To mitigate risk for Coinhall users from malicious impersonations, we require projects looking to update their token info to make an onchain transaction via an admin wallet.

To update your token info, fill up the Google form and select 'Update my token information', and follow the subsequent instructions on the form.

Token Verification

Verified tokens on Coinhall are indicated by a blue checkmark, as an additional layer of mitigation against scams, impersonation of other tokens, or rug pulls. Verified tokens are NOT an endorsement by Coinhall, and are based on the limited public information we have access to. Users are encouraged to do your own research before trading.

We will never verify tokens that maliciously aim to confuse and scam traders. Consequently, verified tokens will be shown with higher priority on Coinhall’s search bar and Telegram Price Bot commands (@coinhallbot). Verification is also a pre-requisite for promoted pools - a new feature coming soonâ„ĸī¸.

There are two different and independent routes to verify a token:

  1. Free route: we do a routine check every 30 days to verify tokens that meet the following criteria:

    • Have at least one pool (paired with an L1 coin or stablecoin) that sustained an average of >US$200,000 in liquidity for at least 30 days

  2. Express route: if you have an urgent request to verify your token, we offer an express service for a fee of 250 USDC to manually verify that your token meets at least one of the following criteria:

    1. LP containing at least 75% of the initial total supply to be burned + admin rights to token contract revoked + US$ value of liquidity is >=US$20,000 at time of assessment

    2. OR your project has received external funding from verifiable investors, reported by a credible media source

    3. OR your token is listed on a reputable centralised exchange (CEX)

Coinhall will only do the manual verification checks upon payment. Please ensure your project fulfills the criteria before payments are made. If your token does not meet the criteria, it will not be verified even after payments and no refunds will be given out.

Scenarios:

  • Project admin burns LP tokens containing 100% of Token A’s initial supply but did not revoke the admin rights to the token contract → ❌ failed to meet criteria

  • Project admin burns LP tokens containing 80% of Token B’s initial supply and revoke the admin rights to the token contract but the US$ value of liquidity was US$10K → ❌ failed to meet criteria

  • Project admin burns LP tokens containing 25% of Token C’s initial supply and is listed on a CEX → ✅ meets the criteria

  • Token D's team revokes admin rights to their token contract and received a publicly announced grant from the Layer 1 foundation → ✅ meets the criteria

To request the express service for token verification, fill up the Google form and DM the admin. Note that we will never DM you first.

Last updated