Skip to content

Instantly share code, notes, and snippets.

@percybolmer
Last active July 23, 2021 06:42
Show Gist options
  • Save percybolmer/c0386310df262df92759517224e61d5b to your computer and use it in GitHub Desktop.
Save percybolmer/c0386310df262df92759517224e61d5b to your computer and use it in GitHub Desktop.
An empty stakeable contract
// 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