Created
July 5, 2018 14:22
-
-
Save brandonbryant12/8b003b849ede89e13aa4209d64e95781 to your computer and use it in GitHub Desktop.
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.19; | |
import 'zeppelin-solidity/contracts/token/ERC20/MintableToken.sol'; | |
contract BITTokenTest is MintableToken { | |
string public name = "BITTokenTest"; | |
string public symbol = "BIT"; | |
uint8 public decimals = 18; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment