BONUS - Launch your own token
Important information
This tutorial is based on the description provided by QuickNode which wrote the tutorial for testnet. You can find the original tutorial here. The video is made by Simple Crypto.
When deploying your token on mainnet, you have to make sure you make the necessary changes as indicated throughout the text but not in the movie.
Set up MetaMask and get BTC on Botanix testnet
To get started, you will need the Metamask browser extension to create an EVM wallet and some Bitcoin, which you can get by following the steps laid out on this link.
Implement contract
Head over to the Ethereum Remix IDE and make a new Solidity file, for example <YOUR_NAME>-token.sol . Paste the following code into your new Solidity script:
Replace the following values:
Line 52: Replace "QKCToken" with your own name (In the example it is BotanixTestToken)
Line 62: symbol = "QKC"; Choose your own symbol
Line 63: name = "QuikNode Coin"; Choose your own name
Line 64: decimals = 2; set the decimal (value in which tokens can be divided, 0 to 8 decimal units can be used) and establish a total supply value as you wish
Line 65 _totalSupply = 100000; Choose a total supply
Line 66: balances[YOUR_METAMASK_WALLET_ADDRESS] = _totalSupply; Please change YOUR_METAMASK_WALLET_ADDRESS to your own wallet address (This one can be found in your MetaMask interface)
Line 67: emit Transfer(address(0), YOUR_METAMASK_WALLET_ADDRESS, _totalSupply);
Compile the smart contract. Make sure you select the right compiler based on the chosen Solidity version.

Deploy it using injected Web3 (make sure to select the Botanix networkon MetaMask before compiling the contract) and select the right contract to be deployed. Approve the transaction from MetaMask.



That’s it! your token contract is now deployed on Botanix!
Get token in MetaMask
To get the token in Metamask, go to the “Deployed Contracts” section in Remix and copy the deployed contract’s address using the copy button near the contract’s name.

Open Metamask, go to the Token tab and click on the Import Tokens button. Paste the contract’s address in the first field. Metamask will fetch the Token Symbol and decimals automatically.

Last updated
Was this helpful?