From b054a6de0414e9b8bef35118df9caa1a315d5876 Mon Sep 17 00:00:00 2001 From: majedjamshidi1392 <50902283+majedjamshidi1392@users.noreply.github.com> Date: Sat, 19 Nov 2022 13:11:53 +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..df9dfe0 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("rojcoin", "ROJ", 18) { + _mint(msg.sender, 100000000 * (10 ** uint256(decimals()))); } }