MrZaKaRiAGit

Eth Token

Open http://remix.ethereum.org/ and paste the code from Token.sol Change the total supply on line 21, default is 10 million: uint256 private constant _tTotal = 10 * 106 * 109; change token name and symbol on lines 25 26 default is Token / TKN string private _name = 'Token';…

Created: 4/9/2021Last pushed: 4/9/2021
Eth Token

Overview

Open http://remix.ethereum.org/ and paste the code from Token.sol Change the total supply on line 21, default is 10 million: uint256 private constant _tTotal = 10 * 106 * 109; change token name and symbol on lines 25 26 default is Token / TKN string private _name = 'Token';…

Tags & Topics
Solidity

Start creating Token

  • Open http://remix.ethereum.org/ and paste the code from Token.sol
  • Change the total supply on line 21, default is 10 million: uint256 private constant _tTotal = 10 * 106 * 109;
  • change token name and symbol on lines 25 26 default is Token / TKN string private _name = 'Token'; string private _symbol = 'TKN';
  • Compile Token.sol

Metamask Wallet

Token Deployment and Test

  • Go to Deploy, choose Injected Web3 Then Deploy
  • Then a gas fees payment window will pop up, if it didn't make sure your opnin remix on http:// not https://
  • Test the existance of Token by name on Binance Testnet Explorer https://testnet.bscscan.com
  • Copy Token Contract Address
  • Add Token to Mestmask wallet by pasting Token Contract Address
  • Congratulations, Token can be sent and received by now

Repository Stats

Stars
1
Forks
0
Watchers
1
Size
15 KB
Primary Language
Solidity
LicenseGPL-2.0
Issues0 Open