Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
Contract is not verified. However, we found a verified contract with the same bytecode in Blockscout DB 0xebd9e5e63166a6133513c00bd3cd32dc227f0032.
All metadata displayed below is from that contract. In order to verify current contract, click Verify & Publish button
Verify & Publish
All metadata displayed below is from that contract. In order to verify current contract, click Verify & Publish button
- Contract name:
- TangleswapVEStaking
- Optimization enabled
- true
- Compiler version
- v0.8.17+commit.8df45f5f
- Optimization runs
- 200
- Verified at
- 2023-12-14T15:55:22.607087Z
contracts/TangleswapVEStaking.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./interfaces/IVEStaking.sol"; // Uncomment this line to use console.log // import "hardhat/console.sol"; contract TangleswapVEStaking is IVEStaking, Ownable, ReentrancyGuard { using SafeERC20 for IERC20Metadata; using SafeMath for uint256; /* ========== STATE VARIABLES ========== */ // The void token IERC20Metadata public voidToken; // Accrued token per share uint256 public accTokenPerShare; // VOID reward rate uint256 public rewardRate; // The block time of the last pool update uint256 public lastRewardTime; // The block time when VOID mining starts uint256 public startTime; // The block number when VOID mining ends uint256 public bonusEndTime; // Minimum lock days uint256 public minimumLockDays = 7 days; // Maximum lock days uint256 public maximumLockDays = 1400 days; // The precision factor uint256 public PRECISION_FACTOR; // minimum stakeable amount uint256 public minimumStakeableAmount; // Total staked token uint256 public stakedTokenSupply; // global VE uint256 public globalVE; // Info of each user that stakes tokens (stakedToken) mapping(address => UserInfo) public userInfo; struct UserInfo { uint256 amount; // How many staked tokens the user has provided uint256 stakeStartTime; // Start time uint256 lockDuration; // Lock duration uint256 stakeEndTime; // End time uint256 userVE; // User's VOID Energy uint256 rewardDebt; // Reward debt } /* ========== EVENTS ========== */ event Stake(address indexed user, uint256 amount, uint256 lockDuration); event Unstake(address indexed user, uint256 amount); event Restake(address indexed user, uint256, uint256 newLockDuration); event EmergencyWithdraw(address indexed user, uint256 amount); event EmergencyRewardWithdraw(uint256 amount); event NewRewardRate(uint256 rewardRate); event NewMinimumStakeableAmount(uint256 minimumStakeableAmount); event NewStartAndEndTime(uint256 startTime, uint256 endTime); event TokenRecovery(address indexed token, uint256 amount); event StopReward(); /* ========== CONSTRUCTOR ========== */ /** * @notice Constructor of VE staking contract */ constructor( IERC20Metadata _voidToken, uint256 _minimumStakeableAmount, uint256 _rewardRate, uint256 _startTime, uint256 _bonusEndTime ) { require(address(_voidToken) != address(0), "invalid address"); require(_minimumStakeableAmount > 0, "invalid amount"); require(_rewardRate > 0, "invalid rate"); require(_bonusEndTime > _startTime, "endTime > startTime"); voidToken = _voidToken; minimumStakeableAmount = _minimumStakeableAmount; rewardRate = _rewardRate; startTime = _startTime; bonusEndTime = _bonusEndTime; uint256 decimalsRewardToken = uint256(voidToken.decimals()); require(decimalsRewardToken < 30, "inferior to 30"); PRECISION_FACTOR = uint256(10 ** (uint256(30) - decimalsRewardToken)); // Set the lastRewardBlock as the startBlock lastRewardTime = startTime; } /* ========== MUTATIVE FUNCTIONS ========== */ /* * @notice Stake VOID tokens and collect reward VOID tokens (if any). * If it is the second deposit, the amount and lock duration can be 0. Represents the case of `add VOID` and `extend duration`. * @param _amount: amount to stake * @param _lockDuration: lock duration */ function stake(uint256 _amount, uint256 _lockDuration) external nonReentrant { require(_now() > startTime, "not started"); require(_now() < bonusEndTime, "ended"); if (_amount == 0 && _lockDuration == 0) { revert("Cannot all be 0"); } UserInfo storage user = userInfo[_msgSender()]; uint256 previouslyAmount = user.amount; if (previouslyAmount == 0) { // If the user stakes for the first time, check the minimum stakeable amount require(_amount >= minimumStakeableAmount, "amount is too small"); } require(_lockDuration.mod(1 days) == 0, "multiple of days"); if (previouslyAmount > 0) { // can only re-stake or unstake after expiration require(_now() < user.stakeEndTime, "can only re-stake or unstake"); } uint256 extendedLockDuration = user.lockDuration + _lockDuration; require( extendedLockDuration >= minimumLockDays && extendedLockDuration <= maximumLockDays, "invalid lock duration" ); _updatePool(); // Collect reward tokens(if any) uint256 pending = user .amount .mul(accTokenPerShare) .div(PRECISION_FACTOR) .sub(user.rewardDebt) .mul(_getUserStakeIntervalTime(user)) .div(_getRewardIntervalTime()); if (pending > 0) { // When paying user rewards, the funds staked by the user cannot be used uint256 rewardTokenBalance = voidToken.balanceOf(address(this)) - stakedTokenSupply; require(rewardTokenBalance >= pending, "insufficient reward"); voidToken.safeTransfer(_msgSender(), pending); } uint256 decimalsStakedToken = uint256(voidToken.decimals()); // update UserInfo // if previously locked VOID, add more VOID to current stake user.amount = (previouslyAmount > 0) ? (previouslyAmount + _amount) : _amount; // extend stake duration user.lockDuration = extendedLockDuration; user.stakeStartTime = _now(); user.stakeEndTime = user.stakeStartTime + user.lockDuration; // 1 VE per VOID per day uint256 newUserVE = user.amount.div(10 ** decimalsStakedToken).mul(user.lockDuration.div(1 days)); // update global VE by minus old VE and adding new VE globalVE = globalVE - user.userVE + newUserVE; user.userVE = newUserVE; if (_amount > 0) { // transfer VOID token to contract voidToken.safeTransferFrom(_msgSender(), address(this), _amount); // update staked token supply stakedTokenSupply += _amount; } user.rewardDebt = (user.amount * accTokenPerShare) / PRECISION_FACTOR; emit Stake(_msgSender(), _amount, _lockDuration); } /* * @notice Withdraw staked tokens and collect reward tokens */ function unstake() external nonReentrant { UserInfo storage user = userInfo[_msgSender()]; uint256 amount = user.amount; require(amount > 0, "Not a staker"); // cannot withdraw within lock duration require(_now() > user.stakeEndTime, "Still in lock duration"); _updatePool(); // get reward uint256 pending = user .amount .mul(accTokenPerShare) .div(PRECISION_FACTOR) .sub(user.rewardDebt) .mul(_getUserStakeIntervalTime(user)) .div(_getRewardIntervalTime()); if (pending > 0) { // When paying user rewards, the funds staked by the user cannot be used uint256 rewardTokenBalance = voidToken.balanceOf(address(this)) - stakedTokenSupply; require(rewardTokenBalance >= pending, "insufficient reward"); voidToken.safeTransfer(_msgSender(), pending); } // reduce staked token supply stakedTokenSupply -= amount; // update global VE globalVE -= user.userVE; // User lose all VE // withdraw stakedToken delete userInfo[_msgSender()]; // reset user's data voidToken.safeTransfer(_msgSender(), amount); emit Unstake(_msgSender(), amount); } /** * @notice Re-stake when lock time expires, re-stake same VOID and set new duration * @param _newDuration The new duration */ function restake(uint256 _newDuration) external nonReentrant { // The pool has not started yet require(_now() > startTime, "not started"); require(_now() < bonusEndTime, "ended"); require(_newDuration.mod(1 days) == 0, "multiple of days"); UserInfo storage user = userInfo[_msgSender()]; require(user.amount > 0, "Not a staker"); // can only re-stake when lock time expires require(_now() >= user.stakeEndTime, "can only re-stake"); require(_newDuration >= minimumLockDays && _newDuration <= maximumLockDays, "invalid lock duration"); _updatePool(); // Collect reward tokens(if any) uint256 pending = user .amount .mul(accTokenPerShare) .div(PRECISION_FACTOR) .sub(user.rewardDebt) .mul(_getUserStakeIntervalTime(user)) .div(_getRewardIntervalTime()); if (pending > 0) { // When paying user rewards, the funds staked by the user cannot be used uint256 rewardTokenBalance = voidToken.balanceOf(address(this)) - stakedTokenSupply; require(rewardTokenBalance >= pending, "insufficient reward"); voidToken.safeTransfer(_msgSender(), pending); } uint256 decimalsStakedToken = uint256(voidToken.decimals()); // update UserInfo // set new duration user.lockDuration = _newDuration; user.stakeStartTime = _now(); user.stakeEndTime = user.stakeStartTime + user.lockDuration; // 1 VE per VOID per day uint256 newUserVE = user.amount.div(10 ** decimalsStakedToken).mul(user.lockDuration.div(1 days)); // update global VE by minus old VE and adding new VE globalVE = globalVE - user.userVE + newUserVE; user.userVE = newUserVE; user.rewardDebt = user.amount.mul(accTokenPerShare).div(PRECISION_FACTOR); emit Restake(_msgSender(), user.amount, _newDuration); } /* * @notice Withdraw staked tokens without caring about rewards * @dev Needs to be for emergency. User will lose all VE */ function emergencyWithdraw() external nonReentrant { UserInfo storage user = userInfo[_msgSender()]; uint256 amountToTransfer = user.amount; require(amountToTransfer > 0, "Not a staker"); // cannot withdraw within lock duration require(_now() > user.stakeEndTime, "Still in lock duration"); // reduce stakedTokenSupply stakedTokenSupply -= amountToTransfer; // update global VE globalVE -= user.userVE; // User lose all VE // withdraw stakedToken delete userInfo[_msgSender()]; // reset user's data voidToken.safeTransfer(_msgSender(), amountToTransfer); emit EmergencyWithdraw(_msgSender(), amountToTransfer); } /* ========== VIEWS ========== */ /* * @notice View function to see pending reward on frontend. * @param _user: user address * @return Pending reward for a given user */ function pendingRewards(address _user) external view returns (uint256) { UserInfo memory user = userInfo[_user]; if (user.amount == 0) { // Not a staker, pending rewards will be 0 return 0; } if (_now() > lastRewardTime && stakedTokenSupply != 0) { uint256 multiplier = _getMultiplier(lastRewardTime, _now()); uint256 voidTokenReward = multiplier * rewardRate; uint256 adjustedTokenPerShare = accTokenPerShare + (voidTokenReward * PRECISION_FACTOR) / stakedTokenSupply; return user .amount .mul(adjustedTokenPerShare) .div(PRECISION_FACTOR) .sub(user.rewardDebt) .mul(_getUserStakeIntervalTime(user)) .div(_getRewardIntervalTime()); } else { return user .amount .mul(accTokenPerShare) .div(PRECISION_FACTOR) .sub(user.rewardDebt) .mul(_getUserStakeIntervalTime(user)) .div(_getRewardIntervalTime()); } } /** * @notice Get user info by account * @param _user The user address * @return User info of a given user */ function getUserInfo(address _user) external view returns (uint256, uint256, uint256, uint256, uint256, uint256) { UserInfo memory user = userInfo[_user]; return (user.amount, user.stakeStartTime, user.lockDuration, user.stakeEndTime, user.userVE, user.rewardDebt); } /** * Check whether the user's previous stake has exceeded the lock period. * @param _user The user address */ function isLockTimeExpired(address _user) external view returns (bool) { UserInfo memory user = userInfo[_user]; if (user.amount == 0) { // Not a staker return false; } return _now() >= user.stakeEndTime; } function currentBlock() external view returns (uint256) { return block.number; } /* ========== INTERNAL FUNCTIONS ========== */ function _min(uint256 x, uint256 y) internal pure returns (uint256) { return x <= y ? x : y; } function _min(uint256 x, uint256 y, uint256 z) internal pure returns (uint256) { uint256 t = x < y ? x : y; return t < z ? t : z; } /** * @return Returns current timestamp. */ function _now() internal view returns (uint256) { // solhint-disable-next-line not-rely-on-time return block.timestamp; } /* * @notice Update reward variables of the given pool to be up-to-date. */ function _updatePool() internal { if (_now() <= lastRewardTime) { return; } if (stakedTokenSupply == 0) { lastRewardTime = _now(); return; } uint256 multiplier = _getMultiplier(lastRewardTime, _now()); uint256 voidTokenReward = multiplier * rewardRate; accTokenPerShare = accTokenPerShare + (voidTokenReward * PRECISION_FACTOR) / stakedTokenSupply; lastRewardTime = _now(); } /* * @notice Return reward multiplier over the given _from to _to block. * @param _from: block to start * @param _to: block to finish */ function _getMultiplier(uint256 _from, uint256 _to) internal view returns (uint256) { if (_to <= bonusEndTime) { return _to - _from; } else if (_from >= bonusEndTime) { return 0; } else { return bonusEndTime - _from; } } function _getUserStakeIntervalTime(UserInfo memory _user) internal view returns (uint256) { return _min(_now(), _user.stakeEndTime, bonusEndTime) - _user.stakeStartTime; } function _getRewardIntervalTime() internal view returns (uint256) { return _min(_now(), bonusEndTime) - startTime; } /* ========== RESTRICTED FUNCTIONS ========== */ /** * Update minimum stakeable amount */ function updateMinimumStakeableAmount(uint256 _minimumStakeableAmount) external onlyOwner { require(_minimumStakeableAmount > 0, "Invalid amount"); minimumStakeableAmount = _minimumStakeableAmount; emit NewMinimumStakeableAmount(minimumStakeableAmount); } /* * @notice Stop rewards * @dev Only callable by owner. Needs to be for emergency. */ function emergencyRewardWithdraw(uint256 _amount) external onlyOwner { // When paying user rewards, the funds staked by the user cannot be used uint256 rewardBalance = voidToken.balanceOf(address(this)) - stakedTokenSupply; require(_amount <= rewardBalance, "Cannot exceed reward amount"); voidToken.safeTransfer(_msgSender(), _amount); emit EmergencyRewardWithdraw(_amount); } /** * @notice Allows the owner to recover tokens sent to the contract by mistake * @param _token: token address * @dev Callable by owner */ function recoverToken(address _token) external onlyOwner { require(_token != address(voidToken), "void token unsupported"); uint256 balance = IERC20Metadata(_token).balanceOf(address(this)); require(balance != 0, "zero balance"); IERC20Metadata(_token).safeTransfer(_msgSender(), balance); emit TokenRecovery(_token, balance); } /* * @notice Stop rewards * @dev Only callable by owner */ function stopReward() external onlyOwner { bonusEndTime = _now(); emit StopReward(); } /* * @notice Update reward rate * @dev Only callable by owner. * @param _rewardRate: the reward rate */ function updateRewardRate(uint256 _rewardRate) external onlyOwner { rewardRate = _rewardRate; emit NewRewardRate(_rewardRate); } /** * @notice It allows the admin to update start and end blocks * @dev This function is only callable by owner. * @param _newStartTime: the new start time * @param _newBonusEndTime: the new end time */ function updateStartAndEndTime(uint256 _newStartTime, uint256 _newBonusEndTime) external onlyOwner { require(_now() < startTime, "has started"); require(_newStartTime < _newBonusEndTime, "start time < end time"); require(_now() < _newStartTime, "start time > current time"); startTime = _newStartTime; bonusEndTime = _newBonusEndTime; emit NewStartAndEndTime(_newStartTime, _newBonusEndTime); } }
@openzeppelin/contracts/access/Ownable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling 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); } }
@openzeppelin/contracts/security/ReentrancyGuard.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
@openzeppelin/contracts/token/ERC20/IERC20.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.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); }
@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
@openzeppelin/contracts/token/ERC20/extensions/IERC20Permit.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.3) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
@openzeppelin/contracts/utils/Address.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
@openzeppelin/contracts/utils/Context.sol
// 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; } }
@openzeppelin/contracts/utils/math/SafeMath.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
contracts/interfaces/IVEStaking.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.17; interface IVEStaking { function stake(uint256 _amount, uint256 _lockDuration) external; function restake(uint256 _newDuration) external; function unstake() external; function emergencyWithdraw() external; function pendingRewards(address _user) external view returns (uint256); }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_voidToken","internalType":"contract IERC20Metadata"},{"type":"uint256","name":"_minimumStakeableAmount","internalType":"uint256"},{"type":"uint256","name":"_rewardRate","internalType":"uint256"},{"type":"uint256","name":"_startTime","internalType":"uint256"},{"type":"uint256","name":"_bonusEndTime","internalType":"uint256"}]},{"type":"event","name":"EmergencyRewardWithdraw","inputs":[{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"EmergencyWithdraw","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"NewMinimumStakeableAmount","inputs":[{"type":"uint256","name":"minimumStakeableAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"NewRewardRate","inputs":[{"type":"uint256","name":"rewardRate","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"NewStartAndEndTime","inputs":[{"type":"uint256","name":"startTime","internalType":"uint256","indexed":false},{"type":"uint256","name":"endTime","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"OwnershipTransferred","inputs":[{"type":"address","name":"previousOwner","internalType":"address","indexed":true},{"type":"address","name":"newOwner","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Restake","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"","internalType":"uint256","indexed":false},{"type":"uint256","name":"newLockDuration","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Stake","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false},{"type":"uint256","name":"lockDuration","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"StopReward","inputs":[],"anonymous":false},{"type":"event","name":"TokenRecovery","inputs":[{"type":"address","name":"token","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unstake","inputs":[{"type":"address","name":"user","internalType":"address","indexed":true},{"type":"uint256","name":"amount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"PRECISION_FACTOR","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"accTokenPerShare","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"bonusEndTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"currentBlock","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencyRewardWithdraw","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"emergencyWithdraw","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"},{"type":"uint256","name":"","internalType":"uint256"}],"name":"getUserInfo","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"globalVE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"isLockTimeExpired","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lastRewardTime","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maximumLockDays","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minimumLockDays","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"minimumStakeableAmount","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"owner","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"pendingRewards","inputs":[{"type":"address","name":"_user","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"recoverToken","inputs":[{"type":"address","name":"_token","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceOwnership","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"restake","inputs":[{"type":"uint256","name":"_newDuration","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"rewardRate","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stake","inputs":[{"type":"uint256","name":"_amount","internalType":"uint256"},{"type":"uint256","name":"_lockDuration","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"stakedTokenSupply","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"startTime","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"stopReward","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"transferOwnership","inputs":[{"type":"address","name":"newOwner","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unstake","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateMinimumStakeableAmount","inputs":[{"type":"uint256","name":"_minimumStakeableAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateRewardRate","inputs":[{"type":"uint256","name":"_rewardRate","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateStartAndEndTime","inputs":[{"type":"uint256","name":"_newStartTime","internalType":"uint256"},{"type":"uint256","name":"_newBonusEndTime","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"amount","internalType":"uint256"},{"type":"uint256","name":"stakeStartTime","internalType":"uint256"},{"type":"uint256","name":"lockDuration","internalType":"uint256"},{"type":"uint256","name":"stakeEndTime","internalType":"uint256"},{"type":"uint256","name":"userVE","internalType":"uint256"},{"type":"uint256","name":"rewardDebt","internalType":"uint256"}],"name":"userInfo","inputs":[{"type":"address","name":"","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20Metadata"}],"name":"voidToken","inputs":[]}]
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106101da5760003560e01c80639231cf7411610104578063ccd34cd5116100a2578063e96ebf3f11610071578063e96ebf3f14610438578063ee1a629514610441578063f2fde38b1461044a578063f80b3dd01461045d57600080fd5b8063ccd34cd514610418578063db2e21bc14610421578063e12ed13c14610429578063e3af04ed1461042f57600080fd5b8063b479cb66116100de578063b479cb66146103bc578063b87e3eef146103cf578063bce1b520146103f2578063c72dce0d1461040557600080fd5b80639231cf741461038d5780639be65a60146103965780639ef3a261146103a957600080fd5b8063715018a61161017c57806380dc06721161014b57806380dc06721461034e5780638da5cb5b146103565780638f6629151461037b578063921979af1461038457600080fd5b8063715018a61461032157806378e97925146103295780637b0472f0146103325780637b0a47ee1461034557600080fd5b806331d7a262116101b857806331d7a262146102755780633279beab1461028857806341051bb71461029b5780636386c1c7146102a457600080fd5b80631219f747146101df5780631959a002146101fb5780632def66201461026b575b600080fd5b6101e860085481565b6040519081526020015b60405180910390f35b61023e610209366004611e0a565b600e60205260009081526040902080546001820154600283015460038401546004850154600590950154939492939192909186565b604080519687526020870195909552938501929092526060840152608083015260a082015260c0016101f2565b610273610470565b005b6101e8610283366004611e0a565b610708565b610273610296366004611e33565b610863565b6101e8600b5481565b61023e6102b2366004611e0a565b6001600160a01b03166000908152600e6020908152604091829020825160c08101845281548082526001830154938201849052600283015494820185905260038301546060830181905260048401546080840181905260059094015460a0909301839052909593949390929190565b610273610979565b6101e860065481565b610273610340366004611e4c565b61098b565b6101e860045481565b610273610eae565b6000546001600160a01b03165b6040516001600160a01b0390911681526020016101f2565b6101e860035481565b6101e8600c5481565b6101e860055481565b6102736103a4366004611e0a565b610ee5565b6102736103b7366004611e33565b61104b565b6102736103ca366004611e4c565b61108f565b6103e26103dd366004611e0a565b6111ac565b60405190151581526020016101f2565b610273610400366004611e33565b611226565b610273610413366004611e33565b611651565b6101e8600a5481565b6102736116cf565b436101e8565b6101e860095481565b6101e8600d5481565b6101e860075481565b610273610458366004611e0a565b611813565b600254610363906001600160a01b031681565b610478611889565b336000908152600e602052604090208054806104af5760405162461bcd60e51b81526004016104a690611e6e565b60405180910390fd5b600382015442116104fb5760405162461bcd60e51b815260206004820152601660248201527529ba34b6361034b7103637b1b590323ab930ba34b7b760511b60448201526064016104a6565b6105036118e2565b6000610598610510611953565b6040805160c08101825286548152600187015460208201526002870154918101919091526003860154606082015260048601546080820152600586015460a08201526105869061055f90611979565b610592876005015461058c600a546105866003548c600001546119a790919063ffffffff16565b906119b3565b906119bf565b906119a7565b9050801561065757600c546002546040516370a0823160e01b8152306004820152600092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156105ed573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106119190611e94565b61061b9190611ec3565b90508181101561063d5760405162461bcd60e51b81526004016104a690611ed6565b610655335b6002546001600160a01b031690846119cb565b505b81600c60008282546106699190611ec3565b90915550506004830154600d8054600090610685908490611ec3565b9091555050336000818152600e6020526040812081815560018101829055600281018290556003810182905560048101829055600501556106c590610642565b60405182815233907f85082129d87b2fe11527cb1b3b7a520aeb5aa6913f88a3d8757fe40d1db02fdd9060200160405180910390a250505061070660018055565b565b6001600160a01b0381166000908152600e60209081526040808320815160c081018352815480825260018301549482019490945260028201549281019290925260038101546060830152600481015460808301526005015460a08201529082036107755750600092915050565b600554421180156107875750600c5415155b1561081e5760006107a060055461079b4290565b611a33565b90506000600454826107b29190611f03565b90506000600c54600a54836107c79190611f03565b6107d19190611f30565b6003546107de9190611f44565b90506108146107eb611953565b6105866107f787611979565b60a0880151600a548951610592929161058c91610586908a6119a7565b9695505050505050565b61085c610829611953565b61058661083584611979565b6105928560a0015161058c600a546105866003548a600001516119a790919063ffffffff16565b9392505050565b61086b611a6e565b600c546002546040516370a0823160e01b8152306004820152600092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156108b8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108dc9190611e94565b6108e69190611ec3565b9050808211156109385760405162461bcd60e51b815260206004820152601b60248201527f43616e6e6f74206578636565642072657761726420616d6f756e74000000000060448201526064016104a6565b61094133610642565b6040518281527fb28e23b748788bfb329e7866abaa6de9b3f770fc3ceacb0e8881dae420c1dad4906020015b60405180910390a15050565b610981611a6e565b6107066000611ac8565b610993611889565b60065442116109d25760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b60448201526064016104a6565b6007544210610a0b5760405162461bcd60e51b8152602060048201526005602482015264195b99195960da1b60448201526064016104a6565b81158015610a17575080155b15610a565760405162461bcd60e51b815260206004820152600f60248201526e043616e6e6f7420616c6c206265203608c1b60448201526064016104a6565b336000908152600e6020526040812080549091819003610ab857600b54841015610ab85760405162461bcd60e51b8152602060048201526013602482015272185b5bdd5b9d081a5cc81d1bdbc81cdb585b1b606a1b60448201526064016104a6565b610ac58362015180611b18565b15610b055760405162461bcd60e51b815260206004820152601060248201526f6d756c7469706c65206f66206461797360801b60448201526064016104a6565b8015610b5e5760038201544210610b5e5760405162461bcd60e51b815260206004820152601c60248201527f63616e206f6e6c792072652d7374616b65206f7220756e7374616b650000000060448201526064016104a6565b6000838360020154610b709190611f44565b90506008548110158015610b8657506009548111155b610bca5760405162461bcd60e51b815260206004820152601560248201527434b73b30b634b2103637b1b590323ab930ba34b7b760591b60448201526064016104a6565b610bd26118e2565b6000610c55610bdf611953565b6040805160c08101825287548152600188015460208201526002880154918101919091526003870154606082015260048701546080820152600587015460a082015261058690610c2e90611979565b610592886005015461058c600a546105866003548d600001546119a790919063ffffffff16565b90508015610d0557600c546002546040516370a0823160e01b8152306004820152600092916001600160a01b0316906370a0823190602401602060405180830381865afa158015610caa573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cce9190611e94565b610cd89190611ec3565b905081811015610cfa5760405162461bcd60e51b81526004016104a690611ed6565b610d0333610642565b505b6002546040805163313ce56760e01b815290516000926001600160a01b03169163313ce5679160048083019260209291908290030181865afa158015610d4f573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d739190611f57565b60ff16905060008411610d865786610d90565b610d908785611f44565b8555600285018390554260018601819055610dac908490611f44565b60038601556002850154600090610de090610dca90620151806119b3565b610592610dd885600a61205e565b8954906119b3565b9050808660040154600d54610df59190611ec3565b610dff9190611f44565b600d55600486018190558715610e3f57610e27336002546001600160a01b031690308b611b24565b87600c6000828254610e399190611f44565b90915550505b600a546003548754610e519190611f03565b610e5b9190611f30565b6005870155604080518981526020810189905233917f5af417134f72a9d41143ace85b0a26dce6f550f894f2cbc1eeee8810603d91b6910160405180910390a2505050505050610eaa60018055565b5050565b610eb6611a6e565b426007556040517f874a772eb0809716c643618c9bc017c12e819a7490edbf9c56e675643f2908fa90600090a1565b610eed611a6e565b6002546001600160a01b0390811690821603610f445760405162461bcd60e51b81526020600482015260166024820152751d9bda59081d1bdad95b881d5b9cdd5c1c1bdc9d195960521b60448201526064016104a6565b6040516370a0823160e01b81523060048201526000906001600160a01b038316906370a0823190602401602060405180830381865afa158015610f8b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610faf9190611e94565b905080600003610ff05760405162461bcd60e51b815260206004820152600c60248201526b7a65726f2062616c616e636560a01b60448201526064016104a6565b6110046001600160a01b03831633836119cb565b816001600160a01b03167f14f11966a996e0629572e51064726d2057a80fbd34efc066682c06a71dbb6e988260405161103f91815260200190565b60405180910390a25050565b611053611a6e565b60048190556040518181527fd1ccdd0d69f96a7b49f984e2b97cacce705dbe4f022779a5d4e6924eaad271a5906020015b60405180910390a150565b611097611a6e565b60065442106110d65760405162461bcd60e51b815260206004820152600b60248201526a1a185cc81cdd185c9d195960aa1b60448201526064016104a6565b80821061111d5760405162461bcd60e51b815260206004820152601560248201527473746172742074696d65203c20656e642074696d6560581b60448201526064016104a6565b81421061116c5760405162461bcd60e51b815260206004820152601960248201527f73746172742074696d65203e2063757272656e742074696d650000000000000060448201526064016104a6565b6006829055600781905560408051838152602081018390527f5c01b94b69064839ba94f62882648b1559d3fac369986faa600b021e93196782910161096d565b6001600160a01b0381166000908152600e60209081526040808320815160c081018352815480825260018301549482019490945260028201549281019290925260038101546060830152600481015460808301526005015460a08201529082036112195750600092915050565b6060015142101592915050565b61122e611889565b600654421161126d5760405162461bcd60e51b815260206004820152600b60248201526a1b9bdd081cdd185c9d195960aa1b60448201526064016104a6565b60075442106112a65760405162461bcd60e51b8152602060048201526005602482015264195b99195960da1b60448201526064016104a6565b6112b38162015180611b18565b156112f35760405162461bcd60e51b815260206004820152601060248201526f6d756c7469706c65206f66206461797360801b60448201526064016104a6565b336000908152600e6020526040902080546113205760405162461bcd60e51b81526004016104a690611e6e565b60038101544210156113685760405162461bcd60e51b815260206004820152601160248201527063616e206f6e6c792072652d7374616b6560781b60448201526064016104a6565b600854821015801561137c57506009548211155b6113c05760405162461bcd60e51b815260206004820152601560248201527434b73b30b634b2103637b1b590323ab930ba34b7b760591b60448201526064016104a6565b6113c86118e2565b600061144b6113d5611953565b6040805160c08101825285548152600186015460208201526002860154918101919091526003850154606082015260048501546080820152600585015460a08201526105869061142490611979565b610592866005015461058c600a546105866003548b600001546119a790919063ffffffff16565b905080156114fb57600c546002546040516370a0823160e01b8152306004820152600092916001600160a01b0316906370a0823190602401602060405180830381865afa1580156114a0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114c49190611e94565b6114ce9190611ec3565b9050818110156114f05760405162461bcd60e51b81526004016104a690611ed6565b6114f933610642565b505b6002546040805163313ce56760e01b815290516000926001600160a01b03169163313ce5679160048083019260209291908290030181865afa158015611545573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115699190611f57565b6002840185905560ff1690504260018401819055600284015461158b91611f44565b600384015560028301546000906115bf906115a990620151806119b3565b6105926115b785600a61205e565b8754906119b3565b9050808460040154600d546115d49190611ec3565b6115de9190611f44565b600d5560048401819055600a5460035485546115ff929161058691906119a7565b60058501558354604080519182526020820187905233917fe2d4f7d2cbc42c0e28598ad885ea0822049fcdecbd5a05e5200be15473ccec06910160405180910390a25050505061164e60018055565b50565b611659611a6e565b6000811161169a5760405162461bcd60e51b815260206004820152600e60248201526d125b9d985b1a5908185b5bdd5b9d60921b60448201526064016104a6565b600b8190556040518181527f1213a5e9e0c19ba69ad89950ea4e5744e345923d01bb0c59f90079450a3d230790602001611084565b6116d7611889565b336000908152600e602052604090208054806117055760405162461bcd60e51b81526004016104a690611e6e565b600382015442116117515760405162461bcd60e51b815260206004820152601660248201527529ba34b6361034b7103637b1b590323ab930ba34b7b760511b60448201526064016104a6565b80600c60008282546117639190611ec3565b90915550506004820154600d805460009061177f908490611ec3565b9091555050336000818152600e602052604081208181556001810182905560028082018390556003820183905560048201839055600590910191909155546117d3916001600160a01b0390911690836119cb565b60405181815233907f5fafa99d0643513820be26656b45130b01e1c03062e1266bf36f88cbd3bd96959060200160405180910390a2505061070660018055565b61181b611a6e565b6001600160a01b0381166118805760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016104a6565b61164e81611ac8565b6002600154036118db5760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016104a6565b6002600155565b60055442116118ed57565b600c546000036118fd5742600555565b600061190c60055461079b4290565b905060006004548261191e9190611f03565b9050600c54600a54826119319190611f03565b61193b9190611f30565b6003546119489190611f44565b600355426005555050565b600060065461196a6119624290565b600754611b62565b6119749190611ec3565b905090565b6000816020015161199761198a4290565b8460600151600754611b79565b6119a19190611ec3565b92915050565b600061085c8284611f03565b600061085c8284611f30565b600061085c8284611ec3565b6040516001600160a01b038316602482015260448101829052611a2e90849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611ba5565b505050565b60006007548211611a4f57611a488383611ec3565b90506119a1565b6007548310611a60575060006119a1565b82600754611a489190611ec3565b6000546001600160a01b031633146107065760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016104a6565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600061085c828461206a565b6040516001600160a01b0380851660248301528316604482015260648101829052611b5c9085906323b872dd60e01b906084016119f7565b50505050565b600081831115611b72578161085c565b5090919050565b600080838510611b895783611b8b565b845b9050828110611b9a5782611b9c565b805b95945050505050565b6000611bfa826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316611c7a9092919063ffffffff16565b9050805160001480611c1b575080806020019051810190611c1b919061207e565b611a2e5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016104a6565b6060611c898484600085611c91565b949350505050565b606082471015611cf25760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016104a6565b600080866001600160a01b03168587604051611d0e91906120c4565b60006040518083038185875af1925050503d8060008114611d4b576040519150601f19603f3d011682016040523d82523d6000602084013e611d50565b606091505b5091509150611d6187838387611d6c565b979650505050505050565b60608315611ddb578251600003611dd4576001600160a01b0385163b611dd45760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016104a6565b5081611c89565b611c898383815115611df05781518083602001fd5b8060405162461bcd60e51b81526004016104a691906120e0565b600060208284031215611e1c57600080fd5b81356001600160a01b038116811461085c57600080fd5b600060208284031215611e4557600080fd5b5035919050565b60008060408385031215611e5f57600080fd5b50508035926020909101359150565b6020808252600c908201526b2737ba10309039ba30b5b2b960a11b604082015260600190565b600060208284031215611ea657600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b818103818111156119a1576119a1611ead565b6020808252601390820152721a5b9cdd59999a58da595b9d081c995dd85c99606a1b604082015260600190565b80820281158282048414176119a1576119a1611ead565b634e487b7160e01b600052601260045260246000fd5b600082611f3f57611f3f611f1a565b500490565b808201808211156119a1576119a1611ead565b600060208284031215611f6957600080fd5b815160ff8116811461085c57600080fd5b600181815b80851115611fb5578160001904821115611f9b57611f9b611ead565b80851615611fa857918102915b93841c9390800290611f7f565b509250929050565b600082611fcc575060016119a1565b81611fd9575060006119a1565b8160018114611fef5760028114611ff957612015565b60019150506119a1565b60ff84111561200a5761200a611ead565b50506001821b6119a1565b5060208310610133831016604e8410600b8410161715612038575081810a6119a1565b6120428383611f7a565b806000190482111561205657612056611ead565b029392505050565b600061085c8383611fbd565b60008261207957612079611f1a565b500690565b60006020828403121561209057600080fd5b8151801515811461085c57600080fd5b60005b838110156120bb5781810151838201526020016120a3565b50506000910152565b600082516120d68184602087016120a0565b9190910192915050565b60208152600082518060208401526120ff8160408501602087016120a0565b601f01601f1916919091016040019291505056fea264697066735822122072d4246883df13b1a0e405c23a010082ab5a842f1a0dec12c93d565b14863c8164736f6c63430008110033