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.4.2; | |
contract DappToken { | |
string public name = "DApp Token"; | |
string public symbol = "DAPP"; | |
string public standard = "DApp Token v1.0"; | |
uint256 public totalSupply; | |
event Transfer( | |
address indexed _from, |