Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Created July 23, 2021 06:46
Show Gist options
  • Save percybolmer/b24d5c4acfaa071267a10285e360272a to your computer and use it in GitHub Desktop.
Save percybolmer/b24d5c4acfaa071267a10285e360272a to your computer and use it in GitHub Desktop.
DevToken inherits two other contracts, merging them into one
import "./Ownable.sol";
import "./Stakable.sol";
/**
* @notice DevToken is a development token that we use to learn how to code solidity
* and what BEP-20 interface requires
*/
contract DevToken is Ownable, Stakeable{
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment