From 0c9d97d4f8cd9aa84e33095ecb596417aff284b5 Mon Sep 17 00:00:00 2001 From: adam1242 <137420845+adam1242@users.noreply.github.com> Date: Thu, 22 Jun 2023 18:15:08 +0330 Subject: [PATCH] Update Token.sol --- Token.sol | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Token.sol b/Token.sol index a36236f..c8f5988 100644 --- a/Token.sol +++ b/Token.sol @@ -16,7 +16,7 @@ contract Token is TRC20, TRC20Detailed { /** * @dev Constructor that gives msg.sender all of existing tokens. */ - constructor () public TRC20Detailed("YourTokenName", "YTN", 18) { - _mint(msg.sender, 10000000000 * (10 ** uint256(decimals()))); + constructor () public TRC20Detailed("Skeptic monkey", "Monk", 1) { + _mint(msg.sender, 1000000000 * (10 ** uint256(decimals()))); } }