diff --git a/Token.sol b/Token.sol index a36236f..3e6c14a 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("pehby", "YTN", 18) { _mint(msg.sender, 10000000000 * (10 ** uint256(decimals()))); } }