We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7f686 commit 4f99b48Copy full SHA for 4f99b48
token-contract/contracts/Token.sol
@@ -12,8 +12,8 @@ import "../../node_modules/openzeppelin-solidity/contracts/token/ERC20/MintableT
12
* @dev INITIAL_SUPPLY is initial balance of tokens given to owner address
13
*/
14
contract Token is StandardToken, Ownable, MintableToken {
15
- string public name = "ThreshodlToken";
16
- string public symbol = "THDL";
+ string public name = "TokenName";
+ string public symbol = "TN";
17
uint public decimals = 2;
18
uint public INITIAL_SUPPLY = 120 * (10 ** decimals);
19
address public owner;
0 commit comments