More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 29 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Withdraw | 18978935 | 365 days ago | IN | 0 ETH | 0.0070404 | ||||
Withdraw | 18684614 | 406 days ago | IN | 0 ETH | 0.00563454 | ||||
Withdraw | 18015215 | 500 days ago | IN | 0 ETH | 0.00723971 | ||||
Withdraw | 16691509 | 686 days ago | IN | 0 ETH | 0.00515719 | ||||
Withdraw | 16669636 | 689 days ago | IN | 0 ETH | 0.00480837 | ||||
Withdraw | 16667190 | 690 days ago | IN | 0 ETH | 0.00964112 | ||||
Withdraw | 16488470 | 715 days ago | IN | 0 ETH | 0.00287161 | ||||
Withdraw | 16488450 | 715 days ago | IN | 0 ETH | 0.00313825 | ||||
Withdraw | 16486508 | 715 days ago | IN | 0 ETH | 0.00507885 | ||||
Withdraw | 16391200 | 728 days ago | IN | 0 ETH | 0.00100098 | ||||
Withdraw | 16391200 | 728 days ago | IN | 0 ETH | 0.00574674 | ||||
Deposit | 16265678 | 746 days ago | IN | 0 ETH | 0.00224185 | ||||
Deposit | 15567122 | 843 days ago | IN | 0 ETH | 0.00086213 | ||||
Withdraw | 15486174 | 856 days ago | IN | 0 ETH | 0.00468659 | ||||
Withdraw | 15478962 | 857 days ago | IN | 0 ETH | 0.00348059 | ||||
Withdraw | 15072777 | 921 days ago | IN | 0 ETH | 0.00266159 | ||||
Deposit | 14904203 | 950 days ago | IN | 0 ETH | 0.01241035 | ||||
Deposit | 14874797 | 955 days ago | IN | 0 ETH | 0.00881625 | ||||
Deposit | 14829513 | 962 days ago | IN | 0 ETH | 0.00427257 | ||||
Withdraw | 14781506 | 970 days ago | IN | 0 ETH | 0.00345816 | ||||
Deposit | 14738481 | 977 days ago | IN | 0 ETH | 0.00569233 | ||||
Deposit | 14703547 | 983 days ago | IN | 0 ETH | 0.01154271 | ||||
Deposit | 14702579 | 983 days ago | IN | 0 ETH | 0.01268108 | ||||
Deposit | 14666149 | 988 days ago | IN | 0 ETH | 0.00880834 | ||||
Deposit | 14657104 | 990 days ago | IN | 0 ETH | 0.0117361 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
14653648 | 990 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Minimal Proxy Contract for 0x9921d21996d424688f10a5f91ea68ac4ac92d073
Contract Name:
TokensFarm
Compiler Version
v0.6.12+commit.27d51765
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2022-02-10 */ // Sources flattened with hardhat v2.1.2 https://hardhat.org // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @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 `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, 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 `sender` to `recipient` 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 sender, address recipient, uint256 amount) external returns (bool); /** * @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); } // File @openzeppelin/contracts/math/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ 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) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { 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) { // 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) { 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) { 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) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @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) { require(b <= a, "SafeMath: subtraction overflow"); 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) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @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. 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) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); 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) { require(b > 0, "SafeMath: modulo by zero"); 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) { 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. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * 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) { 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) { require(b > 0, errorMessage); return a % b; } } // File @openzeppelin/contracts/utils/[email protected] pragma solidity >=0.6.2 <0.8.0; /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 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]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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 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._ */ 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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory 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._ */ 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) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory 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._ */ 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) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts/token/ERC20/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @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 SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } 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' // solhint-disable-next-line max-line-length 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)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @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"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] pragma solidity >=0.6.2 <0.8.0; /** * @dev Collection of functions related to the address type */ library AddressUpgradeable { /** * @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 * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 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]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (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 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._ */ 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"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory 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._ */ 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) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // 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 // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } } // File @openzeppelin/contracts-upgradeable/proxy/[email protected] // solhint-disable-next-line compiler-version pragma solidity >=0.4.24 <0.8.0; /** * @dev This is a base contract to aid in writing upgradeable contracts, or any kind of contract that will be deployed * behind a proxy. Since a proxied contract can't have a constructor, it's common to move constructor logic to an * external initializer function, usually called `initialize`. It then becomes necessary to protect this initializer * function so it can only be called once. The {initializer} modifier provided by this contract will have this effect. * * TIP: To avoid leaving the proxy in an uninitialized state, the initializer function should be called as early as * possible by providing the encoded function call as the `_data` argument to {UpgradeableProxy-constructor}. * * CAUTION: When used with inheritance, manual care must be taken to not invoke a parent initializer twice, or to ensure * that all initializers are idempotent. This is not verified automatically as constructors are by Solidity. */ abstract contract Initializable { /** * @dev Indicates that the contract has been initialized. */ bool private _initialized; /** * @dev Indicates that the contract is in the process of being initialized. */ bool private _initializing; /** * @dev Modifier to protect an initializer function from being invoked twice. */ modifier initializer() { require(_initializing || _isConstructor() || !_initialized, "Initializable: contract is already initialized"); bool isTopLevelCall = !_initializing; if (isTopLevelCall) { _initializing = true; _initialized = true; } _; if (isTopLevelCall) { _initializing = false; } } /// @dev Returns true if and only if the function is running in the constructor function _isConstructor() private view returns (bool) { return !AddressUpgradeable.isContract(address(this)); } } // File @openzeppelin/contracts-upgradeable/utils/[email protected] pragma solidity >=0.6.0 <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 GSN 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 ContextUpgradeable is Initializable { function __Context_init() internal initializer { __Context_init_unchained(); } function __Context_init_unchained() internal initializer { } function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } uint256[50] private __gap; } // File @openzeppelin/contracts-upgradeable/access/[email protected] pragma solidity >=0.6.0 <0.8.0; /** * @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 OwnableUpgradeable is Initializable, ContextUpgradeable { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ function __Ownable_init() internal initializer { __Context_init_unchained(); __Ownable_init_unchained(); } function __Ownable_init_unchained() internal initializer { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = 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"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } uint256[49] private __gap; } // File @openzeppelin/contracts-upgradeable/utils/[email protected] pragma solidity >=0.6.0 <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 ReentrancyGuardUpgradeable is Initializable { // 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; function __ReentrancyGuard_init() internal initializer { __ReentrancyGuard_init_unchained(); } function __ReentrancyGuard_init_unchained() internal initializer { _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 make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } uint256[49] private __gap; } // File contracts/TokensFarm.sol pragma solidity 0.6.12; contract TokensFarm is OwnableUpgradeable, ReentrancyGuardUpgradeable { using SafeMath for uint256; using SafeERC20 for IERC20; // Enums enum EarlyWithdrawPenalty { NO_PENALTY, BURN_REWARDS, REDISTRIBUTE_REWARDS } // Info of each user. struct StakeInfo { // How many tokens the user has provided. uint256 amount; // Reward debt. uint256 rewardDebt; // Time when user deposited. uint256 depositTime; // Time when user withdraw uint256 withdrawTime; // Address of user address addressOfUser; } // Address of ERC20 token contract. IERC20 public tokenStaked; // Last time number that ERC20s distribution occurs. uint256 public lastRewardTime; // Accumulated ERC20s per share, times 1e18. uint256 public accERC20PerShare; // Total tokens deposited in the farm. uint256 public totalDeposits; // If contractor allows early withdraw on stakes bool public isEarlyWithdrawAllowed; // Minimal period of time to stake uint256 public minTimeToStake; // Address of the ERC20 Token contract. IERC20 public erc20; // The total amount of ERC20 that's paid out as reward. uint256 public paidOut; // ERC20 tokens rewarded per second. uint256 public rewardPerSecond; // Total rewards added to farm uint256 public totalFundedRewards; // Total current rewards uint256 public totalRewards; // Info of each user that stakes ERC20 tokens. mapping(address => StakeInfo[]) public stakeInfo; // The time when farming starts. uint256 public startTime; // The time when farming ends. uint256 public endTime; // Early withdraw penalty EarlyWithdrawPenalty public penalty; // Stake fee percent uint256 public stakeFeePercent; // Reward fee percent uint256 public rewardFeePercent; // Fee collector address address payable public feeCollector; // Flat fee amount uint256 public flatFeeAmount; // Fee option bool public isFlatFeeAllowed; // Total tokens burned uint256 public totalTokensBurned; // Total fee collected uint256 public totalFeeCollectedETH; // Total fee collected in tokens uint256 public totalFeeCollectedTokens; // Address of farm instance address public farmImplementation; // NumberOfUsers participating in farm uint256 public noOfUsers; // Addresses of all users that are currently participating address[] public participants; // Mapping of every users spot in array mapping(address => uint256) public id; // Events event Deposit( address indexed user, uint256 indexed stakeId, uint256 indexed amount ); event Withdraw( address indexed user, uint256 indexed stakeId, uint256 indexed amount ); event EmergencyWithdraw( address indexed user, uint256 indexed stakeId, uint256 indexed amount ); event EarlyWithdrawPenaltySet(EarlyWithdrawPenalty indexed penalty); event MinTimeToStakeSet(uint256 indexed minTimeToStake); event IsEarlyWithdrawAllowedSet(bool indexed allowed); event StakeFeePercentSet(uint256 indexed stakeFeePercent); event RewardFeePercentSet(uint256 indexed rewardFeePercent); event FlatFeeAmountSet(uint256 indexed flatFeeAmount); event IsFlatFeeAllowedSet(bool indexed allowed); event FeeCollectorSet(address payable indexed feeCollector); // Modifiers modifier validateStakeByStakeId(address _user, uint256 stakeId) { require(stakeId < stakeInfo[_user].length, "Stake does not exist"); _; } /** * @notice function sets initial state of contract * * @param _erc20 - address of reward token * @param _rewardPerSecond - number of reward per second * @param _startTime - beginning of farm * @param _minTimeToStake - how much time needs to pass before staking * @param _isEarlyWithdrawAllowed - is early withdraw allowed or not * @param _penalty - ENUM(what type of penalty) * @param _tokenStaked - address of token which is staked * @param _stakeFeePercent - fee percent for staking * @param _rewardFeePercent - fee percent for reward distribution * @param _flatFeeAmount - flat fee amount * @param _isFlatFeeAllowed - is flat fee allowed or not */ function initialize( address _erc20, uint256 _rewardPerSecond, uint256 _startTime, uint256 _minTimeToStake, bool _isEarlyWithdrawAllowed, uint256 _penalty, address _tokenStaked, uint256 _stakeFeePercent, uint256 _rewardFeePercent, uint256 _flatFeeAmount, address payable _feeCollector, bool _isFlatFeeAllowed, address _farmImplementation ) external initializer { // Upgrading ownership __Ownable_init(); __ReentrancyGuard_init(); // Requires for correct initialization require(_erc20 != address(0x0), "Wrong token address."); require(_rewardPerSecond > 0, "Rewards per second must be > 0."); require( _startTime >= block.timestamp, "Start time can not be in the past." ); require(_stakeFeePercent < 100, "Stake fee must be < 100."); require(_rewardFeePercent < 100, "Reward fee must be < 100."); require( _feeCollector != address(0x0), "Wrong fee collector address." ); // Initialization of contract erc20 = IERC20(_erc20); rewardPerSecond = _rewardPerSecond; startTime = _startTime; endTime = _startTime; minTimeToStake = _minTimeToStake; isEarlyWithdrawAllowed = _isEarlyWithdrawAllowed; stakeFeePercent = _stakeFeePercent; rewardFeePercent = _rewardFeePercent; flatFeeAmount = _flatFeeAmount; feeCollector = _feeCollector; isFlatFeeAllowed = _isFlatFeeAllowed; farmImplementation = _farmImplementation; _setEarlyWithdrawPenalty(_penalty); _addPool(IERC20(_tokenStaked)); } // All Internal functions /** * @notice function is adding a new ERC20 token to the pool * * @param _tokenStaked - address of token staked */ function _addPool( IERC20 _tokenStaked ) internal { require( address(_tokenStaked) != address(0x0), "Must input valid address." ); require( address(tokenStaked) == address(0x0), "Pool can be set only once." ); uint256 _lastRewardTime = block.timestamp > startTime ? block.timestamp : startTime; tokenStaked = _tokenStaked; lastRewardTime = _lastRewardTime; accERC20PerShare = 0; totalDeposits = 0; } /** * @notice function is setting early withdrawal penalty, if applicable * * @param _penalty - number of penalty */ function _setEarlyWithdrawPenalty( uint256 _penalty ) internal { penalty = EarlyWithdrawPenalty(_penalty); emit EarlyWithdrawPenaltySet(penalty); } /** * @notice function is adding participant from farm * * @param user - address of user * * @return boolean - if adding is successful or not */ function _addParticipant( address user ) internal returns(bool) { uint256 totalAmount = 0; for(uint256 i = 0; i < stakeInfo[user].length; i++){ totalAmount += stakeInfo[user][i].amount; } if(totalAmount > 0){ return false; } id[user] = noOfUsers; noOfUsers++; participants.push(user); return true; } /** * @notice function is removing participant from farm * * @param user - address of user * @param amount - how many is user withdrawing * * @return boolean - if removal is successful or not */ function _removeParticipant( address user, uint256 amount ) internal returns(bool) { uint256 totalAmount; if(noOfUsers == 1){ totalAmount = 0; for(uint256 i = 0; i < stakeInfo[user].length; i++){ totalAmount += stakeInfo[user][i].amount; } if(amount == totalAmount){ delete id[user]; participants.pop(); noOfUsers--; return true; } } else{ totalAmount = 0; for(uint256 i = 0; i < stakeInfo[user].length; i++){ totalAmount += stakeInfo[user][i].amount; } if(amount == totalAmount){ uint256 deletedUserId = id[user]; address lastUserInParticipantsArray = participants[participants.length - 1]; participants[deletedUserId] = lastUserInParticipantsArray; id[lastUserInParticipantsArray] = deletedUserId; delete id[user]; participants.pop(); noOfUsers--; return true; } } return false; } // All setter's functions /** * @notice function is setting new minimum time to stake value * * @param _minTimeToStake - min time to stake */ function setMinTimeToStake( uint256 _minTimeToStake ) external onlyOwner { minTimeToStake = _minTimeToStake; emit MinTimeToStakeSet(minTimeToStake); } /** * @notice function is setting new state of early withdraw * * @param _isEarlyWithdrawAllowed - is early withdraw allowed or not */ function setIsEarlyWithdrawAllowed( bool _isEarlyWithdrawAllowed ) external onlyOwner { isEarlyWithdrawAllowed = _isEarlyWithdrawAllowed; emit IsEarlyWithdrawAllowedSet(isEarlyWithdrawAllowed); } /** * @notice function is setting new stake fee percent value * * @param _stakeFeePercent - stake fee percent */ function setStakeFeePercent( uint256 _stakeFeePercent ) external onlyOwner { stakeFeePercent = _stakeFeePercent; emit StakeFeePercentSet(stakeFeePercent); } /** * @notice function is setting new reward fee percent value * * @param _rewardFeePercent - reward fee percent */ function setRewardFeePercent( uint256 _rewardFeePercent ) external onlyOwner { rewardFeePercent = _rewardFeePercent; emit RewardFeePercentSet(rewardFeePercent); } /** * @notice function is setting new flat fee amount * * @param _flatFeeAmount - flat fee amount */ function setFlatFeeAmount( uint256 _flatFeeAmount ) external onlyOwner { flatFeeAmount = _flatFeeAmount; emit FlatFeeAmountSet(flatFeeAmount); } /** * @notice function is setting flat fee allowed * * @param _isFlatFeeAllowed - is flat fee allowed or not */ function setIsFlatFeeAllowed( bool _isFlatFeeAllowed ) external onlyOwner { isFlatFeeAllowed = _isFlatFeeAllowed; emit IsFlatFeeAllowedSet(isFlatFeeAllowed); } /** * @notice function is setting feeCollector on new address * * @param _feeCollector - address of newFeeCollector */ function setFeeCollector( address payable _feeCollector ) external onlyOwner { feeCollector = _feeCollector; emit FeeCollectorSet(feeCollector); } // All view functions /** * @notice function is getting number to see deposited ERC20 token for a user. * * @param _user - address of user * @param stakeId - id of user stake * * @return deposited ERC20 token for a user */ function deposited( address _user, uint256 stakeId ) public view validateStakeByStakeId(_user, stakeId) returns (uint256) { StakeInfo memory stake = stakeInfo[_user][stakeId]; return stake.amount; } /** * @notice function is getting number to see pending ERC20s for a user. * * @dev pending reward = * (user.amount * pool.accERC20PerShare) - user.rewardDebt * * @param _user - address of user * @param stakeId - id of user stake * * @return pending ERC20s for a user. */ function pending( address _user, uint256 stakeId ) public view validateStakeByStakeId(_user, stakeId) returns (uint256) { StakeInfo memory stake = stakeInfo[_user][stakeId]; if (stake.amount == 0) { return 0; } uint256 _accERC20PerShare = accERC20PerShare; uint256 tokenSupply = totalDeposits; if (block.timestamp > lastRewardTime && tokenSupply != 0) { uint256 lastTime = block.timestamp < endTime ? block.timestamp : endTime; uint256 timeToCompare = lastRewardTime < endTime ? lastRewardTime : endTime; uint256 nrOfSeconds = lastTime.sub(timeToCompare); uint256 erc20Reward = nrOfSeconds.mul(rewardPerSecond); _accERC20PerShare = _accERC20PerShare.add( erc20Reward.mul(1e18).div(tokenSupply) ); } return stake.amount.mul(_accERC20PerShare).div(1e18).sub(stake.rewardDebt); } /** * @notice function is getting number to see deposit timestamp for a user. * * @param _user - address of user * @param stakeId - id of user stake * * @return time when user deposited specific stake */ function depositTimestamp( address _user, uint256 stakeId ) public view validateStakeByStakeId(_user, stakeId) returns (uint256) { StakeInfo memory stake = stakeInfo[_user][stakeId]; return stake.depositTime; } /** * @notice function is getting number to see withdraw timestamp for a user. * * @param _user - address of user * @param stakeId - id of user stake * * @return time when user withdraw specific stake */ function withdrawTimestamp( address _user, uint256 stakeId ) public view validateStakeByStakeId(_user, stakeId) returns (uint256) { StakeInfo memory stake = stakeInfo[_user][stakeId]; return stake.withdrawTime; } /** * @notice function is getting number for total rewards the farm has yet to pay out. * * @return how many total reward the farm has yet to pay out. */ function totalPending() external view returns (uint256) { if (block.timestamp <= startTime) { return 0; } uint256 lastTime = block.timestamp < endTime ? block.timestamp : endTime; return rewardPerSecond.mul(lastTime - startTime).sub(paidOut); } /** * @notice function is getting number of stakes user has * * @param user - address of user * * @return how many times has user staked tokens */ function getNumberOfUserStakes( address user ) external view returns (uint256) { return stakeInfo[user].length; } /** * @notice function is getting user pending amounts, stakes and deposit time * * @param user - address of user * * @return array of deposits,pendingAmounts and depositTime */ function getUserStakesAndPendingAmounts( address user ) external view returns ( uint256[] memory, uint256[] memory, uint256[] memory ) { uint256 numberOfStakes = stakeInfo[user].length; uint256[] memory deposits = new uint256[](numberOfStakes); uint256[] memory pendingAmounts = new uint256[](numberOfStakes); uint256[] memory depositTime = new uint256[](numberOfStakes); for(uint256 i = 0; i < numberOfStakes; i++){ deposits[i] = deposited(user, i); pendingAmounts[i] = pending(user, i); depositTime[i] = depositTimestamp(user, i); } return (deposits, pendingAmounts, depositTime); } /** * @notice function is getting total rewards locked/unlocked * * @return totalRewardsUnlocked * @return totalRewardsLocked */ function getTotalRewardsLockedUnlocked() external view returns (uint256, uint256) { uint256 totalRewardsLocked; uint256 totalRewardsUnlocked; if (block.timestamp <= startTime) { totalRewardsUnlocked = 0; totalRewardsLocked = totalFundedRewards; } else { uint256 lastTime = block.timestamp < endTime ? block.timestamp : endTime; totalRewardsUnlocked = rewardPerSecond.mul(lastTime - startTime); totalRewardsLocked = totalRewards - totalRewardsUnlocked; } return (totalRewardsUnlocked, totalRewardsLocked); } // Money managing functions /** * @notice function is funding the farm, increase the end time * * @param _amount - how many tokens is funded */ function fund( uint256 _amount ) external { uint256 balanceBefore = erc20.balanceOf(address(this)); erc20.safeTransferFrom(address(msg.sender), address(this), _amount); uint256 balanceAfter = erc20.balanceOf(address(this)); uint256 fundAmount; if(balanceAfter.sub(balanceBefore) <= _amount){ fundAmount = balanceAfter.sub(balanceBefore); } else{ fundAmount = _amount; } totalFundedRewards = totalFundedRewards.add(fundAmount); _fundInternal(fundAmount); } /** * @notice function is internally funding the farm, * by adding farmed rewards by user to the end * * @param _amount - how many tokens is funded */ function _fundInternal( uint256 _amount ) internal { require( block.timestamp < endTime, "fund: too late, the farm is closed" ); require(_amount > 0, "Amount must be greater than 0."); // Compute new end time endTime += _amount.div(rewardPerSecond); // Increase farm total rewards totalRewards = totalRewards.add(_amount); } /** * @notice function is updating reward, * variables of the given pool to be up-to-date. */ function updatePool() public { uint256 lastTime = block.timestamp < endTime ? block.timestamp : endTime; if (lastTime <= lastRewardTime) { return; } uint256 tokenSupply = totalDeposits; if (tokenSupply == 0) { lastRewardTime = lastTime; return; } uint256 nrOfSeconds = lastTime.sub(lastRewardTime); uint256 erc20Reward = nrOfSeconds.mul(rewardPerSecond); accERC20PerShare = accERC20PerShare.add( erc20Reward.mul(1e18).div(tokenSupply) ); lastRewardTime = block.timestamp; } /** * @notice function is depositing ERC20 tokens to Farm for ERC20 allocation. * * @param _amount - how many tokens user is depositing */ function deposit( uint256 _amount ) external nonReentrant payable { require( block.timestamp < endTime, "Deposit: too late, the farm is closed" ); StakeInfo memory stake; uint256 stakedAmount; // Update pool updatePool(); uint256 beforeBalance = tokenStaked.balanceOf(address(this)); tokenStaked.safeTransferFrom( address(msg.sender), address(this), _amount ); uint256 afterBalance = tokenStaked.balanceOf(address(this)); if(afterBalance.sub(beforeBalance) <= _amount){ stakedAmount = afterBalance.sub(beforeBalance); } else{ stakedAmount = _amount; } if (isFlatFeeAllowed) { // Collect flat fee require( msg.value >= flatFeeAmount, "Payable amount is less than fee amount." ); totalFeeCollectedETH = totalFeeCollectedETH.add(msg.value); } else if (stakeFeePercent > 0) { // Handle this case only if flat fee is not allowed, and stakeFeePercent > 0 // Compute the fee uint256 feeAmount = stakedAmount.mul(stakeFeePercent).div(100); // Compute stake amount stakedAmount = stakedAmount.sub(feeAmount); totalFeeCollectedTokens = totalFeeCollectedTokens.add(feeAmount); } // Increase total deposits totalDeposits = totalDeposits.add(stakedAmount); // Update user accounting stake.amount = stakedAmount; stake.rewardDebt = stake.amount.mul(accERC20PerShare).div(1e18); stake.depositTime = block.timestamp; stake.addressOfUser = address(msg.sender); stake.withdrawTime = 0; _addParticipant(address(msg.sender)); // Compute stake id uint256 stakeId = stakeInfo[msg.sender].length; // Push new stake to array of stakes for user stakeInfo[msg.sender].push(stake); // Emit deposit event emit Deposit(msg.sender, stakeId, stakedAmount); } // All withdraw functions /** * @notice function is withdrawing with caring about rewards * * @param _amount - how many tokens wants to be withdrawn * @param stakeId - Id of user stake */ function withdraw( uint256 _amount, uint256 stakeId ) external nonReentrant payable validateStakeByStakeId(msg.sender, stakeId) { bool minimalTimeStakeRespected; StakeInfo storage stake = stakeInfo[msg.sender][stakeId]; require( stake.amount >= _amount, "withdraw: can't withdraw more than deposit" ); updatePool(); minimalTimeStakeRespected = stake.depositTime.add(minTimeToStake) <= block.timestamp; // if early withdraw is not allowed, user can't withdraw funds before if (!isEarlyWithdrawAllowed) { // Check if user has respected minimal time to stake, require it. require( minimalTimeStakeRespected, "User can not withdraw funds yet." ); } // Compute pending rewards amount of user rewards uint256 pendingAmount = stake .amount .mul(accERC20PerShare) .div(1e18) .sub(stake.rewardDebt); // Penalties in case user didn't stake enough time if (pendingAmount > 0) { if ( penalty == EarlyWithdrawPenalty.BURN_REWARDS && !minimalTimeStakeRespected ) { // Burn to address (1) totalTokensBurned = totalTokensBurned.add(pendingAmount); _erc20Transfer(address(1), pendingAmount); // Update totalRewards totalRewards = totalRewards.sub(pendingAmount); } else if ( penalty == EarlyWithdrawPenalty.REDISTRIBUTE_REWARDS && !minimalTimeStakeRespected ) { if (block.timestamp >= endTime) { // Burn rewards because farm can not be funded anymore since it ended _erc20Transfer(address(1), pendingAmount); totalTokensBurned = totalTokensBurned.add(pendingAmount); // Update totalRewards totalRewards = totalRewards.sub(pendingAmount); } else { // Re-fund the farm _fundInternal(pendingAmount); } } else { // In case either there's no penalty _erc20Transfer(msg.sender, pendingAmount); // Update totalRewards totalRewards = totalRewards.sub(pendingAmount); } } _removeParticipant(address(msg.sender), _amount); stake.withdrawTime = block.timestamp; stake.amount = stake.amount.sub(_amount); stake.rewardDebt = stake.amount.mul(accERC20PerShare).div(1e18); tokenStaked.safeTransfer(address(msg.sender), _amount); totalDeposits = totalDeposits.sub(_amount); // Emit Withdraw event emit Withdraw(msg.sender, stakeId, _amount); } /** * @notice function is withdrawing without caring about rewards. EMERGENCY ONLY. * * @param stakeId - Id of user stake */ function emergencyWithdraw( uint256 stakeId ) external nonReentrant validateStakeByStakeId(msg.sender, stakeId) { StakeInfo storage stake = stakeInfo[msg.sender][stakeId]; // if early withdraw is not allowed, user can't withdraw funds before if (!isEarlyWithdrawAllowed) { bool minimalTimeStakeRespected = stake.depositTime.add( minTimeToStake ) <= block.timestamp; // Check if user has respected minimal time to stake, require it. require( minimalTimeStakeRespected, "User can not withdraw funds yet." ); } tokenStaked.safeTransfer(address(msg.sender), stake.amount); totalDeposits = totalDeposits.sub(stake.amount); _removeParticipant(address(msg.sender), stake.amount); stake.withdrawTime = block.timestamp; emit EmergencyWithdraw(msg.sender, stakeId, stake.amount); stake.amount = 0; stake.rewardDebt = 0; } /** * @notice function is withdrawing fee collected in ERC value */ function withdrawCollectedFeesERC() external onlyOwner { erc20.transfer(feeCollector, totalFeeCollectedTokens); totalFeeCollectedTokens = 0; } /** * @notice function is withdrawing fee collected in ETH value */ function withdrawCollectedFeesETH() external onlyOwner { (bool sent, ) = payable(feeCollector).call{value: totalFeeCollectedETH}(""); require(sent, "Failed to end flat fee"); totalFeeCollectedETH = 0; } /** * @notice function is withdrawing tokens if stuck * * @param _erc20 - address of token address * @param _amount - number of how many tokens * @param _beneficiary - address of user that collects tokens deposited by mistake */ function withdrawTokensIfStuck( address _erc20, uint256 _amount, address _beneficiary ) external onlyOwner { IERC20 token = IERC20(_erc20); require(tokenStaked != token, "User tokens can not be pulled"); require( _beneficiary != address(0x0), "_beneficiary can not be 0x0 address" ); token.safeTransfer(_beneficiary, _amount); } /** * @notice function is transferring ERC20, * and update the required ERC20 to payout all rewards * * @param _to - transfer on this address * @param _amount - number of how many tokens */ function _erc20Transfer( address _to, uint256 _amount ) internal { if (isFlatFeeAllowed) { // Collect flat fee require( msg.value >= flatFeeAmount, "Payable amount is less than fee amount." ); // Increase amount of fees collected totalFeeCollectedETH = totalFeeCollectedETH.add(msg.value); // send reward erc20.transfer(_to, _amount); paidOut += _amount; } else if (stakeFeePercent > 0) { // Collect reward fee uint256 feeAmount = _amount.mul(rewardFeePercent).div(100); uint256 rewardAmount = _amount.sub(feeAmount); // Increase amount of fees collected totalFeeCollectedTokens = totalFeeCollectedTokens.add(feeAmount); // send reward erc20.transfer(_to, rewardAmount); paidOut += _amount; } else { erc20.transfer(_to, _amount); paidOut += _amount; } } }
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"stakeId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Deposit","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"enum TokensFarm.EarlyWithdrawPenalty","name":"penalty","type":"uint8"}],"name":"EarlyWithdrawPenaltySet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"stakeId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"EmergencyWithdraw","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address payable","name":"feeCollector","type":"address"}],"name":"FeeCollectorSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"flatFeeAmount","type":"uint256"}],"name":"FlatFeeAmountSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"allowed","type":"bool"}],"name":"IsEarlyWithdrawAllowedSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"bool","name":"allowed","type":"bool"}],"name":"IsFlatFeeAllowedSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"minTimeToStake","type":"uint256"}],"name":"MinTimeToStakeSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"rewardFeePercent","type":"uint256"}],"name":"RewardFeePercentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"stakeFeePercent","type":"uint256"}],"name":"StakeFeePercentSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"uint256","name":"stakeId","type":"uint256"},{"indexed":true,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"accERC20PerShare","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"deposit","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"depositTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"deposited","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"emergencyWithdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"endTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"erc20","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"farmImplementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeCollector","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"flatFeeAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"fund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getNumberOfUserStakes","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getTotalRewardsLockedUnlocked","outputs":[{"internalType":"uint256","name":"","type":"uint256"},{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"}],"name":"getUserStakesAndPendingAmounts","outputs":[{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"},{"internalType":"uint256[]","name":"","type":"uint256[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"id","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20","type":"address"},{"internalType":"uint256","name":"_rewardPerSecond","type":"uint256"},{"internalType":"uint256","name":"_startTime","type":"uint256"},{"internalType":"uint256","name":"_minTimeToStake","type":"uint256"},{"internalType":"bool","name":"_isEarlyWithdrawAllowed","type":"bool"},{"internalType":"uint256","name":"_penalty","type":"uint256"},{"internalType":"address","name":"_tokenStaked","type":"address"},{"internalType":"uint256","name":"_stakeFeePercent","type":"uint256"},{"internalType":"uint256","name":"_rewardFeePercent","type":"uint256"},{"internalType":"uint256","name":"_flatFeeAmount","type":"uint256"},{"internalType":"address payable","name":"_feeCollector","type":"address"},{"internalType":"bool","name":"_isFlatFeeAllowed","type":"bool"},{"internalType":"address","name":"_farmImplementation","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isEarlyWithdrawAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFlatFeeAllowed","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lastRewardTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"minTimeToStake","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"noOfUsers","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"paidOut","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"participants","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"penalty","outputs":[{"internalType":"enum TokensFarm.EarlyWithdrawPenalty","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"pending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardPerSecond","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address payable","name":"_feeCollector","type":"address"}],"name":"setFeeCollector","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_flatFeeAmount","type":"uint256"}],"name":"setFlatFeeAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isEarlyWithdrawAllowed","type":"bool"}],"name":"setIsEarlyWithdrawAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"_isFlatFeeAllowed","type":"bool"}],"name":"setIsFlatFeeAllowed","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_minTimeToStake","type":"uint256"}],"name":"setMinTimeToStake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardFeePercent","type":"uint256"}],"name":"setRewardFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_stakeFeePercent","type":"uint256"}],"name":"setStakeFeePercent","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakeFeePercent","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakeInfo","outputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"uint256","name":"rewardDebt","type":"uint256"},{"internalType":"uint256","name":"depositTime","type":"uint256"},{"internalType":"uint256","name":"withdrawTime","type":"uint256"},{"internalType":"address","name":"addressOfUser","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"startTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenStaked","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalDeposits","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeCollectedETH","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFeeCollectedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalFundedRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalPending","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalRewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalTokensBurned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updatePool","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"withdrawCollectedFeesERC","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawCollectedFeesETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_user","type":"address"},{"internalType":"uint256","name":"stakeId","type":"uint256"}],"name":"withdrawTimestamp","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_erc20","type":"address"},{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"address","name":"_beneficiary","type":"address"}],"name":"withdrawTokensIfStuck","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.006513 | 272.5309 | $1.77 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.