Contract Source Code:
<i class='far fa-question-circle text-muted ms-2' data-bs-trigger='hover' data-bs-toggle='tooltip' data-bs-html='true' data-bs-title='Click on the check box to select individual contract to compare. Only 1 contract can be selected from each side.'></i>
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(newOwner != address(0), "Ownable: new owner is the zero address");
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
} <i class='far fa-question-circle text-muted ms-2' data-bs-trigger='hover' data-bs-toggle='tooltip' data-bs-html='true' data-bs-title='Click on the check box to select individual contract to compare. Only 1 contract can be selected from each side.'></i>
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(address indexed owner, address indexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(address owner, address spender) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
} <i class='far fa-question-circle text-muted ms-2' data-bs-trigger='hover' data-bs-toggle='tooltip' data-bs-html='true' data-bs-title='Click on the check box to select individual contract to compare. Only 1 contract can be selected from each side.'></i>
// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)
pragma solidity ^0.8.0;
/**
* @dev Provides information about the current execution context, including the
* sender of the transaction and its data. While these are generally available
* via msg.sender and msg.data, they should not be accessed in such a direct
* manner, since when dealing with meta-transactions the account sending and
* paying for execution may not be the actual sender (as far as an application
* is concerned).
*
* This contract is only required for intermediate, library-like contracts.
*/
abstract contract Context {
function _msgSender() internal view virtual returns (address) {
return msg.sender;
}
function _msgData() internal view virtual returns (bytes calldata) {
return msg.data;
}
} <i class='far fa-question-circle text-muted ms-2' data-bs-trigger='hover' data-bs-toggle='tooltip' data-bs-html='true' data-bs-title='Click on the check box to select individual contract to compare. Only 1 contract can be selected from each side.'></i>
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "@openzeppelin/contracts/access/Ownable.sol";
import "@openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IBank is IERC20 {
function mint(uint) external returns (uint);
function burn(uint) external returns (uint);
function circulatingSupply() external view returns (uint);
}
interface IFavor {
function start() external;
function resetContributions() external;
function getFavors() external view returns (uint, uint);
}
interface IPoolLP {
function start() external;
}
interface IRandom {
function getRandomNb(uint) external view returns (uint);
}
contract Staking is Ownable {
struct Epoch {
uint8 winner;
uint amount;
}
IERC20 public immutable TOKEN;
IBank public immutable BANK1;
IBank public immutable BANK2;
IFavor public immutable FAVOR;
IPoolLP public immutable POOL_LP;
IRandom public immutable RANDOM;
uint public roundStartTime;
uint public UNLOCKED_DURATION = 8 hours;
uint public EPOCH_DURATION = 1 days;
uint public PAYOUT = 1000;
uint public MAX_WIN_RATE = 7500;
uint public MIN_WIN_RATE = 2500;
uint public FEE = 100;
uint private constant DENOMINATOR = 10000;
uint public epochNb;
Epoch[] public epoch;
address public receiver;
constructor(
IERC20 token,
IBank bank1,
IBank bank2,
IFavor favor,
IPoolLP poolLP,
IRandom random,
address receiver_
)
{
TOKEN = token;
BANK1 = bank1;
BANK2 = bank2;
FAVOR = favor;
POOL_LP = poolLP;
RANDOM = random;
receiver = receiver_;
}
function start() external onlyOwner {
require(roundStartTime == 0, "Already initialized");
roundStartTime = block.timestamp;
FAVOR.start();
POOL_LP.start();
}
function stake(bool bank, uint amountIn) external {
_update();
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
TOKEN.transferFrom(msg.sender, address(this), amount);
if (fee > 0) TOKEN.transferFrom(msg.sender, receiver, fee);
if (!bank) BANK1.transfer(msg.sender, amount);
else BANK2.transfer(msg.sender, amount);
}
function unstake(bool bank, uint amountIn) external {
_update();
if (!bank) BANK1.transferFrom(msg.sender, address(this), amountIn);
else BANK2.transferFrom(msg.sender, address(this), amountIn);
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
TOKEN.transfer(msg.sender, amount);
if (fee > 0) TOKEN.transfer(receiver, fee);
}
function jump(bool bank) external {
if (!bank) {
uint amountIn = BANK1.balanceOf(msg.sender);
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
BANK1.transferFrom(msg.sender, address(this), amountIn);
BANK2.transfer(msg.sender, amount);
if (fee > 0) TOKEN.transfer(receiver, fee);
} else {
uint amountIn = BANK2.balanceOf(msg.sender);
(uint amount, uint fee) = _computeAmountAndFee(amountIn);
BANK2.transferFrom(msg.sender, address(this), amountIn);
BANK1.transfer(msg.sender, amount);
if (fee > 0) TOKEN.transfer(receiver, fee);
}
}
function setReceiver(address newReceiver) external onlyOwner {
receiver = newReceiver;
}
function updateStorage(uint[] calldata array) external onlyOwner {
UNLOCKED_DURATION = array[0];
EPOCH_DURATION = array[1];
PAYOUT = array[2];
MAX_WIN_RATE = array[3];
MIN_WIN_RATE = array[4];
FEE = array[5];
}
function epochLength() public view returns (uint) {
return epoch.length;
}
function getEpochs(uint cursor, uint size) external view returns (Epoch[] memory out) {
uint maxLength = epochLength();
uint length = size > maxLength - cursor ? maxLength - cursor : size;
out = new Epoch[](length);
for (uint i; i < length; i++) out[i] = epoch[cursor + i];
}
function getWinRates() public view returns (uint winRate1, uint winRate2) {
uint staked1 = BANK1.circulatingSupply();
uint staked2 = BANK2.circulatingSupply();
if (staked1 == 0 && staked2 == 0) return (0, 0);
winRate1 = staked1 * DENOMINATOR / (staked1 + staked2);
winRate2 = DENOMINATOR - winRate1;
}
function getWinRatesWithFavors() public view returns (uint winRate1, uint winRate2) {
(winRate1,) = getWinRates();
if (winRate1 == 0 || winRate1 == DENOMINATOR) return (0, 0);
(uint favor1, uint favor2) = FAVOR.getFavors();
if (favor1 > 0) {
winRate1 += favor1;
} else if (favor2 > 0) {
if (favor2 > winRate1) winRate1 = MIN_WIN_RATE;
else winRate1 -= favor2;
}
if (winRate1 > MAX_WIN_RATE) winRate1 = MAX_WIN_RATE;
if (winRate1 < MIN_WIN_RATE) winRate1 = MIN_WIN_RATE;
winRate2 = DENOMINATOR - winRate1;
}
function _update() internal {
uint roundStartTimeCached = roundStartTime;
require(roundStartTimeCached != 0, "Didn't start yet");
if (block.timestamp > roundStartTimeCached + EPOCH_DURATION) {
roundStartTime = block.timestamp;
_endEpoch();
} else if (block.timestamp > roundStartTimeCached + UNLOCKED_DURATION) {
revert("Tokens are locked");
}
}
function _endEpoch() internal {
(uint winRate1,) = getWinRatesWithFavors();
if (winRate1 == 0) return;
FAVOR.resetContributions();
uint randomNumber = RANDOM.getRandomNb(DENOMINATOR);
if (randomNumber < winRate1) {
uint payout = BANK2.circulatingSupply() * PAYOUT / DENOMINATOR;
BANK1.mint(payout);
BANK2.burn(payout);
epoch.push(Epoch(1,payout));
} else {
uint payout = BANK1.circulatingSupply() * PAYOUT / DENOMINATOR;
BANK2.mint(payout);
BANK1.burn(payout);
epoch.push(Epoch(2,payout));
}
epochNb += 1;
}
function _computeAmountAndFee(uint amount) internal view returns (uint, uint) {
uint fee = amount * FEE / DENOMINATOR;
amount -= fee;
return (amount, fee);
}
}