The TokenList repository maintains an official list of tokens recognized and supported by The Stable Order across multiple blockchains.
Currently, we maintain token lists for the following networks:
- Ethereum (
ethereum-tokens.json
) - Ethereum Classic (
ethereum-classic-tokens.json
) - Cardano's Milkomeda (
cardano's-milkomeda-tokens.json
) - Polygon PoS (
polygon-pos-tokens.json
) - Binance Smart Chain (
binance-smart-chain-tokens.json
) - Base(
base-tokens.json
)
Each blockchain-specific list contains verified tokens with the following information:
- Token ID
- Symbol
- Name
- Contract Address
- Token Image/Logo
If you would like us to support other blockchains, please contact us in Discord.
Token lists can be accessed using the following URL format:
https://raw.githubusercontent.com/StabilityNexus/TokenList/main/<blockchain>-tokens.json
Replace <blockchain>
with the chain name (e.g., ethereum, polygon-pos, ethereum-classic, etc.)
To submit a new token to our list, please follow these steps:
-
Fork the repository
-
Create a new branch with the naming convention:
add-token/<blockchain>-<token-symbol>
git checkout -b add-token/ethereum-XYZ
-
Add your token information to the respective chain's JSON file (e.g.,
ethereum-tokens.json
for Ethereum tokens). The token should be added in alphabetical order by symbol:{ "id": "example-token", "symbol": "XYZ", "name": "Example Token", "contract_address": "0x1234...", "image": "https://example.com/token-logo.png" }
-
Push your changes
git push origin add-token/ethereum-XYZ
-
Open a Pull Request with a title in the format:
Add <TOKEN_NAME> (<TOKEN_SYMBOL>) to <BLOCKCHAIN> list
A PR template will automatically be loaded for you to fill in with your token's details.
-
Share your PR in our Discord
- Join our Discord server
- Go to the #development channel
- Share your PR link with a brief description of your token