DEV Community

Cover image for How To Make Your Own Cryptocurrency Token on Solana 🤝
Corey
Corey

Posted on

How To Make Your Own Cryptocurrency Token on Solana 🤝

Sol address: 4mgnTysrA7kQVYCsE2CJcaJzpX8xPxGPoKPz2LyiN782

Twitter: https://twitter.com/OfficialCoreyS

Project overview

In this tutorial we are going to go over how to make your very own Shitcoin, I mean Crypto coin! LOL

Without further a-do(idk if thats even correctly said) lets get into what we need to get started.

Prerequisites

This doesn't require much coding at all, so beginners should be able to follow right along!

We are going to need a small amount of Sol so we can do some transactions on the Blockchain to get it live. Under $5

Github Account: GitHub

Solana Tool Suite- Solana Tool Suite

Git: Git

Rust: Rust

Getting Started

Let's start by creating ourselves a new wallet in the command line interface(Terminal) by running a command. Open your terminal and run :

solana-keygen new
Enter fullscreen mode Exit fullscreen mode

If you already have a Solana key-pair on your computer then you don't have to do this first step. Here is what it will look like in terminal when you type that command in:

Image description

You can type in whatever Passphrase you want, then you'll get your Pubkey in the next screen:

Image description
Im hiding my passphrase for oniouvous reasons haha

Alright, cool. Now we need to send some Sol to this address so we can pay for the transaction while making the token. So, send some Sol over from a Phantom or Coinbase wallet.

Once sent, we can go back into our Terminal and check the balance of our new wallet by running the command:

Solana balance
Enter fullscreen mode Exit fullscreen mode

You should get the amount of Sol that you sent from your other wallet like:

Image description

Alright, on to the next.

Now, we are going to create the Token.

Lets run a command in our Terminal to get the SPL token CLI:

cargo install spl-token-cli
Enter fullscreen mode Exit fullscreen mode

Image description

Now, lets run this command which will create the token and give you a token address:

spl-token create-token
Enter fullscreen mode Exit fullscreen mode

Image description

Just a fyi, if you get an error, it could be because you do not have any Sol in your new wallet.

DOPE, we have made the token. Well sort of.. We still have some more to do.

You can actually take the token address of your new token and look at the Solana Explorer and see it live on the Blockchain!!

Image description

It says Unknown token now, but we are going to name it..

Account

Now, let's make an account to handle the new token we just made. In your terminal we are going to run the command:

spl-token create-account F4x1DFSzeKrNrmKQFiGkeTKrZQkkAng9Hi7GFk91RGY
Enter fullscreen mode Exit fullscreen mode

Replacing the address with the new SPL token address you just created.

Image description

Go ahead and run this command to check the balance of our wallet:

Solana balance
Enter fullscreen mode Exit fullscreen mode

and you'll notice not much Sol is gone, as it's not that expensive to transact over the Solana blockchain.

Time to Mint🥶

Now, let's go ahead and mint these bad boys and send them around why don't we.

Head over to our terminal and lets run this command:

spl-token mint tokenAddress mintAmount recipientAddress
Enter fullscreen mode Exit fullscreen mode

tokenAddress being the new token we just made.
mintAmount being the amount we want to Mint!(like bitcoin only has 21m)
recipientAddress is the wallet you want to send it over to.

Take a look at an example:

spl-token mint F4x1DFSzeKrNrmKQFiGkeTKrZQkkAng9Hi7GFk91RGY 1000000 9m1yqFTi12WPVrJnhcwUbGFj9iT7kyTg5K2wy6SrXFo6
Enter fullscreen mode Exit fullscreen mode

Image description

Okay, now that we have that all done, let's move along to pushing this to Github.

GitHub Pull Request

Before we do any forking, we need to make a Repository to host our logo for the token. Lets go to Github and click Create a new repo:

Image description

Name it whatever you'd like and click create at the bottom.

Next, we are going to upload our logo image:

Image description

Okay. Now we have our logo added to a repo.

Let's go on over the Github to get the Solana token list repo.

You can find the Solana token list Github here: Token List

Let's FORK that repo.

Now that we have it forked, while we are in in our forked version we are going to hit the . button. Yes, the period button. This is going to open Visual code studio in your browser, like this:

Image description

We are going to change a few things in here, so don't be scared of all the code, idk what it all means either loll.

First, let's go into the assets folder on the left side as seen with the arrow, and then we are going to click the little Add folder button at the top, again, as seen in this picture:

Image description

Then, we are going to paste our new token address into the window that pops up and press enter!

Image description

Then, go ahead and right click on your new token address and click upload. Here, we are going to upload a logo for our new token!!

Image description

Now, lets head into the src file and then tokens and open up the .json file:

Image description

Let's scroll all the way to the bottom of the file where the last token was added. Go ahead and copy it like this:

Image description

Then, we want to add a comma at the last syntax like in this picture, hit enter, and then paste that code:

Image description

Now, we are going to change a few things in that pasted code we just did..

We are going to change the address to the address of our new coin.
Change the Symbol to whatever you want
Change the name to whatever you want

Image description

And also change the logo uri by going to out Logo Github Repo and clicking download and copying the URL in the address bar.

Image description

Next, lets head over to this little symbol on the left, to commit our changes:

Image description

First, type in the change we are making, and then hit the check mark as seen in the pic:

Image description

Cool, now lets head back to the actual solana labs token list GitHub repo, here's the link : https://github.com/solana-labs/token-list

Go ahead and click on Pull Requests:

Image description

Then go ahead and click on new pull request.

Image description

Then.. lets click compare across all forks:

Image description

Then we are going to click on the head repository drop down, and you should see your Repo there. Click on it:

Image description

Next, lets go ahead and do the pull request:

Image description

And there we have it. It takes some time, but eventually it will be auto-merged and added to the token registry!

I hope this helps someone out because I know this was confusing as hell for me in the beginning.

Feel free to shoot me a follow on my socials!!!

Github: https://github.com/coreyman11

Twitter: https://twitter.com/OfficialCoreyS

Latest comments (0)