¡El código fuente de este contrato está verificado!
Metadatos del Contrato
Compilador
0.8.19+commit.7dd6d404
Idioma
Solidity
Código Fuente del Contrato
Archivo 1 de 8: Address.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (utils/Address.sol)pragmasolidity ^0.8.1;/**
* @dev Collection of functions related to the address type
*/libraryAddress{
/**
* @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
* ====
*
* [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.
* ====
*/functionisContract(address account) internalviewreturns (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://diligence.consensys.net/posts/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.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/functionsendValue(addresspayable 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._
*/functionfunctionCall(address target, bytesmemory data) internalreturns (bytesmemory) {
return functionCall(target, data, "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._
*/functionfunctionCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value
) internalreturns (bytesmemory) {
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._
*/functionfunctionCallWithValue(address target,
bytesmemory data,
uint256 value,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(address(this).balance>= value, "Address: insufficient balance for call");
require(isContract(target), "Address: call to non-contract");
(bool success, bytesmemory returndata) = target.call{value: value}(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a static call.
*
* _Available since v3.3._
*/functionfunctionStaticCall(address target, bytesmemory data) internalviewreturns (bytesmemory) {
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._
*/functionfunctionStaticCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalviewreturns (bytesmemory) {
require(isContract(target), "Address: static call to non-contract");
(bool success, bytesmemory returndata) = target.staticcall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`],
* but performing a delegate call.
*
* _Available since v3.4._
*/functionfunctionDelegateCall(address target, bytesmemory data) internalreturns (bytesmemory) {
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._
*/functionfunctionDelegateCall(address target,
bytesmemory data,
stringmemory errorMessage
) internalreturns (bytesmemory) {
require(isContract(target), "Address: delegate call to non-contract");
(bool success, bytesmemory returndata) = target.delegatecall(data);
return verifyCallResult(success, returndata, errorMessage);
}
/**
* @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the
* revert reason using the provided one.
*
* _Available since v4.3._
*/functionverifyCallResult(bool success,
bytesmemory returndata,
stringmemory errorMessage
) internalpurereturns (bytesmemory) {
if (success) {
return returndata;
} else {
// Look for revert reason and bubble it up if presentif (returndata.length>0) {
// The easiest way to bubble the revert reason is using memory via assembly/// @solidity memory-safe-assemblyassembly {
let returndata_size :=mload(returndata)
revert(add(32, returndata), returndata_size)
}
} else {
revert(errorMessage);
}
}
}
}
Código Fuente del Contrato
Archivo 2 de 8: Context.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)pragmasolidity ^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.
*/abstractcontractContext{
function_msgSender() internalviewvirtualreturns (address) {
returnmsg.sender;
}
function_msgData() internalviewvirtualreturns (bytescalldata) {
returnmsg.data;
}
}
Código Fuente del Contrato
Archivo 3 de 8: IERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)pragmasolidity ^0.8.0;/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/interfaceIERC20{
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/eventTransfer(addressindexedfrom, addressindexed 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.
*/eventApproval(addressindexed owner, addressindexed spender, uint256 value);
/**
* @dev Returns the amount of tokens in existence.
*/functiontotalSupply() externalviewreturns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/functionbalanceOf(address account) externalviewreturns (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.
*/functiontransfer(address to, uint256 amount) externalreturns (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.
*/functionallowance(address owner, address spender) externalviewreturns (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.
*/functionapprove(address spender, uint256 amount) externalreturns (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.
*/functiontransferFrom(addressfrom,
address to,
uint256 amount
) externalreturns (bool);
}
Código Fuente del Contrato
Archivo 4 de 8: LockedFarming.sol
// SPDX-License-Identifier: UNLICENSEDpragmasolidity 0.8.19;import {IERC20} from"@openzeppelin/contracts/token/ERC20/IERC20.sol";
import {SafeERC20} from"@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import {SafeMath} from"@openzeppelin/contracts/utils/math/SafeMath.sol";
import {Context} from"@openzeppelin/contracts/utils/Context.sol";
import {Ownable} from"@openzeppelin/contracts/access/Ownable.sol";
/**
* @title Farming
* @notice Seedify's farming contract: stake LP token and earn rewards.
* @custom:audit This contract is NOT made to be used with deflationary tokens at all.
*/contractSMD_v5isOwnable{
usingSafeMathforuint256;
usingSafeERC20forIERC20;
uint256publicconstant SECONDS_PER_HOUR =3600; // 60 * 60/// @notice LP token address to deposit to earn rewards.addresspublic tokenAddress;
/// @notice token address to in which rewards will be paid in.addresspublic rewardTokenAddress;
/// @notice total amount of {tokenAddress} staked in the contract over its whole existence.uint256public totalStaked;
/**
* @notice current amount of {tokenAddress} staked in the contract accross all periods. Use to
* calculate lost LP tokens.
*/uint256public currentStakedBalance;
/// @notice amount of {tokenAddress} staked in the contract for the current period.uint256public stakedBalanceCurrPeriod;
/// @notice should be the amount of rewards available in the contract accross all periods.uint256public rewardBalance;
/// @notice should be the amount of rewards for current period.uint256public totalReward;
/**
* @notice start date of current period.
* @dev expressed in UNIX timestamp. Will be compareed to block.timestamp.
*/uint256public startingDate;
/**
* @notice end date of current period.
* @dev expressed in UNIX timestamp. Will be compareed to block.timestamp.
*/uint256public endingDate;
/**
* @notice periodCounter is used to keep track of the farming periods, which allow participants to
* earn a certain amount of rewards by staking their LP for a certain period of time. Then,
* a new period can be opened with a different or equal amount to earn.
* @dev counts the amount of farming periods.
*/uint256public periodCounter;
/**
* @notice should be the amount of rewards per wei of deposited LP token {tokenAddress} for current
* period.
*/uint256public accShare;
/// @notice timestamp of at which shares have been updated at last, expressed in UNIX timestamp.uint256public lastSharesUpdateTime;
/**
* @notice amount of participant in current period.
* @dev {setNewPeriod} will reset this value to 0.
*/uint256public totalParticipants;
/// @dev expressed in hours, e.g. 7 days = 24 * 7 = 168.uint256public lockDuration;
/**
* @notice whether prevent or not, wallets from staking, renewing staking, viewing old rewards,
* claiming rewards (old and current period) and withdrawing. Only admin functions are allowed.
*/boolpublic isPaused;
/// @notice should be the last transfered token which is either {tokenAddress} or {rewardTokenAddress}.
IERC20 internal _erc20Interface;
/**
* @notice struct which represent deposits made by a wallet based on a specific period. Each period has
* its own deposit data.
*
* @param amount amount of LP {tokenAddress} deposited accross all period.
* @param latestStakeAt timestamp at which the latest stake has been made by the wallet for current
* period. Maturity date will be re-calculated from this timestamp which means each time the
* wallet stakes a new amount it has to wait for `lockDuration` before being able to withdraw.
* @param latestClaimAt latest timestamp at which the wallet claimed their rewards.
* @param userAccShare should be the amount of rewards per wei of deposited LP token {tokenAddress}
* accross all periods.
* @param currentPeriod should be the lastest periodCounter at which the wallet participated.
*/structDeposits {
uint256 amount;
uint256 latestStakeAt;
uint256 latestClaimAt;
uint256 userAccShare;
uint256 currentPeriod;
}
/**
* @notice struct which should represent the details of ended periods.
* @dev period 0 should contain nullish values.
*
* @param periodCounter counter to track the period id.
* @param accShare should be the amount of rewards per wei of deposited LP token {tokenAddress} for
this ended period.
* @param rewPerSecond should be the amount of rewards per second for this ended period.
* @param startingDate should be the start date of this ended period.
* @param endingDate should be the end date of this ended period.
* @param rewards should be the total amount of rewards left until this ended period, which might
* include previous rewards from previous closed periods.
*/structPeriodDetails {
uint256 periodCounter;
uint256 accShare;
uint256 rewPerSecond;
uint256 startingDate;
uint256 endingDate;
uint256 rewards;
}
/// @notice should be the deposit data made by a wallet for accorss period if the wallet called {renew}.mapping(address=> Deposits) private deposits;
/// @notice whether a wallet has staked or not.mapping(address=>bool) public isPaid;
/// @notice whether a wallet has staked some LP {tokenAddress} or not.mapping(address=>bool) public hasStaked;
/// @notice should be the details of ended periods.mapping(uint256=> PeriodDetails) public endAccShare;
eventNewPeriodSet(uint256 periodCounter,
uint256 startDate,
uint256 endDate,
uint256 lockDuration,
uint256 rewardAmount
);
eventPaused(uint256indexed periodCounter,
uint256indexed totalParticipants,
uint256indexed currentStakedBalance,
uint256 totalReward
);
eventUnPaused(uint256indexed periodCounter,
uint256indexed totalParticipants,
uint256indexed currentStakedBalance,
uint256 totalReward
);
eventPeriodExtended(uint256 periodCounter,
uint256 endDate,
uint256 rewards
);
eventStaked(addressindexed token,
addressindexed staker_,
uint256 stakedAmount_
);
eventPaidOut(addressindexed token,
addressindexed rewardToken,
addressindexed staker_,
uint256 amount_,
uint256 reward_
);
/**
* @notice by default the contract is paused, so the owner can set the first period without anyone
* staking before it opens.
* @param _tokenAddress LP token address to deposit to earn rewards.
* @param _rewardTokenAddress token address into which rewards will be paid in.
*/constructor(address _tokenAddress, address _rewardTokenAddress) Ownable() {
require(_tokenAddress !=address(0), "Zero token address");
tokenAddress = _tokenAddress;
require(
_rewardTokenAddress !=address(0),
"Zero reward token address"
);
rewardTokenAddress = _rewardTokenAddress;
isPaused =true;
}
/**
* @notice Config new period details according to {setNewPeriod} parameters.
*
* @param _start Seconds at which the period starts - in UNIX timestamp.
* @param _end Seconds at which the period ends - in UNIX timestamp.
* @param _lockDuration Duration in hours to wait before being able to withdraw staked LP.
*/function__configNewPeriod(uint256 _start,
uint256 _end,
uint256 _lockDuration
) private{
require(totalReward >0, "Add rewards for this periodCounter");
startingDate = _start;
endingDate = _end;
lockDuration = _lockDuration;
periodCounter++;
lastSharesUpdateTime = _start;
}
/// @notice Add rewards to the contract and transfer them in it.function__addReward(uint256 _rewardAmount
)
privatehasAllowance(msg.sender, _rewardAmount, rewardTokenAddress)
returns (bool)
{
totalReward = totalReward.add(_rewardAmount);
rewardBalance = rewardBalance.add(_rewardAmount);
if (!__payMe(msg.sender, _rewardAmount, rewardTokenAddress)) {
returnfalse;
}
returntrue;
}
/// save the details of the last ended period.function__saveOldPeriod() private{
// only save old period if it has ended & not been saved beforeif (
block.timestamp> endingDate &&
endAccShare[periodCounter].startingDate ==0
) {
endAccShare[periodCounter] = PeriodDetails(
periodCounter,
accShare,
rewPerSecond(),
startingDate,
endingDate,
rewardBalance
);
}
}
/// reset contracts's deposit data at the end of period and pause it.function__reset() private{
totalReward =0;
stakedBalanceCurrPeriod =0;
totalParticipants =0;
}
/**
* @notice set the start and end timestamp for the new period and add rewards to be
* earned within this period. Previous period must have ended, otherwise use
* {extendCurrentPeriod} to update current period.
* also calls {__addReward} to add rewards to this contract so be sure to approve this contract
* to spend your ERC20 before calling this function.
*
* @param _rewardAmount Amount of rewards to be earned within this period.
* @param _start Seconds at which the period starts - in UNIX timestamp.
* @param _end Seconds at which the period ends - in UNIX timestamp.
* @param _lockDuration Duration in hours to wait before being able to withdraw staked LP.
*/functionsetNewPeriod(uint256 _rewardAmount,
uint256 _start,
uint256 _end,
uint256 _lockDuration
) externalonlyOwnerreturns (bool) {
require(
_start >block.timestamp,
"Start should be more than block.timestamp"
);
require(_end > _start, "End block should be greater than start");
require(_rewardAmount >0, "Reward must be positive");
require(block.timestamp> endingDate, "Wait till end of this period");
__updateShare();
__saveOldPeriod();
__reset();
bool rewardAdded = __addReward(_rewardAmount);
require(rewardAdded, "Rewards error");
__configNewPeriod(_start, _end, _lockDuration);
emit NewPeriodSet(
periodCounter,
_start,
_end,
_lockDuration,
_rewardAmount
);
isPaused =false;
returntrue;
}
functionpause() externalonlyOwner{
isPaused =true;
emit Paused(
periodCounter,
totalParticipants,
currentStakedBalance,
totalReward
);
}
functionunPause() externalonlyOwner{
isPaused =false;
emit UnPaused(
periodCounter,
totalParticipants,
currentStakedBalance,
totalReward
);
}
/// @notice update {accShare} and {lastSharesUpdateTime} for current period.function__updateShare() private{
if (block.timestamp<= lastSharesUpdateTime) {
return;
}
if (stakedBalanceCurrPeriod ==0) {
lastSharesUpdateTime =block.timestamp;
return;
}
uint256 secSinceLastPeriod;
if (block.timestamp>= endingDate) {
secSinceLastPeriod = endingDate.sub(lastSharesUpdateTime);
} else {
secSinceLastPeriod =block.timestamp.sub(lastSharesUpdateTime);
}
uint256 rewards = secSinceLastPeriod.mul(rewPerSecond());
accShare = accShare.add(
(rewards.mul(1e6).div(stakedBalanceCurrPeriod))
);
if (block.timestamp>= endingDate) {
lastSharesUpdateTime = endingDate;
} else {
lastSharesUpdateTime =block.timestamp;
}
}
/// @notice calculate rewards to get per second for current period.functionrewPerSecond() publicviewreturns (uint256) {
if (totalReward ==0|| rewardBalance ==0) return0;
uint256 rewardPerSecond = totalReward.div(
(endingDate.sub(startingDate))
);
return (rewardPerSecond);
}
functionstake(uint256 amount
) externalhasAllowance(msg.sender, amount, tokenAddress) returns (bool) {
require(!isPaused, "Contract is paused");
require(
block.timestamp>= startingDate &&block.timestamp< endingDate,
"No active pool (time)"
);
require(amount >0, "Can't stake 0 amount");
return (__stake(msg.sender, amount));
}
function__stake(addressfrom, uint256 amount) privatereturns (bool) {
__updateShare();
// if never staked, create new depositif (!hasStaked[from]) {
deposits[from] = Deposits({
amount: amount,
latestStakeAt: block.timestamp,
latestClaimAt: block.timestamp,
userAccShare: accShare,
currentPeriod: periodCounter
});
totalParticipants = totalParticipants.add(1);
hasStaked[from] =true;
}
// otherwise update deposit details and claim pending rewardselse {
// if user has staked in previous period, renew and claim rewards from previous periodif (deposits[from].currentPeriod != periodCounter) {
bool renew_ = __renew(from);
require(renew_, "Error renewing");
}
// otherwise on each new stake claim pending rewards of current periodelse {
bool claim = __claimRewards(from);
require(claim, "Error paying rewards");
}
uint256 userAmount = deposits[from].amount;
deposits[from] = Deposits({
amount: userAmount.add(amount),
latestStakeAt: block.timestamp,
latestClaimAt: block.timestamp,
userAccShare: accShare,
currentPeriod: periodCounter
});
}
stakedBalanceCurrPeriod = stakedBalanceCurrPeriod.add(amount);
totalStaked = totalStaked.add(amount);
currentStakedBalance += amount;
if (!__payMe(from, amount, tokenAddress)) {
returnfalse;
}
emit Staked(tokenAddress, from, amount);
returntrue;
}
/// @notice get user deposit detailsfunctionuserDeposits(addressfrom) externalviewreturns (Deposits memory deposit) {
return deposits[from];
}
/// @custom:audit seems like a duplicate of {hasStaked}.functionfetchUserShare(addressfrom) publicviewreturns (uint256) {
require(hasStaked[from], "No stakes found for user");
if (stakedBalanceCurrPeriod ==0) {
return0;
}
require(
deposits[from].currentPeriod == periodCounter,
"Please renew in the active valid periodCounter"
);
uint256 userAmount = deposits[from].amount;
require(userAmount >0, "No stakes available for user"); //extra checkreturn1;
}
/// @dev claim pending rewards of current period.functionclaimRewards() publicreturns (bool) {
require(!isPaused, "Contract paused");
require(fetchUserShare(msg.sender) >0, "No stakes found for user");
return (__claimRewards(msg.sender));
}
function__claimRewards(addressfrom) privatereturns (bool) {
uint256 userAccShare = deposits[from].userAccShare;
__updateShare();
uint256 amount = deposits[from].amount;
uint256 rewDebt = amount.mul(userAccShare).div(1e6);
uint256 rew = (amount.mul(accShare).div(1e6)).sub(rewDebt);
require(rew >0, "No rewards generated");
require(rew <= rewardBalance, "Not enough rewards in the contract");
deposits[from].userAccShare = accShare;
deposits[from].latestClaimAt =block.timestamp;
rewardBalance = rewardBalance.sub(rew);
bool payRewards = __payDirect(from, rew, rewardTokenAddress);
require(payRewards, "Rewards transfer failed");
emit PaidOut(tokenAddress, rewardTokenAddress, from, amount, rew);
returntrue;
}
/**
* @notice Should take into account farming rewards and LP staked from previous periods into the new
* current period.
*/functionrenew() publicreturns (bool) {
require(!isPaused, "Contract paused");
require(hasStaked[msg.sender], "No stakings found, please stake");
require(
deposits[msg.sender].currentPeriod != periodCounter,
"Already renewed"
);
require(
block.timestamp> startingDate &&block.timestamp< endingDate,
"Wrong time"
);
return (__renew(msg.sender));
}
function__renew(addressfrom) privatereturns (bool) {
__updateShare();
if (_viewOldRewards(from) >0) {
bool claimed = claimOldRewards();
require(claimed, "Error paying old rewards");
}
deposits[from].currentPeriod = periodCounter;
deposits[from].latestStakeAt =block.timestamp;
deposits[from].latestClaimAt =block.timestamp;
deposits[from].userAccShare = accShare;
stakedBalanceCurrPeriod = stakedBalanceCurrPeriod.add(
deposits[from].amount
);
totalParticipants = totalParticipants.add(1);
returntrue;
}
/// @notice get rewards from previous periods for `from` wallet.functionviewOldRewards(addressfrom) publicviewreturns (uint256) {
require(!isPaused, "Contract paused");
require(hasStaked[from], "No stakings found, please stake");
return _viewOldRewards(from);
}
function_viewOldRewards(addressfrom) internalviewreturns (uint256) {
if (deposits[from].currentPeriod == periodCounter) {
return0;
}
uint256 userPeriod = deposits[from].currentPeriod;
uint256 accShare1 = endAccShare[userPeriod].accShare;
uint256 userAccShare = deposits[from].userAccShare;
if (deposits[from].latestClaimAt >= endAccShare[userPeriod].endingDate)
return0;
uint256 amount = deposits[from].amount;
uint256 rewDebt = amount.mul(userAccShare).div(1e6);
uint256 rew = (amount.mul(accShare1).div(1e6)).sub(rewDebt);
require(rew <= rewardBalance, "Not enough rewards");
return (rew);
}
/// @notice save old period details and claim pending rewards from previous periods.functionclaimOldRewards() publicreturns (bool) {
require(!isPaused, "Contract paused");
require(hasStaked[msg.sender], "No stakings found, please stake");
require(
deposits[msg.sender].currentPeriod != periodCounter,
"Already renewed"
);
__saveOldPeriod();
uint256 userPeriod = deposits[msg.sender].currentPeriod;
uint256 accShare1 = endAccShare[userPeriod].accShare;
uint256 userAccShare = deposits[msg.sender].userAccShare;
require(
deposits[msg.sender].latestClaimAt <
endAccShare[userPeriod].endingDate,
"Already claimed old rewards"
);
uint256 amount = deposits[msg.sender].amount;
uint256 rewDebt = amount.mul(userAccShare).div(1e6);
uint256 rew = (amount.mul(accShare1).div(1e6)).sub(rewDebt);
require(rew <= rewardBalance, "Not enough rewards");
deposits[msg.sender].latestClaimAt = endAccShare[userPeriod]
.endingDate;
rewardBalance = rewardBalance.sub(rew);
bool paidOldRewards = __payDirect(msg.sender, rew, rewardTokenAddress);
require(paidOldRewards, "Error paying");
emit PaidOut(
tokenAddress,
rewardTokenAddress,
msg.sender,
amount,
rew
);
returntrue;
}
/// @notice should calculate current pending rewards for `from` wallet for current period.functioncalculate(addressfrom) publicviewreturns (uint256) {
if (fetchUserShare(from) ==0) return0;
return (__calculate(from));
}
function__calculate(addressfrom) privateviewreturns (uint256) {
uint256 userAccShare = deposits[from].userAccShare;
uint256 currentAccShare = accShare;
//Simulating __updateShare() to calculate rewardsif (block.timestamp<= lastSharesUpdateTime) {
return0;
}
if (stakedBalanceCurrPeriod ==0) {
return0;
}
uint256 secSinceLastPeriod;
if (block.timestamp>= endingDate) {
secSinceLastPeriod = endingDate.sub(lastSharesUpdateTime);
} else {
secSinceLastPeriod =block.timestamp.sub(lastSharesUpdateTime);
}
uint256 rewards = secSinceLastPeriod.mul(rewPerSecond());
uint256 newAccShare = currentAccShare.add(
(rewards.mul(1e6).div(stakedBalanceCurrPeriod))
);
uint256 amount = deposits[from].amount;
uint256 rewDebt = amount.mul(userAccShare).div(1e6);
uint256 rew = (amount.mul(newAccShare).div(1e6)).sub(rewDebt);
return (rew);
}
functionemergencyWithdraw() externalreturns (bool) {
require(
block.timestamp>
deposits[msg.sender].latestStakeAt.add(
lockDuration.mul(SECONDS_PER_HOUR)
),
"Can't withdraw before lock duration"
);
require(hasStaked[msg.sender], "No stakes available for user");
require(!isPaid[msg.sender], "Already Paid");
return (__withdraw(msg.sender, deposits[msg.sender].amount));
}
function__withdraw(addressfrom, uint256 amount) privatereturns (bool) {
__updateShare();
deposits[from].amount = deposits[from].amount.sub(amount);
if (deposits[from].currentPeriod == periodCounter) {
stakedBalanceCurrPeriod -= amount;
}
bool paid = __payDirect(from, amount, tokenAddress);
require(paid, "Error during withdraw");
if (deposits[from].amount ==0) {
isPaid[from] =true;
hasStaked[from] =false;
if (deposits[from].currentPeriod == periodCounter) {
totalParticipants = totalParticipants.sub(1);
}
delete deposits[from];
}
currentStakedBalance -= amount;
returntrue;
}
/// Withdraw `amount` deposited LP token after lock duration.functionwithdraw(uint256 amount) externalreturns (bool) {
require(!isPaused, "Contract paused");
require(
block.timestamp>
deposits[msg.sender].latestStakeAt.add(
lockDuration.mul(SECONDS_PER_HOUR)
),
"Can't withdraw before lock duration"
);
require(amount <= deposits[msg.sender].amount, "Wrong value");
if (deposits[msg.sender].currentPeriod == periodCounter) {
if (calculate(msg.sender) >0) {
bool rewardsPaid = claimRewards();
require(rewardsPaid, "Error paying rewards");
}
}
if (_viewOldRewards(msg.sender) >0) {
bool oldRewardsPaid = claimOldRewards();
require(oldRewardsPaid, "Error paying old rewards");
}
return (__withdraw(msg.sender, amount));
}
/**
* @notice add rewards to current period and extend its runing time.
* @dev running should be updated based on the amount of rewards added and current rewards per second,
* e.g.: 1000 rewards per second, then if we add 1000 rewards then we increase running time by
* 1 second.
*/functionextendCurrentPeriod(uint256 rewardsToBeAdded
) externalonlyOwnerreturns (bool) {
require(
block.timestamp> startingDate &&block.timestamp< endingDate,
"No active pool (time)"
);
require(rewardsToBeAdded >0, "Zero rewards");
bool addedRewards = __payMe(
msg.sender,
rewardsToBeAdded,
rewardTokenAddress
);
require(addedRewards, "Error adding rewards");
endingDate = endingDate.add(rewardsToBeAdded.div(rewPerSecond()));
totalReward = totalReward.add(rewardsToBeAdded);
rewardBalance = rewardBalance.add(rewardsToBeAdded);
emit PeriodExtended(periodCounter, endingDate, rewardsToBeAdded);
returntrue;
}
/// @notice deposit rewards to this farming contract.function__payMe(address payer,
uint256 amount,
address token
) privatereturns (bool) {
return __payTo(payer, address(this), amount, token);
}
/// @notice should transfer rewards to farming contract.function__payTo(address allower,
address receiver,
uint256 amount,
address token
) privatereturns (bool) {
// Request to transfer amount from the contract to receiver.// contract does not own the funds, so the allower must have added allowance to the contract// Allower is the original owner.
_erc20Interface = IERC20(token);
_erc20Interface.safeTransferFrom(allower, receiver, amount);
returntrue;
}
/// @notice should pay rewards to `to` wallet and in certain case withdraw deposited LP token.function__payDirect(address to,
uint256 amount,
address token
) privatereturns (bool) {
require(
token == tokenAddress || token == rewardTokenAddress,
"Invalid token address"
);
_erc20Interface = IERC20(token);
_erc20Interface.safeTransfer(to, amount);
returntrue;
}
/// @notice check whether `allower` has approved this contract to spend at least `amount` of `token`.modifierhasAllowance(address allower,
uint256 amount,
address token
) {
// Make sure the allower has provided the right allowance.require(
token == tokenAddress || token == rewardTokenAddress,
"Invalid token address"
);
_erc20Interface = IERC20(token);
uint256 ourAllowance = _erc20Interface.allowance(
allower,
address(this)
);
require(amount <= ourAllowance, "Make sure to add enough allowance");
_;
}
functionrecoverLostERC20(address token, address to) externalonlyOwner{
if (token ==address(0)) revert("Token_Zero_Address");
if (to ==address(0)) revert("To_Zero_Address");
uint256 amount = IERC20(token).balanceOf(address(this));
// only retrieve lost {rewardTokenAddress}if (token == rewardTokenAddress) amount -= rewardBalance;
// only retrieve lost LP tokensif (token == tokenAddress) amount -= currentStakedBalance;
IERC20(token).safeTransfer(to, amount);
}
}
Código Fuente del Contrato
Archivo 5 de 8: Ownable.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)pragmasolidity ^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.
*/abstractcontractOwnableisContext{
addressprivate _owner;
eventOwnershipTransferred(addressindexed previousOwner, addressindexed 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.
*/modifieronlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/functionowner() publicviewvirtualreturns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/function_checkOwner() internalviewvirtual{
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.
*/functionrenounceOwnership() publicvirtualonlyOwner{
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/functiontransferOwnership(address newOwner) publicvirtualonlyOwner{
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) internalvirtual{
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}
Código Fuente del Contrato
Archivo 6 de 8: SafeERC20.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/utils/SafeERC20.sol)pragmasolidity ^0.8.0;import"../IERC20.sol";
import"../extensions/draft-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.
*/librarySafeERC20{
usingAddressforaddress;
functionsafeTransfer(
IERC20 token,
address to,
uint256 value
) internal{
_callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value));
}
functionsafeTransferFrom(
IERC20 token,
addressfrom,
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.
*/functionsafeApprove(
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));
}
functionsafeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal{
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
functionsafeDecreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal{
unchecked {
uint256 oldAllowance = token.allowance(address(this), spender);
require(oldAllowance >= value, "SafeERC20: decreased allowance below zero");
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance));
}
}
functionsafePermit(
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, bytesmemory 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.bytesmemory returndata =address(token).functionCall(data, "SafeERC20: low-level call failed");
if (returndata.length>0) {
// Return data is optionalrequire(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed");
}
}
}
Código Fuente del Contrato
Archivo 7 de 8: SafeMath.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)pragmasolidity ^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.
*/librarySafeMath{
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/functiontryAdd(uint256 a, uint256 b) internalpurereturns (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._
*/functiontrySub(uint256 a, uint256 b) internalpurereturns (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._
*/functiontryMul(uint256 a, uint256 b) internalpurereturns (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/522if (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._
*/functiontryDiv(uint256 a, uint256 b) internalpurereturns (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._
*/functiontryMod(uint256 a, uint256 b) internalpurereturns (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.
*/functionadd(uint256 a, uint256 b) internalpurereturns (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.
*/functionsub(uint256 a, uint256 b) internalpurereturns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/functionmul(uint256 a, uint256 b) internalpurereturns (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.
*/functiondiv(uint256 a, uint256 b) internalpurereturns (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.
*/functionmod(uint256 a, uint256 b) internalpurereturns (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.
*/functionsub(uint256 a,
uint256 b,
stringmemory errorMessage
) internalpurereturns (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.
*/functiondiv(uint256 a,
uint256 b,
stringmemory errorMessage
) internalpurereturns (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.
*/functionmod(uint256 a,
uint256 b,
stringmemory errorMessage
) internalpurereturns (uint256) {
unchecked {
require(b >0, errorMessage);
return a % b;
}
}
}
Código Fuente del Contrato
Archivo 8 de 8: draft-IERC20Permit.sol
// SPDX-License-Identifier: MIT// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-IERC20Permit.sol)pragmasolidity ^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.
*/interfaceIERC20Permit{
/**
* @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].
*/functionpermit(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.
*/functionnonces(address owner) externalviewreturns (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-mixedcasefunctionDOMAIN_SEPARATOR() externalviewreturns (bytes32);
}