Last active
July 23, 2021 06:42
-
-
Save percybolmer/c0386310df262df92759517224e61d5b to your computer and use it in GitHub Desktop.
An empty stakeable contract
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
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.4; | |
/** | |
* @notice Stakeable is a contract who is ment to be inherited by other contract that wants Staking capabilities | |
*/ | |
contract Stakeable { | |
/** | |
* @notice Constructor,since this contract is not ment to be used without inheritance | |
* push once to stakeholders for it to work proplerly | |
*/ | |
constructor() { | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment