From 27fe356235022897725e86e7d0d95e79811233b8 Mon Sep 17 00:00:00 2001 From: MahdiPorled <127298983+MahdiPorled@users.noreply.github.com> Date: Wed, 8 Mar 2023 14:28:07 +0330 Subject: [PATCH] God coin --- Token.sol | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Token.sol b/Token.sol index a36236f..4353cbc 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) { + constructor () public TRC20Detailed("God coin", "gdn", 8) { _mint(msg.sender, 10000000000 * (10 ** uint256(decimals()))); } }