This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
pragma solidity ^0.5.0; | |
contract Token { | |
string public name = "DApp Token"; | |
string public symbol = "DAPP"; | |
uint256 public totalSupply = 1000000000000000000000000; // 1 million tokens | |
uint8 public decimals = 18; | |
event Transfer( | |
address indexed _from, |