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 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.
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"
}
}