Skip to content

Instantly share code, notes, and snippets.

@artiya4u
Created May 17, 2020 05:40
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save artiya4u/439fdef797ee9b7d27e221f27e2b6e37 to your computer and use it in GitHub Desktop.
Save artiya4u/439fdef797ee9b7d27e221f27e2b6e37 to your computer and use it in GitHub Desktop.
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