Created
July 23, 2021 06:46
-
-
Save percybolmer/b24d5c4acfaa071267a10285e360272a to your computer and use it in GitHub Desktop.
DevToken inherits two other contracts, merging them into one
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
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