Created
May 17, 2020 05:40
-
-
Save artiya4u/439fdef797ee9b7d27e221f27e2b6e37 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.21 <0.7.0; | |
import "@openzeppelin/contracts/token/ERC20/ERC20Mintable.sol"; | |
import "@openzeppelin/contracts/ownership/Ownable.sol"; | |
contract BNK48Coin is ERC20Mintable { | |
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