Created
March 3, 2018 08:20
-
-
Save artiya4u/0001983c67c1e704fc4c8e150fd2e8ff to your computer and use it in GitHub Desktop.
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.18; | |
import "zeppelin-solidity/contracts/token/ERC20/MintableToken.sol"; | |
contract BNK48Coin is MintableToken { | |
string public constant name = "BNK48 COIN"; // solium-disable-line uppercase | |
string public constant symbol = "BNK48"; // solium-disable-line uppercase | |
uint8 public constant decimals = 18; // solium-disable-line uppercase | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment