From d891a2c601a6e5b094140dad111e513260d64d0b Mon Sep 17 00:00:00 2001 From: mycoinbtc2002 <93606177+mycoinbtc2002@users.noreply.github.com> Date: Tue, 2 Nov 2021 19:08:12 +0300 Subject: [PATCH] Update Token.sol --- Token.sol | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Token.sol b/Token.sol index 998157f..381ed08 100644 --- a/Token.sol +++ b/Token.sol @@ -16,7 +16,7 @@ contract Token is ERC20, ERC20Detailed { /** * @dev Constructor that gives msg.sender all of existing tokens. */ - constructor () public ERC20Detailed("YourTokenName", "YTN", 18) { - _mint(msg.sender, 10000000000 * (10 ** uint256(decimals()))); + constructor () public ERC20Detailed("SABA", "SBH", 6) { + _mint(msg.sender, 21000000 * (10 ** uint256(decimals()))); } -} \ No newline at end of file +}