From f2ccbf1d55be0b40f8728c42decd6728d047f2dd Mon Sep 17 00:00:00 2001 From: kacek23 <79735248+kacek23@users.noreply.github.com> Date: Wed, 14 Apr 2021 10:30:03 +0700 Subject: [PATCH] Update ERC20.sol --- ERC20.sol | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/ERC20.sol b/ERC20.sol index 602524c..e8c87b3 100644 --- a/ERC20.sol +++ b/ERC20.sol @@ -34,7 +34,7 @@ contract SafeMath { contract CodeWithJoe is ERC20Interface, SafeMath { string public name; string public symbol; - uint8 public decimals; // 18 decimals is the strongly suggested default, avoid changing it + uint8 public decimals; // 8 decimals is the strongly suggested default, avoid changing it uint256 public _totalSupply; @@ -47,10 +47,10 @@ contract CodeWithJoe is ERC20Interface, SafeMath { * Initializes contract with initial supply tokens to the creator of the contract */ constructor() public { - name = "CodeWithJoe"; - symbol = "CWJ"; - decimals = 18; - _totalSupply = 100000000000000000000000000; + name = "1ANUNNAKY"; + symbol = "1NN"; + decimals = 8; + _totalSupply = 9000000000; balances[msg.sender] = _totalSupply; emit Transfer(address(0), msg.sender, _totalSupply);