Embarking on the revolutionary journey of registering your token on the Solana blockchain opens a gateway to transformative possibilities. In this blog, we unravel the essential steps to not only register your token but also navigate the intricacies that turn it into a dynamic and tradeable force in the burgeoning world of decentralized finance. Join us as we delve into the intricacies of Solana, empowering you to harness the full potential of your token for unprecedented business growth.
In the previous blog post, we showed how to create a token. The next step is to register the Token on Solana
Our token is created and it is live on Solana, but is not yet officially recognized. We need to get all the required information for the token ready for submission.
**git clone https://github.com/solana-labs/token-list**
We now have the token-list cloned, so we can add our token's image and information for uploading.
Go ahead and name the logo file logo.png for raster logos or logo.svg if you are using vector graphics. Solana prefers logos to be either one of those file types.
This example token will be a social token, so be sure to not copy that unless your token is also a social token. The required information is:
{
"chainId": 101,
"address": " ",
"symbol": " ",
"name": " ",
"decimals": 0,
"logoURI": "https://raw.githubusercontent.com/solana-labs/token-list/main/assets/mainnet/<ADDRESS/logo.png",
"tags": [
"social-token",
],
"extensions": {
"website": "https://<YOUR WEBSITE URL>.com"
}
}
The link for the token image must point to the GitHub user content site; just change the token address to your token address, and the logo filename to your logo filename and type.
git remote set-url origin https://github.com/<YOUR GITHUB USERNAME>/token-list
git add .
git commit -m "first commit for <YOUR TOKEN SYMBOL & NAME>"
git push origin main
You should now see the changes in your forked repository on GitHub.
Also Read: Avalanche and Solana: Quick Comparison
You've made it! Your token is live and has a name. It can now be sent around and used for whatever its utility may be. But, there is no trading pair for the token to be traded on. So, let's create it.
Note: It costs roughly 10-15 SOL to create a market, which right now is around $3500 in total.
Once submitted, you should have a live market that can trade the tokens.
Woohoo! If you made it through all the steps, you have successfully created your token on the Solana blockchain. Now, you have a tradable token.