From 54cba06ed7389c445ffc8f42823ffad2e93e5322 Mon Sep 17 00:00:00 2001 From: rado212 Date: Wed, 10 Mar 2021 23:46:45 +0100 Subject: [PATCH] Update ERC20.sol --- ERC20.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ERC20.sol b/ERC20.sol index 602524c..c66dd12 100644 --- a/ERC20.sol +++ b/ERC20.sol @@ -31,7 +31,7 @@ contract SafeMath { } -contract CodeWithJoe is ERC20Interface, SafeMath { +contract 3dToken is ERC20Interface, SafeMath { string public name; string public symbol; uint8 public decimals; // 18 decimals is the strongly suggested default, avoid changing it @@ -47,8 +47,8 @@ contract CodeWithJoe is ERC20Interface, SafeMath { * Initializes contract with initial supply tokens to the creator of the contract */ constructor() public { - name = "CodeWithJoe"; - symbol = "CWJ"; + name = "3dToken"; + symbol = "3dT"; decimals = 18; _totalSupply = 100000000000000000000000000;