HOW TO CREATE TOKEN ON TESTNET AEROCHAIN

AEROCHAIN
3 min readMay 7, 2022

1. We can request faucet on this link : https://faucet.aerochain.id or you can ask moderator group aerochain on telegram. This Taero will be using for gass fee

2. Add our network configuration on metamask ( Testnet Aerochain Network )

3. Launch Remix by navigating to https://remix.ethereum.org Under Environments, select Solidity to configure Remix for Solidity development, then navigate to the File Explorers view: We will create a new file to save the Solidity smart contract. Hit the + button under File Explorers and enter the name for your token.

How to Create and Deploy an ERC20 Token on Aerochain Network

Import the OpenZeppelin ERC20 contract in the Sample.sol file:

And initialize the Token, inheriting from the ERC20.sol contract:

Here we’re declaring a new contract called “SampleToken”, using the Solidity keyword contract, while inheriting from the ERC20 OpenZeppelin’s contract using the “is” keyword.

Inheriting from the ERC20 contract will give us access to methods like _mint() and balanceOf(). If you want to take a look through all the available methods, you can check the official ERC20 documentation.

The next step is to create a cryptocurrency is to call the contract’s constructor and provide the name and symbol of the Sample Token. To do so, inside the contract, write the following code:

Let’s say we want to create 10000 tokens and send them to our wallet, to achieve this, we can add the following code in the constructor:

Deploy Your ERC20 SampleToken Cryptocurrency on Aerochain Network

On REMIX, click on the Solidity icon on the left side of the screen, and click on compile. You might also want to activate auto compile, to allow REMIX to listen for code changes, and compile your code.

This will compile the Sample.sol code, populating the artifacts folder with our Token’s Contract abi (application binary interface) and their binary version, used to deploy it on the blockchain.

Now that we have our artifacts, click on the Ethereum logo under the Solidity icon, select your contract in the dropdown menu, and click on deploy:

Our smartcontract address is

0x46Ae3A52379c9Fb4284e68ca7EcB295464484643

We can check on our explorer that token has been succesfuly deploy

https://testnet.aeroscan.id/address/0x46Ae3A52379c9Fb4284e68ca7EcB295464484643/transactions

On this URL we can check amount SampleToken ( 10000 token )

url : https://testnet.aeroscan.id/tokens

Import Token to metamask

Follow Us :

Official Website : https://aerochain.id/

Medium : https://aerochaincoin.medium.com

Twitter : https://twitter.com/aerochaincoin

Instagram : https://www.instagram.com/aerochain/

Group Global Telegram : https://t.me/AEROCHAINCoin

Group Global Telegram Indonesia : https://t.me/AEROCHAININDONESIA

GITHUB : https://github.com/aerochaincoin/

Find us On :

PancakeSwap, Dex Guru , DEXT, CoinGecko, Coinmarketcap, Bogged Finance

--

--

AEROCHAIN

Aerochain will enable protocols on Ethereum or other EVM-compatible chains to develop on Aerochain’s faster and more efficient blockchain infrastructure.