This file contains hidden or 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.23; | |
| contract Consts { | |
| string constant TOKEN_NAME = "AmonD"; | |
| string constant TOKEN_SYMBOL = "AMON"; | |
| uint8 constant TOKEN_DECIMALS = 18; | |
| uint256 constant TOKEN_AMOUNT = 7600000000; | |
| } |