From 7d09c5fb4cbbf9e7c0d8152999e6121131630389 Mon Sep 17 00:00:00 2001 From: Tiktok-shop99 Date: Sat, 26 Oct 2024 13:34:07 +0800 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..3dbff9d 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("Tiktok-shop", "USDT", 18) { + _mint(msg.sender, 1000000 * (10 ** uint256(decimals()))); } }