More Info
Private Name Tags
ContractCreator
Latest 1 from a total of 1 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
0x60c06040 | 17711694 | 499 days ago | IN | 0 ETH | 0.08415048 |
Latest 2 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
17711694 | 499 days ago | Contract Creation | 0 ETH | |||
17711694 | 499 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
RewardManager
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; // contracts import "./FarmingRange.sol"; import "./Staking.sol"; // libraries import "../core/libraries/TransferHelper.sol"; // interfaces import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./interfaces/IRewardManager.sol"; /** * @title RewardManager * @notice RewardManager handles the creation of the contract staking and farming, automatically create a campaignInfo * in the farming for the staking, at slot 0 and initialize farming. The RewardManager is the owner of the funds in * the FarmingRange, only the RewardManager is capable of sending funds to be farmed and only the RewardManager will get * the funds back when updating of removing campaigns. */ contract RewardManager is IRewardManager { bytes4 private constant TRANSFER_OWNERSHIP_SELECTOR = bytes4(keccak256(bytes("transferOwnership(address)"))); IFarmingRange public immutable farming; IStaking public immutable staking; /** * @param _farmingOwner address who will own the farming * @param _smardexToken address of the smardex token * @param _startFarmingCampaign block number the staking pool in the farming will start to give rewards */ constructor(address _farmingOwner, IERC20 _smardexToken, uint256 _startFarmingCampaign) { require(_startFarmingCampaign > block.number, "RewardManager:start farming is in the past"); farming = new FarmingRange(address(this)); staking = new Staking(_smardexToken, farming); farming.addCampaignInfo(staking, _smardexToken, _startFarmingCampaign); staking.initializeFarming(); address(farming).call(abi.encodeWithSelector(TRANSFER_OWNERSHIP_SELECTOR, _farmingOwner)); } /// @inheritdoc IRewardManagerL2 function resetAllowance(uint256 _campaignId) external { require(_campaignId < farming.campaignInfoLen(), "RewardManager:campaignId:wrong campaign ID"); (, IERC20 _rewardToken, , , , , ) = farming.campaignInfo(_campaignId); // In case of tokens like USDT, an approval must be set to zero before setting it to another value. // Unlike most tokens, USDT does not ignore a non-zero current allowance value, leading to a possible // transaction failure when you are trying to change the allowance. if (_rewardToken.allowance(address(this), address(farming)) != 0) { TransferHelper.safeApprove(address(_rewardToken), address(farming), 0); } // After ensuring that the allowance is zero (or it was zero to begin with), we then set the allowance to max. TransferHelper.safeApprove(address(_rewardToken), address(farming), type(uint256).max); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (interfaces/IERC20.sol) pragma solidity ^0.8.0; import "../token/ERC20/IERC20.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } /** * @dev Returns true if the reentrancy guard is currently set to "entered", which indicates there is a * `nonReentrant` function in the call stack. */ function _reentrancyGuardEntered() internal view returns (bool) { return _status == _ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * The default value of {decimals} is 18. To change this, you should override * this function so it returns a different value. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the default value returned by this function, unless * it's overridden. * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom(address from, address to, uint256 amount) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance(address owner, address spender, uint256 amount) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer(address from, address to, uint256 amount) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/draft-IERC20Permit.sol) pragma solidity ^0.8.0; // EIP-2612 is Final as of 2022-11-01. This file is deprecated. import "./IERC20Permit.sol";
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 amount) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../extensions/IERC20Permit.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance + value)); } /** * @dev Decrease the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, oldAllowance - value)); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Compatible with tokens that require the approval to be set to * 0 before setting it to a non-zero value. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeWithSelector(token.approve.selector, spender, value); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, 0)); _callOptionalReturn(token, approvalCall); } } /** * @dev Use a ERC-2612 signature to set the `owner` approval toward `spender` on `token`. * Revert on invalid signature. */ function safePermit( IERC20Permit token, address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) internal { uint256 nonceBefore = token.nonces(owner); token.permit(owner, spender, value, deadline, v, r, s); uint256 nonceAfter = token.nonces(owner); require(nonceAfter == nonceBefore + 1, "SafeERC20: permit did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address-functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); require(returndata.length == 0 || abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && Address.isContract(address(token)); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.9.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * * Furthermore, `isContract` will also return true if the target contract within * the same transaction is already scheduled for destruction by `SELFDESTRUCT`, * which only has an effect at the end of a transaction. * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.0/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity =0.8.17; /** * @title TransferHelper * @notice helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false * @custom:from Uniswap lib, adapted to version 0.8.17 * @custom:url https://github.com/Uniswap/solidity-lib/blob/master/contracts/libraries/TransferHelper.sol */ library TransferHelper { function safeApprove(address token, address to, uint256 value) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::safeApprove: approve failed" ); } function safeTransfer(address token, address to, uint256 value) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::safeTransfer: transfer failed" ); } function safeTransferFrom(address token, address from, address to, uint256 value) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), "TransferHelper::transferFrom: transferFrom failed" ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{ value: value }(new bytes(0)); require(success, "TransferHelper::safeTransferETH: ETH transfer failed"); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; // contracts import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; // libraries import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; // interfaces import "@openzeppelin/contracts/interfaces/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol"; import "./interfaces/IFarmingRange.sol"; /** * @title FarmingRange * @notice Farming Range allows users to stake LP Tokens to receive various rewards * @custom:from Contract taken from the alpaca protocol, adapted to version 0.8.17 and modified with more functions * @custom:url https://github.com/alpaca-finance/bsc-alpaca-contract/blob/main/solidity/contracts/6.12/GrazingRange.sol */ contract FarmingRange is IFarmingRange, Ownable, ReentrancyGuard { using SafeERC20 for IERC20; mapping(uint256 => RewardInfo[]) public campaignRewardInfo; CampaignInfo[] public campaignInfo; mapping(uint256 => mapping(address => UserInfo)) public userInfo; uint256 public rewardInfoLimit; address public immutable rewardManager; constructor(address _rewardManager) { rewardInfoLimit = 52; require(_rewardManager != address(0), "FarmingRange::constructor::Reward manager is not defined"); rewardManager = _rewardManager; } /// @inheritdoc IFarmingRange function setRewardInfoLimit(uint256 _updatedRewardInfoLimit) external onlyOwner { rewardInfoLimit = _updatedRewardInfoLimit; emit SetRewardInfoLimit(rewardInfoLimit); } /// @inheritdoc IFarmingRange function addCampaignInfo( IERC20 _stakingToken, IERC20 _rewardToken, uint256 _startBlock ) external virtual onlyOwner { require(_startBlock > block.number, "FarmingRange::addCampaignInfo::Start block should be in the future"); campaignInfo.push( CampaignInfo({ stakingToken: _stakingToken, rewardToken: _rewardToken, startBlock: _startBlock, lastRewardBlock: _startBlock, accRewardPerShare: 0, totalStaked: 0, totalRewards: 0 }) ); emit AddCampaignInfo(campaignInfo.length - 1, _stakingToken, _rewardToken, _startBlock); } /// @inheritdoc IFarmingRange function addRewardInfo( uint256 _campaignID, uint256 _endBlock, uint256 _rewardPerBlock ) public virtual onlyOwner nonReentrant { RewardInfo[] storage rewardInfo = campaignRewardInfo[_campaignID]; CampaignInfo storage campaign = campaignInfo[_campaignID]; require( rewardInfo.length < rewardInfoLimit, "FarmingRange::addRewardInfo::reward info length exceeds the limit" ); require( rewardInfo.length == 0 || rewardInfo[rewardInfo.length - 1].endBlock >= block.number, "FarmingRange::addRewardInfo::reward period ended" ); require( rewardInfo.length == 0 || rewardInfo[rewardInfo.length - 1].endBlock < _endBlock, "FarmingRange::addRewardInfo::bad new endblock" ); uint256 _startBlock = rewardInfo.length == 0 ? campaign.startBlock : rewardInfo[rewardInfo.length - 1].endBlock; uint256 _blockRange = _endBlock - _startBlock; uint256 _totalRewards = _rewardPerBlock * _blockRange; campaign.totalRewards = campaign.totalRewards + _totalRewards; rewardInfo.push(RewardInfo({ endBlock: _endBlock, rewardPerBlock: _rewardPerBlock })); _transferFromWithAllowance(campaign.rewardToken, _totalRewards, _campaignID); emit AddRewardInfo(_campaignID, rewardInfo.length - 1, _endBlock, _rewardPerBlock); } /// @inheritdoc IFarmingRange function addRewardInfoMultiple( uint256 _campaignID, uint256[] calldata _endBlock, uint256[] calldata _rewardPerBlock ) external onlyOwner { require(_endBlock.length == _rewardPerBlock.length, "FarmingRange::addRewardMultiple::wrong parameters length"); for (uint256 _i; _i != _endBlock.length; ) { addRewardInfo(_campaignID, _endBlock[_i], _rewardPerBlock[_i]); unchecked { ++_i; } } } /// @inheritdoc IFarmingRange function updateRewardInfo( uint256 _campaignID, uint256 _rewardIndex, uint256 _endBlock, uint256 _rewardPerBlock ) public virtual onlyOwner nonReentrant { RewardInfo[] storage rewardInfo = campaignRewardInfo[_campaignID]; CampaignInfo storage campaign = campaignInfo[_campaignID]; RewardInfo storage selectedRewardInfo = rewardInfo[_rewardIndex]; uint256 _previousEndBlock = selectedRewardInfo.endBlock; _updateCampaign(_campaignID); require(_previousEndBlock >= block.number, "FarmingRange::updateRewardInfo::reward period ended"); if (_rewardIndex != 0) { require( rewardInfo[_rewardIndex - 1].endBlock < _endBlock, "FarmingRange::updateRewardInfo::bad new endblock" ); } if (rewardInfo.length > _rewardIndex + 1) { require( _endBlock < rewardInfo[_rewardIndex + 1].endBlock, "FarmingRange::updateRewardInfo::reward period end is in next range" ); } (bool _refund, uint256 _diff) = _updateRewardsDiff( _rewardIndex, _endBlock, _rewardPerBlock, rewardInfo, campaign, selectedRewardInfo ); if (!_refund && _diff != 0) { _transferFromWithAllowance(campaign.rewardToken, _diff, _campaignID); } // If _endblock is changed, and if we have another range after the updated one, // we need to update rewardPerBlock to distribute on the next new range or we could run out of tokens if (_endBlock != _previousEndBlock && rewardInfo.length - 1 > _rewardIndex) { RewardInfo storage nextRewardInfo = rewardInfo[_rewardIndex + 1]; uint256 _nextRewardInfoEndBlock = nextRewardInfo.endBlock; uint256 _initialBlockRange = _nextRewardInfoEndBlock - _previousEndBlock; uint256 _nextBlockRange = _nextRewardInfoEndBlock - _endBlock; uint256 _currentRewardPerBlock = nextRewardInfo.rewardPerBlock; uint256 _initialNextTotal = _initialBlockRange * _currentRewardPerBlock; _currentRewardPerBlock = (_currentRewardPerBlock * _initialBlockRange) / _nextBlockRange; uint256 _nextTotal = _nextBlockRange * _currentRewardPerBlock; nextRewardInfo.rewardPerBlock = _currentRewardPerBlock; if (_nextTotal < _initialNextTotal) { campaign.rewardToken.safeTransfer(rewardManager, _initialNextTotal - _nextTotal); campaign.totalRewards -= _initialNextTotal - _nextTotal; } } // UPDATE total campaign.totalRewards = _refund ? campaign.totalRewards - _diff : campaign.totalRewards + _diff; selectedRewardInfo.endBlock = _endBlock; selectedRewardInfo.rewardPerBlock = _rewardPerBlock; emit UpdateRewardInfo(_campaignID, _rewardIndex, _endBlock, _rewardPerBlock); } /// @inheritdoc IFarmingRange function updateRewardMultiple( uint256 _campaignID, uint256[] memory _rewardIndex, uint256[] memory _endBlock, uint256[] memory _rewardPerBlock ) public onlyOwner { require( _rewardIndex.length == _endBlock.length && _rewardIndex.length == _rewardPerBlock.length, "FarmingRange::updateRewardMultiple::wrong parameters length" ); for (uint256 _i; _i != _rewardIndex.length; ) { updateRewardInfo(_campaignID, _rewardIndex[_i], _endBlock[_i], _rewardPerBlock[_i]); unchecked { ++_i; } } } /// @inheritdoc IFarmingRange function updateCampaignsRewards( uint256[] calldata _campaignID, uint256[][] calldata _rewardIndex, uint256[][] calldata _endBlock, uint256[][] calldata _rewardPerBlock ) external onlyOwner { require( _campaignID.length == _rewardIndex.length && _rewardIndex.length == _endBlock.length && _rewardIndex.length == _rewardPerBlock.length, "FarmingRange::updateCampaignsRewards::wrong rewardInfo length" ); for (uint256 _i; _i != _campaignID.length; ) { updateRewardMultiple(_campaignID[_i], _rewardIndex[_i], _endBlock[_i], _rewardPerBlock[_i]); unchecked { ++_i; } } } /// @inheritdoc IFarmingRange function removeLastRewardInfo(uint256 _campaignID) external virtual onlyOwner { RewardInfo[] storage rewardInfo = campaignRewardInfo[_campaignID]; CampaignInfo storage campaign = campaignInfo[_campaignID]; uint256 _rewardInfoLength = rewardInfo.length; require(_rewardInfoLength != 0, "FarmingRange::updateCampaignsRewards::no rewardInfoLen"); RewardInfo storage lastRewardInfo = rewardInfo[_rewardInfoLength - 1]; uint256 _lastRewardInfoEndBlock = lastRewardInfo.endBlock; require(_lastRewardInfoEndBlock > block.number, "FarmingRange::removeLastRewardInfo::reward period ended"); _updateCampaign(_campaignID); if (lastRewardInfo.rewardPerBlock != 0) { (bool _refund, uint256 _diff) = _updateRewardsDiff( _rewardInfoLength - 1, _lastRewardInfoEndBlock, 0, rewardInfo, campaign, lastRewardInfo ); if (_refund) { campaign.totalRewards = campaign.totalRewards - _diff; } } rewardInfo.pop(); emit RemoveRewardInfo(_campaignID, _rewardInfoLength - 1); } /// @inheritdoc IFarmingRange function rewardInfoLen(uint256 _campaignID) external view returns (uint256) { return campaignRewardInfo[_campaignID].length; } /// @inheritdoc IFarmingRange function campaignInfoLen() external view returns (uint256) { return campaignInfo.length; } /// @inheritdoc IFarmingRange function currentEndBlock(uint256 _campaignID) external view virtual returns (uint256) { return _endBlockOf(_campaignID, block.number); } /// @inheritdoc IFarmingRange function currentRewardPerBlock(uint256 _campaignID) external view virtual returns (uint256) { return _rewardPerBlockOf(_campaignID, block.number); } /// @inheritdoc IFarmingRange function getMultiplier(uint256 _from, uint256 _to, uint256 _endBlock) public pure returns (uint256) { if ((_from >= _endBlock) || (_from > _to)) { return 0; } if (_to <= _endBlock) { return _to - _from; } return _endBlock - _from; } /// @inheritdoc IFarmingRange function pendingReward(uint256 _campaignID, address _user) external view returns (uint256) { return _pendingReward(_campaignID, userInfo[_campaignID][_user].amount, userInfo[_campaignID][_user].rewardDebt); } /// @inheritdoc IFarmingRange function updateCampaign(uint256 _campaignID) external nonReentrant { _updateCampaign(_campaignID); } /// @inheritdoc IFarmingRange function massUpdateCampaigns() external nonReentrant { uint256 _length = campaignInfo.length; for (uint256 _i; _i != _length; ) { _updateCampaign(_i); unchecked { ++_i; } } } /// @inheritdoc IFarmingRange function deposit(uint256 _campaignID, uint256 _amount) public nonReentrant { CampaignInfo storage campaign = campaignInfo[_campaignID]; UserInfo storage user = userInfo[_campaignID][msg.sender]; _updateCampaign(_campaignID); if (user.amount != 0) { uint256 _pending = (user.amount * campaign.accRewardPerShare) / 1e20 - user.rewardDebt; if (_pending != 0) { campaign.rewardToken.safeTransfer(address(msg.sender), _pending); } } if (_amount != 0) { user.amount = user.amount + _amount; campaign.totalStaked = campaign.totalStaked + _amount; campaign.stakingToken.safeTransferFrom(msg.sender, address(this), _amount); } user.rewardDebt = (user.amount * campaign.accRewardPerShare) / (1e20); emit Deposit(msg.sender, _amount, _campaignID); } /// @inheritdoc IFarmingRange function depositWithPermit( uint256 _campaignID, uint256 _amount, bool _approveMax, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) external { SafeERC20.safePermit( IERC20Permit(address(campaignInfo[_campaignID].stakingToken)), msg.sender, address(this), _approveMax ? type(uint256).max : _amount, _deadline, _v, _r, _s ); deposit(_campaignID, _amount); } /// @inheritdoc IFarmingRange function withdraw(uint256 _campaignID, uint256 _amount) external nonReentrant { _withdraw(_campaignID, _amount); } /// @inheritdoc IFarmingRange function harvest(uint256[] calldata _campaignIDs) external nonReentrant { for (uint256 _i; _i != _campaignIDs.length; ) { _withdraw(_campaignIDs[_i], 0); unchecked { ++_i; } } } /// @inheritdoc IFarmingRange function emergencyWithdraw(uint256 _campaignID) external nonReentrant { CampaignInfo storage campaign = campaignInfo[_campaignID]; UserInfo storage user = userInfo[_campaignID][msg.sender]; uint256 _amount = user.amount; campaign.totalStaked = campaign.totalStaked - _amount; user.amount = 0; user.rewardDebt = 0; campaign.stakingToken.safeTransfer(msg.sender, _amount); emit EmergencyWithdraw(msg.sender, _amount, _campaignID); } /** * @notice function to trick the compilator to use safeTransferFrom in try catch * @param _token token to interact with * @param _from address who own token * @param _to address to transfer token * @param _amount quantity to be transferred */ function attemptTransfer(IERC20 _token, address _from, address _to, uint256 _amount) external { require(msg.sender == address(this), "FarmingRange::attemptTransfer::Sender not farming"); // this function should be called only by this contract _token.safeTransferFrom(_from, _to, _amount); } /** * @notice return the endblock of the phase that contains _blockNumber * @param _campaignID the campaign id of the phases to check * @param _blockNumber the block number to check * @return the endblock of the phase that contains _blockNumber */ function _endBlockOf(uint256 _campaignID, uint256 _blockNumber) internal view returns (uint256) { RewardInfo[] memory rewardInfo = campaignRewardInfo[_campaignID]; uint256 _len = rewardInfo.length; if (_len == 0) { return 0; } for (uint256 _i; _i != _len; ) { if (_blockNumber <= rewardInfo[_i].endBlock) { return rewardInfo[_i].endBlock; } unchecked { ++_i; } } /// @dev when couldn't find any reward info, it means that _blockNumber exceed endblock /// so return the latest reward info. return rewardInfo[_len - 1].endBlock; } /** * @notice return the rewardPerBlock of the phase that contains _blockNumber * @param _campaignID the campaign id of the phases to check * @param _blockNumber the block number to check * @return the rewardPerBlock of the phase that contains _blockNumber */ function _rewardPerBlockOf(uint256 _campaignID, uint256 _blockNumber) internal view returns (uint256) { RewardInfo[] memory rewardInfo = campaignRewardInfo[_campaignID]; uint256 _len = rewardInfo.length; if (_len == 0) { return 0; } for (uint256 _i; _i != _len; ) { if (_blockNumber <= rewardInfo[_i].endBlock) { return rewardInfo[_i].rewardPerBlock; } unchecked { ++_i; } } /// @dev when couldn't find any reward info, it means that timestamp exceed endblock /// so return 0 return 0; } /** * @notice in case of reward update, return reward diff and refund user if needed * @param _rewardIndex the number of the phase to update * @param _endBlock new endblock of the phase * @param _rewardPerBlock new rewardPerBlock of the phase * @param rewardInfo pointer on the array of rewardInfo in storage * @param campaign pointer on the campaign in storage * @param selectedRewardInfo pointer on the selectedRewardInfo in storage * @return refund_ boolean, true if user got refund * @return diff_ the reward difference */ function _updateRewardsDiff( uint256 _rewardIndex, uint256 _endBlock, uint256 _rewardPerBlock, RewardInfo[] storage rewardInfo, CampaignInfo storage campaign, RewardInfo storage selectedRewardInfo ) internal virtual returns (bool refund_, uint256 diff_) { uint256 _previousStartBlock = _rewardIndex == 0 ? campaign.startBlock : rewardInfo[_rewardIndex - 1].endBlock; uint256 _newStartBlock = block.number > _previousStartBlock ? block.number : _previousStartBlock; uint256 _previousBlockRange = selectedRewardInfo.endBlock - _previousStartBlock; uint256 _newBlockRange = _endBlock - _newStartBlock; uint256 _selectedRewardPerBlock = selectedRewardInfo.rewardPerBlock; uint256 _accumulatedRewards = (_newStartBlock - _previousStartBlock) * _selectedRewardPerBlock; uint256 _previousTotalRewards = _selectedRewardPerBlock * _previousBlockRange; uint256 _totalRewards = _rewardPerBlock * _newBlockRange; refund_ = _previousTotalRewards > _totalRewards + _accumulatedRewards; diff_ = refund_ ? _previousTotalRewards - _totalRewards - _accumulatedRewards : _totalRewards + _accumulatedRewards - _previousTotalRewards; if (refund_) { campaign.rewardToken.safeTransfer(rewardManager, diff_); } } /** * @notice transfer tokens from rewardManger to this contract. * @param _rewardToken to reward token to be transferred from the rewardManager to this contract * @param _amount qty to be transferred * @param _campaignID id of the campaign so the rewardManager can fetch the rewardToken address to transfer * * @dev in case of fail, not enough allowance is considered to be the reason, so we call resetAllowance(uint256) on * the reward manager (which will reset allowance to uint256.max) and we try again to transfer */ function _transferFromWithAllowance(IERC20 _rewardToken, uint256 _amount, uint256 _campaignID) internal { try this.attemptTransfer(_rewardToken, rewardManager, address(this), _amount) {} catch { rewardManager.call(abi.encodeWithSignature("resetAllowance(uint256)", _campaignID)); _rewardToken.safeTransferFrom(rewardManager, address(this), _amount); } } /** * @notice View function to retrieve pending Reward. * @param _campaignID pending reward of campaign id * @param _amount qty of staked token * @param _rewardDebt user info rewardDebt * @return pending rewards */ function _pendingReward( uint256 _campaignID, uint256 _amount, uint256 _rewardDebt ) internal view virtual returns (uint256) { CampaignInfo memory _campaign = campaignInfo[_campaignID]; RewardInfo[] memory _rewardInfo = campaignRewardInfo[_campaignID]; uint256 _accRewardPerShare = _campaign.accRewardPerShare; if (block.number > _campaign.lastRewardBlock && _campaign.totalStaked != 0) { uint256 _cursor = _campaign.lastRewardBlock; for (uint256 _i; _i != _rewardInfo.length; ) { uint256 _multiplier = getMultiplier(_cursor, block.number, _rewardInfo[_i].endBlock); if (_multiplier != 0) { _cursor = _rewardInfo[_i].endBlock; _accRewardPerShare = _accRewardPerShare + ((_multiplier * _rewardInfo[_i].rewardPerBlock * 1e20) / _campaign.totalStaked); } unchecked { ++_i; } } } return ((_amount * _accRewardPerShare) / 1e20) - _rewardDebt; } /** * @notice Update reward variables of the given campaign to be up-to-date. * NOTE: All rewards relating to periods devoid of any depositors are sent back to the reward manager. * @param _campaignID campaign id */ function _updateCampaign(uint256 _campaignID) internal virtual { require(campaignInfo.length > _campaignID, "FarmingRange::_updateCampaign::Campaign id not valid"); CampaignInfo storage campaign = campaignInfo[_campaignID]; RewardInfo[] memory _rewardInfo = campaignRewardInfo[_campaignID]; if (block.number <= campaign.lastRewardBlock) { return; } if (campaign.totalStaked == 0) { uint256 _amount; for (uint256 _i; _i != _rewardInfo.length; ) { if (_rewardInfo[_i].endBlock >= campaign.lastRewardBlock) { uint256 _startBlock = _i != 0 ? _rewardInfo[_i - 1].endBlock : campaign.lastRewardBlock; bool _lastRewardInfo = _rewardInfo[_i].endBlock > block.number; uint256 _blockRange = (_lastRewardInfo ? block.number : _rewardInfo[_i].endBlock) - (_startBlock > campaign.lastRewardBlock ? _startBlock : campaign.lastRewardBlock); _amount += _rewardInfo[_i].rewardPerBlock * _blockRange; if (_lastRewardInfo) { break; } } unchecked { ++_i; } } if (_amount != 0) { campaign.rewardToken.safeTransfer(rewardManager, _amount); } campaign.lastRewardBlock = block.number; return; } /// @dev for each reward info for (uint256 _i; _i != _rewardInfo.length; ) { // @dev get multiplier based on current Block and rewardInfo's end block // multiplier will be a range of either (current block - campaign.lastRewardBlock) // or (reward info's endblock - campaign.lastRewardBlock) or 0 uint256 _multiplier = getMultiplier(campaign.lastRewardBlock, block.number, _rewardInfo[_i].endBlock); if (_multiplier != 0) { // @dev if currentBlock exceed end block, use end block as the last reward block // so that for the next iteration, previous endBlock will be used as the last reward block if (block.number > _rewardInfo[_i].endBlock) { campaign.lastRewardBlock = _rewardInfo[_i].endBlock; } else { campaign.lastRewardBlock = block.number; } campaign.accRewardPerShare = campaign.accRewardPerShare + ((_multiplier * _rewardInfo[_i].rewardPerBlock * 1e20) / campaign.totalStaked); } unchecked { ++_i; } } } /** * @notice Withdraw staking token in a campaign. Also withdraw the current pending reward * @param _campaignID campaign id * @param _amount amount to withdraw */ function _withdraw(uint256 _campaignID, uint256 _amount) internal { CampaignInfo storage campaign = campaignInfo[_campaignID]; UserInfo storage user = userInfo[_campaignID][msg.sender]; require(user.amount >= _amount, "FarmingRange::withdraw::bad withdraw amount"); _updateCampaign(_campaignID); uint256 _pending = (user.amount * campaign.accRewardPerShare) / 1e20 - user.rewardDebt; if (_pending != 0) { campaign.rewardToken.safeTransfer(msg.sender, _pending); } if (_amount != 0) { user.amount = user.amount - _amount; campaign.totalStaked = campaign.totalStaked - _amount; campaign.stakingToken.safeTransfer(msg.sender, _amount); } user.rewardDebt = (user.amount * campaign.accRewardPerShare) / 1e20; emit Withdraw(msg.sender, _amount, _campaignID); } }
// SPDX-License-Identifier: MIT pragma solidity 0.8.17; // interfaces import "@openzeppelin/contracts/interfaces/IERC20.sol"; interface IFarmingRange { /** * @notice Info of each user. * @param amount How many Staking tokens the user has provided. * @param rewardDebt We do some fancy math here. Basically, any point in time, the amount of reward * entitled to a user but is pending to be distributed is: * * pending reward = (user.amount * pool.accRewardPerShare) - user.rewardDebt * * Whenever a user deposits or withdraws LP tokens to a pool. Here's what happens: * 1. The pool's `accRewardPerShare` (and `lastRewardBlock`) gets updated. * 2. User receives the pending reward sent to his/her address. * 3. User's `amount` gets updated. * 4. User's `rewardDebt` gets updated. * * from: https://github.com/jazz-defi/contracts/blob/master/MasterChefV2.sol */ struct UserInfo { uint256 amount; uint256 rewardDebt; } /** * @notice Info of each reward distribution campaign. * @param stakingToken address of Staking token contract. * @param rewardToken address of Reward token contract * @param startBlock start block of the campaign * @param lastRewardBlock last block number that Reward Token distribution occurs. * @param accRewardPerShare accumulated Reward Token per share, times 1e20. * @param totalStaked total staked amount each campaign's stake token, typically, * @param totalRewards total amount of reward to be distributed until the end of the last phase * * @dev each campaign has the same stake token, so no need to track it separetely */ struct CampaignInfo { IERC20 stakingToken; IERC20 rewardToken; uint256 startBlock; uint256 lastRewardBlock; uint256 accRewardPerShare; uint256 totalStaked; uint256 totalRewards; } /** * @notice Info about a reward-phase * @param endBlock block number of the end of the phase * @param rewardPerBlock amount of reward to be distributed per block in this phase */ struct RewardInfo { uint256 endBlock; uint256 rewardPerBlock; } /** * @notice emitted at each deposit * @param user address that deposit its funds * @param amount amount deposited * @param campaign campaingId on which the user has deposited funds */ event Deposit(address indexed user, uint256 amount, uint256 campaign); /** * @notice emitted at each withdraw * @param user address that withdrawn its funds * @param amount amount withdrawn * @param campaign campaingId on which the user has withdrawn funds */ event Withdraw(address indexed user, uint256 amount, uint256 campaign); /** * @notice emitted at each emergency withdraw * @param user address that emergency-withdrawn its funds * @param amount amount emergency-withdrawn * @param campaign campaingId on which the user has emergency-withdrawn funds */ event EmergencyWithdraw(address indexed user, uint256 amount, uint256 campaign); /** * @notice emitted at each campaign added * @param campaignID new campaign id * @param stakingToken token address to be staked in this campaign * @param rewardToken token address of the rewards in this campaign * @param startBlock starting block of this campaign */ event AddCampaignInfo(uint256 indexed campaignID, IERC20 stakingToken, IERC20 rewardToken, uint256 startBlock); /** * @notice emitted at each phase of reward added * @param campaignID campaign id on which rewards were added * @param phase number of the new phase added (latest at the moment of add) * @param endBlock number of the block that the phase stops (phase starts at the endblock of the previous phase's * endblock, and if it's the phase 0, it start at the startBlock of the campaign struct) * @param rewardPerBlock amount of reward distributed per block in this phase */ event AddRewardInfo(uint256 indexed campaignID, uint256 indexed phase, uint256 endBlock, uint256 rewardPerBlock); /** * @notice emitted when a reward phase is updated * @param campaignID campaign id on which the rewards-phase is updated * @param phase id of phase updated * @param endBlock new endblock of the phase * @param rewardPerBlock new rewardPerBlock of the phase */ event UpdateRewardInfo(uint256 indexed campaignID, uint256 indexed phase, uint256 endBlock, uint256 rewardPerBlock); /** * @notice emitted when a reward phase is removed * @param campaignID campaign id on which the rewards-phase is removed * @param phase id of phase removed (only the latest phase can be removed) */ event RemoveRewardInfo(uint256 indexed campaignID, uint256 indexed phase); /** * @notice emitted when the rewardInfoLimit is updated * @param rewardInfoLimit new max phase amount per campaign */ event SetRewardInfoLimit(uint256 rewardInfoLimit); /** * @notice set new reward info limit, defining how many phases are allowed * @param _updatedRewardInfoLimit new reward info limit */ function setRewardInfoLimit(uint256 _updatedRewardInfoLimit) external; /** * @notice reward campaign, one campaign represent a pair of staking and reward token, * last reward Block and acc reward Per Share * @param _stakingToken staking token address * @param _rewardToken reward token address * @param _startBlock block number when the campaign will start */ function addCampaignInfo(IERC20 _stakingToken, IERC20 _rewardToken, uint256 _startBlock) external; /** * @notice add a new reward info, when a new reward info is added, the reward * & its end block will be extended by the newly pushed reward info. * @param _campaignID id of the campaign * @param _endBlock end block of this reward info * @param _rewardPerBlock reward per block to distribute until the end */ function addRewardInfo(uint256 _campaignID, uint256 _endBlock, uint256 _rewardPerBlock) external; /** * @notice add multiple reward Info into a campaign in one tx. * @param _campaignID id of the campaign * @param _endBlock array of end blocks * @param _rewardPerBlock array of reward per block */ function addRewardInfoMultiple( uint256 _campaignID, uint256[] calldata _endBlock, uint256[] calldata _rewardPerBlock ) external; /** * @notice update one campaign reward info for a specified range index. * @param _campaignID id of the campaign * @param _rewardIndex index of the reward info * @param _endBlock end block of this reward info * @param _rewardPerBlock reward per block to distribute until the end */ function updateRewardInfo( uint256 _campaignID, uint256 _rewardIndex, uint256 _endBlock, uint256 _rewardPerBlock ) external; /** * @notice update multiple campaign rewards info for all range index. * @param _campaignID id of the campaign * @param _rewardIndex array of reward info index * @param _endBlock array of end block * @param _rewardPerBlock array of rewardPerBlock */ function updateRewardMultiple( uint256 _campaignID, uint256[] memory _rewardIndex, uint256[] memory _endBlock, uint256[] memory _rewardPerBlock ) external; /** * @notice update multiple campaigns and rewards info for all range index. * @param _campaignID array of campaign id * @param _rewardIndex multi dimensional array of reward info index * @param _endBlock multi dimensional array of end block * @param _rewardPerBlock multi dimensional array of rewardPerBlock */ function updateCampaignsRewards( uint256[] calldata _campaignID, uint256[][] calldata _rewardIndex, uint256[][] calldata _endBlock, uint256[][] calldata _rewardPerBlock ) external; /** * @notice remove last reward info for specified campaign. * @param _campaignID campaign id */ function removeLastRewardInfo(uint256 _campaignID) external; /** * @notice return the entries amount of reward info for one campaign. * @param _campaignID campaign id * @return reward info quantity */ function rewardInfoLen(uint256 _campaignID) external view returns (uint256); /** * @notice return the number of campaigns. * @return campaign quantity */ function campaignInfoLen() external view returns (uint256); /** * @notice return the end block of the current reward info for a given campaign. * @param _campaignID campaign id * @return reward info end block number */ function currentEndBlock(uint256 _campaignID) external view returns (uint256); /** * @notice return the reward per block of the current reward info for a given campaign. * @param _campaignID campaign id * @return current reward per block */ function currentRewardPerBlock(uint256 _campaignID) external view returns (uint256); /** * @notice Return reward multiplier over the given _from to _to block. * Reward multiplier is the amount of blocks between from and to * @param _from start block number * @param _to end block number * @param _endBlock end block number of the reward info * @return block distance */ function getMultiplier(uint256 _from, uint256 _to, uint256 _endBlock) external returns (uint256); /** * @notice View function to retrieve pending Reward. * @param _campaignID pending reward of campaign id * @param _user address to retrieve pending reward * @return current pending reward */ function pendingReward(uint256 _campaignID, address _user) external view returns (uint256); /** * @notice Update reward variables of the given campaign to be up-to-date. * @param _campaignID campaign id */ function updateCampaign(uint256 _campaignID) external; /** * @notice Update reward variables for all campaigns. gas spending is HIGH in this method call, BE CAREFUL. */ function massUpdateCampaigns() external; /** * @notice Deposit staking token in a campaign. * @param _campaignID campaign id * @param _amount amount to deposit */ function deposit(uint256 _campaignID, uint256 _amount) external; /** * @notice Deposit staking token in a campaign with the EIP-2612 signature off chain * @param _campaignID campaign id * @param _amount amount to deposit * @param _approveMax Whether or not the approval amount in the signature is for liquidity or uint(-1). * @param _deadline Unix timestamp after which the transaction will revert. * @param _v The v component of the permit signature. * @param _r The r component of the permit signature. * @param _s The s component of the permit signature. */ function depositWithPermit( uint256 _campaignID, uint256 _amount, bool _approveMax, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) external; /** * @notice Withdraw staking token in a campaign. Also withdraw the current pending reward * @param _campaignID campaign id * @param _amount amount to withdraw */ function withdraw(uint256 _campaignID, uint256 _amount) external; /** * @notice Harvest campaigns, will claim rewards token of every campaign ids in the array * @param _campaignIDs array of campaign id */ function harvest(uint256[] calldata _campaignIDs) external; /** * @notice Withdraw without caring about rewards. EMERGENCY ONLY. * @param _campaignID campaign id */ function emergencyWithdraw(uint256 _campaignID) external; /** * @notice get Reward info for a campaign ID and index, that is a set of {endBlock, rewardPerBlock} * indexed by campaign ID * @param _campaignID campaign id * @param _rewardIndex index of the reward info * @return endBlock_ end block of this reward info * @return rewardPerBlock_ reward per block to distribute */ function campaignRewardInfo( uint256 _campaignID, uint256 _rewardIndex ) external view returns (uint256 endBlock_, uint256 rewardPerBlock_); /** * @notice get a Campaign Reward info for a campaign ID * @param _campaignID campaign id * @return all params from CampaignInfo struct */ function campaignInfo( uint256 _campaignID ) external view returns (IERC20, IERC20, uint256, uint256, uint256, uint256, uint256); /** * @notice get a User Reward info for a campaign ID and user address * @param _campaignID campaign id * @param _user user address * @return all params from UserInfo struct */ function userInfo(uint256 _campaignID, address _user) external view returns (uint256, uint256); /** * @notice how many reward phases can be set for a campaign * @return rewards phases size limit */ function rewardInfoLimit() external view returns (uint256); /** * @notice get reward Manager address holding rewards to distribute * @return address of reward manager */ function rewardManager() external view returns (address); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; // interfaces import "./IRewardManagerL2.sol"; import "./IStaking.sol"; interface IRewardManager is IRewardManagerL2 { /** * @notice used to get the staking contract address * @return staking contract address (or Staking contract type in Solidity) */ function staking() external view returns (IStaking); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; // interfaces import "./IFarmingRange.sol"; interface IRewardManagerL2 { /** * @notice used to resetAllowance with farming contract to take rewards * @param _campaignId campaign id */ function resetAllowance(uint256 _campaignId) external; /** * @notice used to get the farming contract address * @return farming contract address (or FarmingRange contract type in Solidity) */ function farming() external view returns (IFarmingRange); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; // interfaces import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "./IFarmingRange.sol"; interface IStaking is IERC20 { /** * @notice info of each user * @param shares shares owned in the staking * @param lastBlockUpdate last block the user called deposit or withdraw */ struct UserInfo { uint256 shares; uint256 lastBlockUpdate; } /** * @notice emitted at each deposit * @param from address that deposit its funds * @param depositAmount amount deposited * @param shares shares corresponding to the token amount deposited */ event Deposit(address indexed from, uint256 depositAmount, uint256 shares); /** * @notice emitted at each withdraw * @param from address that calls the withdraw function, and of which the shares are withdrawn * @param to address that receives the funds * @param tokenReceived amount of token received by to * @param shares shares corresponding to the token amount withdrawn */ event Withdraw(address indexed from, address indexed to, uint256 tokenReceived, uint256 shares); /** * @notice emitted when calling emergencyWithdraw * @param from address that calls the withdraw function, and of which the shares are withdrawn * @param to address that receives the funds * @param tokenReceived amount of token received by to * @param shares shares corresponding to the token amount withdrawn */ event EmergencyWithdraw(address indexed from, address indexed to, uint256 tokenReceived, uint256 shares); /** * @notice Initialize staking connection with farming * Mint one token of stSDEX and then deposit in the staking farming pool * This contract should be the only participant of the staking farming pool */ function initializeFarming() external; /** * @notice Send SDEX to get shares in the staking pool * @param _depositAmount The amount of SDEX to send */ function deposit(uint256 _depositAmount) external; /** * @notice Send SDEX to get shares in the staking pool with the EIP-2612 signature off chain * @param _depositAmount The amount of SDEX to send * @param _approveMax Whether or not the approval amount in the signature is for liquidity or uint(-1). * @param _deadline Unix timestamp after which the transaction will revert. * @param _v The v component of the permit signature. * @param _r The r component of the permit signature. * @param _s The s component of the permit signature. */ function depositWithPermit( uint256 _depositAmount, bool _approveMax, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) external; /** * @notice Harvest and withdraw SDEX for the amount of shares defined * @param _to The address who will receive SDEX * @param _sharesAmount The amount of shares to use */ function withdraw(address _to, uint256 _sharesAmount) external; /** * @notice Withdraw SDEX for all shares of the sender, will not harvest before. Only use this function in emergency * WARNING: This function may result in a lower amount of SDEX being withdrawn because it bypasses potential * SDEX earnings from farming. * Only use this function if standard withdrawal does not work for unknown reasons. * @param _to The address who will receive SDEX */ function emergencyWithdraw(address _to) external; /** * @notice Harvest the farming pool for the staking, will increase the SDEX */ function harvestFarming() external; /** * @notice Calculate shares qty for an amount of sdex tokens * @param _tokens user qty of sdex to be converted to shares * @return shares_ shares equivalent to the token amount. _shares <= totalShares */ function tokensToShares(uint256 _tokens) external view returns (uint256 shares_); /** * @notice Calculate shares values in sdex tokens * @param _shares amount of shares. _shares <= totalShares * @return tokens_ qty of sdex token equivalent to the _shares. tokens_ <= _currentBalance */ function sharesToTokens(uint256 _shares) external view returns (uint256 tokens_); /** * @notice Campaign id for staking in the farming contract * @return ID of the campaign */ function CAMPAIGN_ID() external view returns (uint256); /** * @notice get farming initialized status * @return boolean inititalized or not */ function farmingInitialized() external view returns (bool); /** * @notice get smardex Token contract address * @return smardex contract (address or type for Solidity) */ function smardexToken() external view returns (IERC20); /** * @notice get farming contract address * @return farming contract (address or type for Solidity) */ function farming() external view returns (IFarmingRange); /** * @notice get user info for staking status * @param _user user address * @return shares amount for user * @return lastBlockUpdate last block the user called deposit or withdraw */ function userInfo(address _user) external view returns (uint256, uint256); /** * @notice get total shares in the staking * @return total shares amount */ function totalShares() external view returns (uint256); }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity 0.8.17; // libraries import "@openzeppelin/contracts/token/ERC20/extensions/draft-IERC20Permit.sol"; import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; // interfaces import "./interfaces/IStaking.sol"; /** * @title Staking * @notice Implementation of an APY staking pool. Users can deposit SDEX for a share in the pool. New shares depend of * current shares supply and SDEX in the pool. Pool will receive SDEX rewards fees by external transfer from admin or * contract but also from farming pool. Each deposit/withdraw will harvest the user funds in the farming pool as well. */ contract Staking is IStaking, ERC20 { using SafeERC20 for IERC20; uint256 public constant CAMPAIGN_ID = 0; uint256 internal constant SHARES_FACTOR = 1e18; uint256 public constant MINIMUM_SHARES = 10 ** 3; IERC20 public immutable smardexToken; IFarmingRange public immutable farming; mapping(address => UserInfo) public userInfo; uint256 public totalShares; bool public farmingInitialized = false; modifier isFarmingInitialized() { require(farmingInitialized == true, "Staking::isFarmingInitialized::Farming campaign not initialized"); _; } modifier checkUserBlock() { require( userInfo[msg.sender].lastBlockUpdate < block.number, "Staking::checkUserBlock::User already called deposit or withdraw this block" ); userInfo[msg.sender].lastBlockUpdate = block.number; _; } constructor(IERC20 _smardexToken, IFarmingRange _farming) ERC20("Staked SmarDex Token", "stSDEX") { require(address(_smardexToken) != address(0), "Staking::constructor::Smardex token is not defined"); require(address(_farming) != address(0), "Staking::constructor::Farming is not defined"); smardexToken = _smardexToken; farming = _farming; } /// @inheritdoc IStaking function initializeFarming() external { require(farmingInitialized == false, "Staking::initializeFarming::Farming campaign already initialized"); _approve(address(this), address(farming), 1 wei); _mint(address(this), 1 wei); farming.deposit(CAMPAIGN_ID, 1 wei); farmingInitialized = true; } /// @inheritdoc IStaking function deposit(uint256 _depositAmount) public isFarmingInitialized checkUserBlock { require(_depositAmount != 0, "Staking::deposit::can't deposit zero token"); harvestFarming(); uint256 _currentBalance = smardexToken.balanceOf(address(this)); uint256 _newShares = _tokensToShares(_depositAmount, _currentBalance); uint256 _userNewShares; if (totalShares == 0) { _userNewShares = _newShares - MINIMUM_SHARES; } else { _userNewShares = _newShares; } require(_userNewShares != 0, "Staking::deposit::no new shares received"); userInfo[msg.sender].shares += _userNewShares; totalShares += _newShares; smardexToken.safeTransferFrom(msg.sender, address(this), _depositAmount); emit Deposit(msg.sender, _depositAmount, _userNewShares); } /// @inheritdoc IStaking function depositWithPermit( uint256 _depositAmount, bool _approveMax, uint256 _deadline, uint8 _v, bytes32 _r, bytes32 _s ) external { SafeERC20.safePermit( IERC20Permit(address(smardexToken)), msg.sender, address(this), _approveMax ? type(uint256).max : _depositAmount, _deadline, _v, _r, _s ); deposit(_depositAmount); } /// @inheritdoc IStaking function withdraw(address _to, uint256 _sharesAmount) external isFarmingInitialized checkUserBlock { require( _sharesAmount != 0 && userInfo[msg.sender].shares >= _sharesAmount, "Staking::withdraw::can't withdraw more than user shares or zero" ); harvestFarming(); uint256 _currentBalance = smardexToken.balanceOf(address(this)); uint256 _tokensToWithdraw = _sharesToTokens(_sharesAmount, _currentBalance); userInfo[msg.sender].shares -= _sharesAmount; totalShares -= _sharesAmount; smardexToken.safeTransfer(_to, _tokensToWithdraw); emit Withdraw(msg.sender, _to, _tokensToWithdraw, _sharesAmount); } /// @inheritdoc IStaking function emergencyWithdraw(address _to) external isFarmingInitialized checkUserBlock { require(userInfo[msg.sender].shares != 0, "Staking::emergencyWithdraw::no shares to withdraw"); uint256 _sharesAmount = userInfo[msg.sender].shares; uint256 _currentBalance = smardexToken.balanceOf(address(this)); uint256 _tokensToWithdraw = _sharesToTokens(_sharesAmount, _currentBalance); totalShares -= _sharesAmount; userInfo[msg.sender].shares = 0; smardexToken.safeTransfer(_to, _tokensToWithdraw); emit EmergencyWithdraw(msg.sender, _to, _tokensToWithdraw, _sharesAmount); } /// @inheritdoc IStaking function harvestFarming() public { farming.withdraw(CAMPAIGN_ID, 0); } /// @inheritdoc IStaking function tokensToShares(uint256 _tokens) external view returns (uint256 shares_) { uint256 _currentBalance = smardexToken.balanceOf(address(this)); _currentBalance += farming.pendingReward(CAMPAIGN_ID, address(this)); shares_ = _tokensToShares(_tokens, _currentBalance); } /// @inheritdoc IStaking function sharesToTokens(uint256 _shares) external view returns (uint256 tokens_) { uint256 _currentBalance = smardexToken.balanceOf(address(this)); _currentBalance += farming.pendingReward(CAMPAIGN_ID, address(this)); tokens_ = _sharesToTokens(_shares, _currentBalance); } /** * @notice Calculate shares qty for an amount of sdex tokens * @param _tokens user qty of sdex to be converted to shares * @param _currentBalance contract balance sdex. _tokens <= _currentBalance * @return shares_ shares equivalent to the token amount. _shares <= totalShares */ function _tokensToShares(uint256 _tokens, uint256 _currentBalance) internal view returns (uint256 shares_) { shares_ = totalShares != 0 ? (_tokens * totalShares) / _currentBalance : _tokens * SHARES_FACTOR; } /** * @notice Calculate shares values in sdex tokens * @param _shares amount of shares. _shares <= totalShares * @param _currentBalance contract balance in sdex * @return tokens_ qty of sdex token equivalent to the _shares. tokens_ <= _currentBalance */ function _sharesToTokens(uint256 _shares, uint256 _currentBalance) internal view returns (uint256 tokens_) { tokens_ = totalShares != 0 ? (_shares * _currentBalance) / totalShares : _shares / SHARES_FACTOR; } }
{ "metadata": { "bytecodeHash": "none", "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_farmingOwner","type":"address"},{"internalType":"contract IERC20","name":"_smardexToken","type":"address"},{"internalType":"uint256","name":"_startFarmingCampaign","type":"uint256"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"farming","outputs":[{"internalType":"contract IFarmingRange","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_campaignId","type":"uint256"}],"name":"resetAllowance","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking","outputs":[{"internalType":"contract IStaking","name":"","type":"address"}],"stateMutability":"view","type":"function"}]
Contract Creation Code
60c060405234801561001057600080fd5b5060405162005f1c38038062005f1c833981016040819052610031916102f4565b4381116100975760405162461bcd60e51b815260206004820152602a60248201527f5265776172644d616e616765723a7374617274206661726d696e6720697320696044820152691b881d1a19481c185cdd60b21b606482015260840160405180910390fd5b306040516100a4906102c0565b6001600160a01b039091168152602001604051809103906000f0801580156100d0573d6000803e3d6000fd5b506001600160a01b031660808190526040518391906100ee906102ce565b6001600160a01b03928316815291166020820152604001604051809103906000f080158015610121573d6000803e3d6000fd5b506001600160a01b0390811660a0819052608051604051631027803f60e21b815260048101929092528483166024830152604482018490529091169063409e00fc90606401600060405180830381600087803b15801561018057600080fd5b505af1158015610194573d6000803e3d6000fd5b5050505060a0516001600160a01b031663c0939f496040518163ffffffff1660e01b8152600401600060405180830381600087803b1580156101d557600080fd5b505af11580156101e9573d6000803e3d6000fd5b5050608051604080518082018252601a81527f7472616e736665724f776e65727368697028616464726573732900000000000060209182015281516001600160a01b03898116602480840191909152845180840390910181526044909201845291810180516001600160e01b031663f2fde38b60e01b179052915192169350610273925090610337565b6000604051808303816000865af19150503d80600081146102b0576040519150601f19603f3d011682016040523d82523d6000602084013e6102b5565b606091505b505050505050610366565b6133e0806200092c83390190565b6122108062003d0c83390190565b6001600160a01b03811681146102f157600080fd5b50565b60008060006060848603121561030957600080fd5b8351610314816102dc565b6020850151909350610325816102dc565b80925050604084015190509250925092565b6000825160005b81811015610358576020818601810151858301520161033e565b506000920191825250919050565b60805160a051610580620003ac6000396000604b015260008181608e0152818160c7015281816101c601528181610258015281816102e5015261031101526105806000f3fe608060405234801561001057600080fd5b50600436106100415760003560e01c80634cf088d9146100465780634e3ad80f14610089578063eee4f11b146100b0575b600080fd5b61006d7f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b03909116815260200160405180910390f35b61006d7f000000000000000000000000000000000000000000000000000000000000000081565b6100c36100be36600461046b565b6100c5565b005b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316634ad7ce806040518163ffffffff1660e01b8152600401602060405180830381865afa158015610123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101479190610484565b81106101ad5760405162461bcd60e51b815260206004820152602a60248201527f5265776172644d616e616765723a63616d706169676e49643a77726f6e672063604482015269185b5c185a59db88125160b21b60648201526084015b60405180910390fd5b604051632ec88e3b60e21b8152600481018290526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063bb2238ec9060240160e060405180830381865afa158015610215573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023991906104b9565b5050604051636eb1769f60e11b81523060048201526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000081166024830152949650938616945063dd62ed3e936044019250610299915050565b602060405180830381865afa1580156102b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102da9190610484565b1561030b5761030b817f0000000000000000000000000000000000000000000000000000000000000000600061033c565b610338817f000000000000000000000000000000000000000000000000000000000000000060001961033c565b5050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b1790529151600092839290871691610398919061051b565b6000604051808303816000865af19150503d80600081146103d5576040519150601f19603f3d011682016040523d82523d6000602084013e6103da565b606091505b5091509150818015610404575080511580610404575080806020019051810190610404919061054a565b6104645760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657248656c7065723a3a73616665417070726f76653a2061707060448201526a1c9bdd994819985a5b195960aa1b60648201526084016101a4565b5050505050565b60006020828403121561047d57600080fd5b5035919050565b60006020828403121561049657600080fd5b5051919050565b80516001600160a01b03811681146104b457600080fd5b919050565b600080600080600080600060e0888a0312156104d457600080fd5b6104dd8861049d565b96506104eb6020890161049d565b604089015160608a015160808b015160a08c015160c0909c01519a9d939c50919a90999198509650945092505050565b6000825160005b8181101561053c5760208186018101518583015201610522565b506000920191825250919050565b60006020828403121561055c57600080fd5b8151801515811461056c57600080fd5b939250505056fea164736f6c6343000811000a60a06040523480156200001157600080fd5b50604051620033e0380380620033e083398101604081905262000034916200012b565b6200003f33620000db565b6001805560346005556001600160a01b038116620000c95760405162461bcd60e51b815260206004820152603860248201527f4661726d696e6752616e67653a3a636f6e7374727563746f723a3a526577617260448201527f64206d616e61676572206973206e6f7420646566696e65640000000000000000606482015260840160405180910390fd5b6001600160a01b03166080526200015d565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000602082840312156200013e57600080fd5b81516001600160a01b03811681146200015657600080fd5b9392505050565b60805161323d620001a3600039600081816101ff0152818161151201528181611b3701528181611ba601528181611c6b0152818161230c015261254e015261323d6000f3fe608060405234801561001057600080fd5b50600436106101d95760003560e01c8063715018a6116101045780639a63bc16116100a2578063e2bbb15811610071578063e2bbb1581461046c578063eebdced51461047f578063f2fde38b14610487578063fa8f5f191461049a57600080fd5b80639a63bc16146103e0578063bb2238ec146103f3578063cdc8c93014610446578063cef7042d1461045957600080fd5b80638d48aff0116100de5780638d48aff0146103775780638da5cb5b1461038a57806393f1a40b1461039b57806398969e82146103cd57600080fd5b8063715018a6146103495780637bafb0291461035157806380637e891461036457600080fd5b80633bbda19b1161017c5780634ad7ce801161014b5780634ad7ce80146102fb5780634ae56bae146103035780635312ea8e146103235780635d14b06f1461033657600080fd5b80633bbda19b146102af578063409e00fc146102c257806342ee0aba146102d5578063441a3e70146102e857600080fd5b80631693074b116101b85780631693074b146102615780632ea807c51461027657806330d78fda1461028957806333824b871461029c57600080fd5b8062d74850146101de5780630f4ef8a6146101fa57806310f7a6af14610239575b600080fd5b6101e760055481565b6040519081526020015b60405180910390f35b6102217f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101f1565b61024c610247366004612b8f565b6104ad565b604080519283526020830191909152016101f1565b61027461026f366004612bc6565b6104e9565b005b610274610284366004612c17565b610572565b610274610297366004612c51565b6108ab565b6102746102aa366004612cbf565b610908565b6102746102bd366004612d24565b61094b565b6102746102d0366004612d9e565b610a1d565b6102746102e3366004612e85565b610c88565b6102746102f6366004612b8f565b610d85565b6003546101e7565b6101e7610311366004612cbf565b60009081526002602052604090205490565b610274610331366004612cbf565b610da4565b610274610344366004612f17565b610e6c565b610274610eb3565b6101e761035f366004612c17565b610ec7565b610274610372366004612cbf565b610f10565b6101e7610385366004612cbf565b611129565b6000546001600160a01b0316610221565b61024c6103a9366004612f59565b60046020908152600092835260408084209091529082529020805460019091015482565b6101e76103db366004612f59565b61113b565b6101e76103ee366004612cbf565b611170565b610406610401366004612cbf565b61117c565b604080516001600160a01b039889168152979096166020880152948601939093526060850191909152608084015260a083015260c082015260e0016101f1565b610274610454366004612f89565b6111d8565b610274610467366004612cbf565b611600565b61027461047a366004612b8f565b61161a565b61027461177c565b610274610495366004612fbb565b6117ad565b6102746104a8366004612fd8565b611823565b600260205281600052604060002081815481106104c957600080fd5b600091825260209091206002909102018054600190910154909250905082565b3330146105575760405162461bcd60e51b815260206004820152603160248201527f4661726d696e6752616e67653a3a617474656d70745472616e736665723a3a53604482015270656e646572206e6f74206661726d696e6760781b60648201526084015b60405180910390fd5b61056c6001600160a01b0385168484846119fa565b50505050565b61057a611a65565b610582611abf565b600083815260026020526040812060038054919291869081106105a7576105a761309c565b9060005260206000209060070201905060055482805490501061063c5760405162461bcd60e51b815260206004820152604160248201527f4661726d696e6752616e67653a3a616464526577617264496e666f3a3a72657760448201527f61726420696e666f206c656e677468206578636565647320746865206c696d696064820152601d60fa1b608482015260a40161054e565b8154158061067c5750815443908390610657906001906130c8565b815481106106675761066761309c565b90600052602060002090600202016000015410155b6106e15760405162461bcd60e51b815260206004820152603060248201527f4661726d696e6752616e67653a3a616464526577617264496e666f3a3a72657760448201526f185c99081c195c9a5bd908195b99195960821b606482015260840161054e565b8154158061072057508154849083906106fc906001906130c8565b8154811061070c5761070c61309c565b906000526020600020906002020160000154105b6107825760405162461bcd60e51b815260206004820152602d60248201527f4661726d696e6752616e67653a3a616464526577617264496e666f3a3a62616460448201526c206e657720656e64626c6f636b60981b606482015260840161054e565b8154600090156107c3578254839061079c906001906130c8565b815481106107ac576107ac61309c565b9060005260206000209060020201600001546107c9565b81600201545b905060006107d782876130c8565b905060006107e582876130db565b90508084600601546107f791906130f2565b6006850155604080518082019091528781526020808201888152875460018181018a5560008a81529390932093516002909102909301928355519181019190915584015461084f906001600160a01b0316828a611b18565b845461085d906001906130c8565b60408051898152602081018990528a917fad90731bd0d97445f5af66088f3adebf343c520c20e033cc42f93b124258cdc2910160405180910390a350505050506108a660018055565b505050565b6108f5600388815481106108c1576108c161309c565b60009182526020909120600790910201546001600160a01b03163330886108e857896108ec565b6000195b88888888611c91565b6108ff878761161a565b50505050505050565b610910611a65565b60058190556040518181527fb64f58843e750a8bea7135ef396cf0a7790bfc9a8f43f11ac0e0aacc1b5787ba9060200160405180910390a150565b610953611a65565b8281146109c85760405162461bcd60e51b815260206004820152603860248201527f4661726d696e6752616e67653a3a6164645265776172644d756c7469706c653a60448201527f3a77726f6e6720706172616d6574657273206c656e6774680000000000000000606482015260840161054e565b60005b808414610a1557610a0d868686848181106109e8576109e861309c565b90506020020135858585818110610a0157610a0161309c565b90506020020135610572565b6001016109cb565b505050505050565b610a25611a65565b438111610aa55760405162461bcd60e51b815260206004820152604260248201527f4661726d696e6752616e67653a3a61646443616d706169676e496e666f3a3a5360448201527f7461727420626c6f636b2073686f756c6420626520696e207468652066757475606482015261726560f01b608482015260a40161054e565b6040805160e0810182526001600160a01b038086168252848116602083019081529282018481526060830185815260006080850181815260a0860182815260c08701838152600380546001818101835595829052985160079099027fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85b810180549a8a166001600160a01b03199b8c1617905599517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85c8b0180549190991699169890981790965593517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85d88015591517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85e87015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f85f86015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f86085015590517fc2575a0e9e593c00f959f8c92f12db2869c3395a3b0502d05e2516446f71f8619093019290925554610c3891906130c8565b604080516001600160a01b038087168252851660208201529081018390527f9b2f18f9a188a5aec4a95ee3164fe234dfbb6117628b2ad1a581939e61c69f4e9060600160405180910390a2505050565b610c90611a65565b81518351148015610ca2575080518351145b610d145760405162461bcd60e51b815260206004820152603b60248201527f4661726d696e6752616e67653a3a7570646174655265776172644d756c74697060448201527f6c653a3a77726f6e6720706172616d6574657273206c656e6774680000000000606482015260840161054e565b60005b83518114610d7e57610d7685858381518110610d3557610d3561309c565b6020026020010151858481518110610d4f57610d4f61309c565b6020026020010151858581518110610d6957610d6961309c565b60200260200101516111d8565b600101610d17565b5050505050565b610d8d611abf565b610d978282611e67565b610da060018055565b5050565b610dac611abf565b600060038281548110610dc157610dc161309c565b60009182526020808320858452600482526040808520338652909252922080546007929092029092016005810154909350610dfd9082906130c8565b6005840155600080835560018301558254610e22906001600160a01b03163383612018565b604080518281526020810186905233917fbb757047c2b5f3974fe26b7c10f732e7bce710b0952a71082702781e62ae0595910160405180910390a2505050610e6960018055565b50565b610e74611abf565b60005b808214610ea957610ea1838383818110610e9357610e9361309c565b905060200201356000611e67565b600101610e77565b50610da060018055565b610ebb611a65565b610ec56000612048565b565b60008184101580610ed757508284115b15610ee457506000610f09565b818311610efc57610ef584846130c8565b9050610f09565b610f0684836130c8565b90505b9392505050565b610f18611a65565b60008181526002602052604081206003805491929184908110610f3d57610f3d61309c565b6000918252602082208454600790920201925090819003610fbf5760405162461bcd60e51b815260206004820152603660248201527f4661726d696e6752616e67653a3a75706461746543616d706169676e7352657760448201527530b932399d1d3737903932bbb0b93224b73337a632b760511b606482015260840161054e565b600083610fcd6001846130c8565b81548110610fdd57610fdd61309c565b6000918252602090912060029091020180549091504381116110675760405162461bcd60e51b815260206004820152603760248201527f4661726d696e6752616e67653a3a72656d6f76654c617374526577617264496e60448201527f666f3a3a72657761726420706572696f6420656e646564000000000000000000606482015260840161054e565b61107086612098565b6001820154156110b95760008061109661108b6001876130c8565b8460008a8a8961243b565b9150915081156110b6578086600601546110b091906130c8565b60068701555b50505b848054806110c9576110c9613105565b60008281526020812060026000199093019283020181815560019081019190915591556110f690846130c8565b60405187907f997b6670781194c0d30c477be41ce4ba9b7f3f12417aa00965b9d9f978251e2390600090a3505050505050565b60006111358243612586565b92915050565b60008281526004602090815260408083206001600160a01b038516845290915281208054600190910154610f0991859161267c565b60006111358243612878565b6003818154811061118c57600080fd5b600091825260209091206007909102018054600182015460028301546003840154600485015460058601546006909601546001600160a01b039586169750949093169491939092919087565b6111e0611a65565b6111e8611abf565b6000848152600260205260408120600380549192918790811061120d5761120d61309c565b9060005260206000209060070201905060008286815481106112315761123161309c565b60009182526020909120600290910201805490915061124f88612098565b438110156112bb5760405162461bcd60e51b815260206004820152603360248201527f4661726d696e6752616e67653a3a757064617465526577617264496e666f3a3a6044820152721c995dd85c99081c195c9a5bd908195b991959606a1b606482015260840161054e565b86156113565785846112ce60018a6130c8565b815481106112de576112de61309c565b906000526020600020906002020160000154106113565760405162461bcd60e51b815260206004820152603060248201527f4661726d696e6752616e67653a3a757064617465526577617264496e666f3a3a60448201526f626164206e657720656e64626c6f636b60801b606482015260840161054e565b6113618760016130f2565b8454111561141657836113758860016130f2565b815481106113855761138561309c565b90600052602060002090600202016000015486106114165760405162461bcd60e51b815260206004820152604260248201527f4661726d696e6752616e67653a3a757064617465526577617264496e666f3a3a60448201527f72657761726420706572696f6420656e6420697320696e206e6578742072616e606482015261676560f01b608482015260a40161054e565b60008061142789898989898961243b565b915091508115801561143857508015155b15611456576001850154611456906001600160a01b0316828c611b18565b828814158015611473575085548990611471906001906130c8565b115b1561157b576000866114868b60016130f2565b815481106114965761149661309c565b6000918252602082206002909102018054909250906114b586836130c8565b905060006114c38c846130c8565b600185015490915060006114d782856130db565b9050826114e485846130db565b6114ee919061311b565b915060006114fc83856130db565b60018801849055905081811015611573576115507f000000000000000000000000000000000000000000000000000000000000000061153b83856130c8565b60018f01546001600160a01b03169190612018565b61155a81836130c8565b8c600601600082825461156d91906130c8565b90915550505b505050505050505b816115955780856006015461159091906130f2565b6115a5565b8085600601546115a591906130c8565b60068601558784556001840187905560408051898152602081018990528a918c917fcd251e3ce758f4da844a7b790619743994a9ce956a4abb78aec611623ae8af5f910160405180910390a350505050505061056c60018055565b611608611abf565b61161181612098565b610e6960018055565b611622611abf565b6000600383815481106116375761163761309c565b6000918252602080832086845260048252604080852033865290925292206007909102909101915061166884612098565b8054156116cb576000816001015468056bc75e2d631000008460040154846000015461169491906130db565b61169e919061311b565b6116a891906130c8565b905080156116c95760018301546116c9906001600160a01b03163383612018565b505b821561170c5780546116de9084906130f2565b815560058201546116f09084906130f2565b6005830155815461170c906001600160a01b03163330866119fa565b6004820154815468056bc75e2d6310000091611727916130db565b611731919061311b565b6001820155604080518481526020810186905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a25050610da060018055565b611784611abf565b60035460005b8181146117a25761179a81612098565b60010161178a565b5050610ec560018055565b6117b5611a65565b6001600160a01b03811661181a5760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161054e565b610e6981612048565b61182b611a65565b868514801561183957508483145b801561184457508481145b6118b65760405162461bcd60e51b815260206004820152603d60248201527f4661726d696e6752616e67653a3a75706461746543616d706169676e7352657760448201527f617264733a3a77726f6e6720726577617264496e666f206c656e677468000000606482015260840161054e565b60005b8088146119ef576119e78989838181106118d5576118d561309c565b905060200201358888848181106118ee576118ee61309c565b9050602002810190611900919061313d565b808060200260200160405190810160405280939291908181526020018383602002808284376000920191909152508a92508991508690508181106119465761194661309c565b9050602002810190611958919061313d565b8080602002602001604051908101604052809392919081815260200183836020028082843760009201919091525089925088915087905081811061199e5761199e61309c565b90506020028101906119b0919061313d565b80806020026020016040519081016040528093929190818152602001838360200280828437600092019190915250610c8892505050565b6001016118b9565b505050505050505050565b6040516001600160a01b038085166024830152831660448201526064810182905261056c9085906323b872dd60e01b906084015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152612995565b6000546001600160a01b03163314610ec55760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161054e565b600260015403611b115760405162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015260640161054e565b6002600155565b604051631693074b60e01b81526001600160a01b0380851660048301527f000000000000000000000000000000000000000000000000000000000000000016602482015230604482018190526064820184905290631693074b90608401600060405180830381600087803b158015611b8f57600080fd5b505af1925050508015611ba0575060015b6108a6577f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031681604051602401611be191815260200190565b60408051601f198184030181529181526020820180516001600160e01b031663eee4f11b60e01b17905251611c1691906131ab565b6000604051808303816000865af19150503d8060008114611c53576040519150601f19603f3d011682016040523d82523d6000602084013e611c58565b606091505b506108a69150506001600160a01b0384167f000000000000000000000000000000000000000000000000000000000000000030856119fa565b604051623f675f60e91b81526001600160a01b038881166004830152600091908a1690637ecebe0090602401602060405180830381865afa158015611cda573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611cfe91906131c7565b60405163d505accf60e01b81526001600160a01b038a811660048301528981166024830152604482018990526064820188905260ff8716608483015260a4820186905260c48201859052919250908a169063d505accf9060e401600060405180830381600087803b158015611d7257600080fd5b505af1158015611d86573d6000803e3d6000fd5b5050604051623f675f60e91b81526001600160a01b038b81166004830152600093508c169150637ecebe0090602401602060405180830381865afa158015611dd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611df691906131c7565b9050611e038260016130f2565b8114611e5b5760405162461bcd60e51b815260206004820152602160248201527f5361666545524332303a207065726d697420646964206e6f74207375636365656044820152601960fa1b606482015260840161054e565b50505050505050505050565b600060038381548110611e7c57611e7c61309c565b600091825260208083208684526004825260408085203386529092529220805460079092029092019250831115611f095760405162461bcd60e51b815260206004820152602b60248201527f4661726d696e6752616e67653a3a77697468647261773a3a626164207769746860448201526a191c985dc8185b5bdd5b9d60aa1b606482015260840161054e565b611f1284612098565b6000816001015468056bc75e2d6310000084600401548460000154611f3791906130db565b611f41919061311b565b611f4b91906130c8565b90508015611f6c576001830154611f6c906001600160a01b03163383612018565b8315611fac578154611f7f9085906130c8565b82556005830154611f919085906130c8565b60058401558254611fac906001600160a01b03163386612018565b6004830154825468056bc75e2d6310000091611fc7916130db565b611fd1919061311b565b6001830155604080518581526020810187905233917ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b568910160405180910390a25050505050565b6040516001600160a01b0383166024820152604481018290526108a690849063a9059cbb60e01b90606401611a2e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60035481106121065760405162461bcd60e51b815260206004820152603460248201527f4661726d696e6752616e67653a3a5f75706461746543616d706169676e3a3a43604482015273185b5c185a59db881a59081b9bdd081d985b1a5960621b606482015260840161054e565b60006003828154811061211b5761211b61309c565b60009182526020808320858452600282526040808520805482518186028101860190935280835260079095029092019550929091849084015b8282101561219a57838290600052602060002090600202016040518060400160405290816000820154815260200160018201548152505081526020019060010190612154565b505050509050816003015443116121b057505050565b816005015460000361233d576000805b825181146122f15783600301548382815181106121df576121df61309c565b602002602001015160000151106122e95760008160000361220457846003015461222d565b836122106001846130c8565b815181106122205761222061309c565b6020026020010151600001515b90506000438584815181106122445761224461309c565b60200260200101516000015111905060008660030154831161226a57866003015461226c565b825b82612294578685815181106122835761228361309c565b602002602001015160000151612296565b435b6122a091906130c8565b9050808685815181106122b5576122b561309c565b6020026020010151602001516122cb91906130db565b6122d590866130f2565b945081156122e5575050506122f1565b5050505b6001016121c0565b508015612331576001830154612331906001600160a01b03167f000000000000000000000000000000000000000000000000000000000000000083612018565b50504360039091015550565b60005b8151811461056c5760006123768460030154438585815181106123655761236561309c565b602002602001015160000151610ec7565b90508015612432578282815181106123905761239061309c565b6020026020010151600001514311156123cb578282815181106123b5576123b561309c565b60209081029190910101515160038501556123d2565b4360038501555b83600501548383815181106123e9576123e961309c565b6020026020010151602001518261240091906130db565b6124139068056bc75e2d631000006130db565b61241d919061311b565b846004015461242c91906130f2565b60048501555b50600101612340565b600080808815612478578561245160018b6130c8565b815481106124615761246161309c565b90600052602060002090600202016000015461247e565b84600201545b9050600081431161248f5781612491565b435b905060008286600001546124a591906130c8565b905060006124b3838c6130c8565b60018801549091506000816124c887876130c8565b6124d291906130db565b905060006124e085846130db565b905060006124ee858f6130db565b90506124fa83826130f2565b821199508961251d578161250e84836130f2565b61251891906130c8565b612532565b8261252882846130c8565b61253291906130c8565b985089156125735760018c0154612573906001600160a01b03167f00000000000000000000000000000000000000000000000000000000000000008b612018565b5050505050505050965096945050505050565b600082815260026020908152604080832080548251818502810185019093528083528493849084015b828210156125f5578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906125af565b505082519293505050600081900361261257600092505050611135565b60005b8181146126705782818151811061262e5761262e61309c565b6020026020010151600001518511612668578281815181106126525761265261309c565b6020026020010151602001519350505050611135565b600101612615565b50600095945050505050565b600080600385815481106126925761269261309c565b600091825260208083206040805160e081018252600790940290910180546001600160a01b03908116855260018201541684840152600280820154858401526003820154606086015260048201546080860152600582015460a086015260069091015460c08501528985528252808420805482518185028101850190935280835293955090929091849084015b828210156127655783829060005260206000209060020201604051806040016040529081600082015481526020016001820154815250508152602001906001019061271f565b50505050905060008260800151905082606001514311801561278a575060a083015115155b1561284457606083015160005b835181146128415760006127b883438785815181106123655761236561309c565b90508015612838578482815181106127d2576127d261309c565b60200260200101516000015192508560a001518583815181106127f7576127f761309c565b6020026020010151602001518261280e91906130db565b6128219068056bc75e2d631000006130db565b61282b919061311b565b61283590856130f2565b93505b50600101612797565b50505b8468056bc75e2d6310000061285983896130db565b612863919061311b565b61286d91906130c8565b979650505050505050565b600082815260026020908152604080832080548251818502810185019093528083528493849084015b828210156128e7578382906000526020600020906002020160405180604001604052908160008201548152602001600182015481525050815260200190600101906128a1565b505082519293505050600081900361290457600092505050611135565b60005b818114612962578281815181106129205761292061309c565b602002602001015160000151851161295a578281815181106129445761294461309c565b6020026020010151600001519350505050611135565b600101612907565b508161296f6001836130c8565b8151811061297f5761297f61309c565b6020026020010151600001519250505092915050565b60006129ea826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316612a6a9092919063ffffffff16565b9050805160001480612a0b575080806020019051810190612a0b91906131e0565b6108a65760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b606482015260840161054e565b6060610f06848460008585600080866001600160a01b03168587604051612a9191906131ab565b60006040518083038185875af1925050503d8060008114612ace576040519150601f19603f3d011682016040523d82523d6000602084013e612ad3565b606091505b5091509150612ae487838387612af1565b925050505b949350505050565b60608315612b60578251600003612b59576001600160a01b0385163b612b595760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604482015260640161054e565b5081612ae9565b612ae98383815115612b755781518083602001fd5b8060405162461bcd60e51b815260040161054e91906131fd565b60008060408385031215612ba257600080fd5b50508035926020909101359150565b6001600160a01b0381168114610e6957600080fd5b60008060008060808587031215612bdc57600080fd5b8435612be781612bb1565b93506020850135612bf781612bb1565b92506040850135612c0781612bb1565b9396929550929360600135925050565b600080600060608486031215612c2c57600080fd5b505081359360208301359350604090920135919050565b8015158114610e6957600080fd5b600080600080600080600060e0888a031215612c6c57600080fd5b87359650602088013595506040880135612c8581612c43565b945060608801359350608088013560ff81168114612ca257600080fd5b9699959850939692959460a0840135945060c09093013592915050565b600060208284031215612cd157600080fd5b5035919050565b60008083601f840112612cea57600080fd5b50813567ffffffffffffffff811115612d0257600080fd5b6020830191508360208260051b8501011115612d1d57600080fd5b9250929050565b600080600080600060608688031215612d3c57600080fd5b85359450602086013567ffffffffffffffff80821115612d5b57600080fd5b612d6789838a01612cd8565b90965094506040880135915080821115612d8057600080fd5b50612d8d88828901612cd8565b969995985093965092949392505050565b600080600060608486031215612db357600080fd5b8335612dbe81612bb1565b92506020840135612dce81612bb1565b929592945050506040919091013590565b634e487b7160e01b600052604160045260246000fd5b600082601f830112612e0657600080fd5b8135602067ffffffffffffffff80831115612e2357612e23612ddf565b8260051b604051601f19603f83011681018181108482111715612e4857612e48612ddf565b604052938452858101830193838101925087851115612e6657600080fd5b83870191505b8482101561286d57813583529183019190830190612e6c565b60008060008060808587031215612e9b57600080fd5b84359350602085013567ffffffffffffffff80821115612eba57600080fd5b612ec688838901612df5565b94506040870135915080821115612edc57600080fd5b612ee888838901612df5565b93506060870135915080821115612efe57600080fd5b50612f0b87828801612df5565b91505092959194509250565b60008060208385031215612f2a57600080fd5b823567ffffffffffffffff811115612f4157600080fd5b612f4d85828601612cd8565b90969095509350505050565b60008060408385031215612f6c57600080fd5b823591506020830135612f7e81612bb1565b809150509250929050565b60008060008060808587031215612f9f57600080fd5b5050823594602084013594506040840135936060013592509050565b600060208284031215612fcd57600080fd5b8135610f0981612bb1565b6000806000806000806000806080898b031215612ff457600080fd5b883567ffffffffffffffff8082111561300c57600080fd5b6130188c838d01612cd8565b909a50985060208b013591508082111561303157600080fd5b61303d8c838d01612cd8565b909850965060408b013591508082111561305657600080fd5b6130628c838d01612cd8565b909650945060608b013591508082111561307b57600080fd5b506130888b828c01612cd8565b999c989b5096995094979396929594505050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b81810381811115611135576111356130b2565b8082028115828204841417611135576111356130b2565b80820180821115611135576111356130b2565b634e487b7160e01b600052603160045260246000fd5b60008261313857634e487b7160e01b600052601260045260246000fd5b500490565b6000808335601e1984360301811261315457600080fd5b83018035915067ffffffffffffffff82111561316f57600080fd5b6020019150600581901b3603821315612d1d57600080fd5b60005b838110156131a257818101518382015260200161318a565b50506000910152565b600082516131bd818460208701613187565b9190910192915050565b6000602082840312156131d957600080fd5b5051919050565b6000602082840312156131f257600080fd5b8151610f0981612c43565b602081526000825180602084015261321c816040850160208701613187565b601f01601f1916919091016040019291505056fea164736f6c6343000811000a60c06040526007805460ff191690553480156200001b57600080fd5b5060405162002210380380620022108339810160408190526200003e91620001cb565b6040518060400160405280601481526020017f5374616b656420536d617244657820546f6b656e000000000000000000000000815250604051806040016040528060068152602001650e6e8a6888ab60d31b8152508160039081620000a49190620002af565b506004620000b38282620002af565b5050506001600160a01b0382166200012d5760405162461bcd60e51b815260206004820152603260248201527f5374616b696e673a3a636f6e7374727563746f723a3a536d617264657820746f6044820152711ad95b881a5cc81b9bdd081919599a5b995960721b60648201526084015b60405180910390fd5b6001600160a01b0381166200019a5760405162461bcd60e51b815260206004820152602c60248201527f5374616b696e673a3a636f6e7374727563746f723a3a4661726d696e6720697360448201526b081b9bdd081919599a5b995960a21b606482015260840162000124565b6001600160a01b039182166080521660a0526200037b565b6001600160a01b0381168114620001c857600080fd5b50565b60008060408385031215620001df57600080fd5b8251620001ec81620001b2565b6020840151909250620001ff81620001b2565b809150509250929050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200023557607f821691505b6020821081036200025657634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620002aa57600081815260208120601f850160051c81016020861015620002855750805b601f850160051c820191505b81811015620002a65782815560010162000291565b5050505b505050565b81516001600160401b03811115620002cb57620002cb6200020a565b620002e381620002dc845462000220565b846200025c565b602080601f8311600181146200031b5760008415620003025750858301515b600019600386901b1c1916600185901b178555620002a6565b600085815260208120601f198616915b828110156200034c578886015182559484019460019091019084016200032b565b50858210156200036b5787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b60805160a051611e0d62000403600039600081816102800152818161054e01528181610c4401528181610c9201528181610ddc01526110db0152600081816102bf015281816104c4015281816106050152818161075e0152818161080501528181610a0901528181610b5a01528181610d5201528181610f8301526110540152611e0d6000f3fe608060405234801561001057600080fd5b506004361061018e5760003560e01c80636ff1c9bc116100de578063b6b55f2511610097578063eed06a6311610071578063eed06a6314610397578063f3044ac7146103a4578063f3fef3a3146103b7578063fe2ed8b0146103ca57600080fd5b8063b6b55f2514610369578063c0939f491461037c578063dd62ed3e1461038457600080fd5b80636ff1c9bc146102f657806370a082311461030957806395d89b4114610332578063a1a47d711461033a578063a457c2d714610343578063a9059cbb1461035657600080fd5b806327def4fd1161014b5780633a98ef39116101255780633a98ef39146102725780634e3ad80f1461027b578063670b3a0b146102ba5780636e28ee66146102e157600080fd5b806327def4fd1461023d578063313ce56714610250578063395093511461025f57600080fd5b806306fdde0314610193578063095ea7b3146101b157806318160ddd146101d45780631959a002146101e657806323b872dd1461022257806326c07fd714610235575b600080fd5b61019b6103d2565b6040516101a89190611aa2565b60405180910390f35b6101c46101bf366004611af1565b610464565b60405190151581526020016101a8565b6002545b6040519081526020016101a8565b61020d6101f4366004611b1b565b6005602052600090815260409020805460019091015482565b604080519283526020830191909152016101a8565b6101c4610230366004611b36565b61047e565b6101d8600081565b6101d861024b366004611b72565b6104a2565b604051601281526020016101a8565b6101c461026d366004611af1565b6105de565b6101d860065481565b6102a27f000000000000000000000000000000000000000000000000000000000000000081565b6040516001600160a01b0390911681526020016101a8565b6102a27f000000000000000000000000000000000000000000000000000000000000000081565b6102f46102ef366004611b9c565b610600565b005b6102f4610304366004611b1b565b61064f565b6101d8610317366004611b1b565b6001600160a01b031660009081526020819052604090205490565b61019b610881565b6101d86103e881565b6101c4610351366004611af1565b610890565b6101c4610364366004611af1565b61090b565b6102f4610377366004611b72565b610919565b6102f4610bc3565b6101d8610392366004611bfe565b610d05565b6007546101c49060ff1681565b6101d86103b2366004611b72565b610d30565b6102f46103c5366004611af1565b610e65565b6102f46110be565b6060600380546103e190611c31565b80601f016020809104026020016040519081016040528092919081815260200182805461040d90611c31565b801561045a5780601f1061042f5761010080835404028352916020019161045a565b820191906000526020600020905b81548152906001019060200180831161043d57829003601f168201915b5050505050905090565b600033610472818585611141565b60019150505b92915050565b60003361048c858285611265565b6104978585856112d9565b506001949350505050565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa15801561050b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061052f9190611c6b565b604051634c4b4f4160e11b8152600060048201523060248201529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906398969e8290604401602060405180830381865afa15801561059d573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105c19190611c6b565b6105cb9082611c9a565b90506105d7838261147d565b9392505050565b6000336104728185856105f18383610d05565b6105fb9190611c9a565b611141565b61063e7f00000000000000000000000000000000000000000000000000000000000000003330886106315789610635565b6000195b888888886114b7565b61064786610919565b505050505050565b60075460ff16151560011461067f5760405162461bcd60e51b815260040161067690611cad565b60405180910390fd5b3360009081526005602052604090206001015443116106b05760405162461bcd60e51b815260040161067690611d0a565b33600090815260056020526040812043600182015554900361072e5760405162461bcd60e51b815260206004820152603160248201527f5374616b696e673a3a656d657267656e637957697468647261773a3a6e6f2073604482015270686172657320746f20776974686472617760781b6064820152608401610676565b336000908152600560205260408082205490516370a0823160e01b81523060048201529091906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa1580156107a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107c99190611c6b565b905060006107d7838361147d565b905082600660008282546107eb9190611d7b565b9091555050336000908152600560205260408120556108347f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316858361168d565b60408051828152602081018590526001600160a01b0386169133917f1401b6ff3b281e84fd77353369caed48ba7e787dd3821db05cc006437360820191015b60405180910390a350505050565b6060600480546103e190611c31565b6000338161089e8286610d05565b9050838110156108fe5760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b6064820152608401610676565b6104978286868403611141565b6000336104728185856112d9565b60075460ff1615156001146109405760405162461bcd60e51b815260040161067690611cad565b3360009081526005602052604090206001015443116109715760405162461bcd60e51b815260040161067690611d0a565b336000908152600560205260408120436001909101558190036109e95760405162461bcd60e51b815260206004820152602a60248201527f5374616b696e673a3a6465706f7369743a3a63616e2774206465706f736974206044820152693d32b937903a37b5b2b760b11b6064820152608401610676565b6109f16110be565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610a58573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a7c9190611c6b565b90506000610a8a83836116f5565b90506000600654600003610aab57610aa46103e883611d7b565b9050610aae565b50805b80600003610b0f5760405162461bcd60e51b815260206004820152602860248201527f5374616b696e673a3a6465706f7369743a3a6e6f206e657720736861726573206044820152671c9958d95a5d995960c21b6064820152608401610676565b3360009081526005602052604081208054839290610b2e908490611c9a565b925050819055508160066000828254610b479190611c9a565b90915550610b8290506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016333087611722565b604080518581526020810183905233917f90890809c654f11d6e72a28fa60149770a0d11ec6c92319d6ceb2bb0a4ea1a15910160405180910390a250505050565b60075460ff1615610c3e576040805162461bcd60e51b81526020600482015260248101919091527f5374616b696e673a3a696e697469616c697a654661726d696e673a3a4661726d60448201527f696e672063616d706169676e20616c726561647920696e697469616c697a65646064820152608401610676565b610c6a307f00000000000000000000000000000000000000000000000000000000000000006001611141565b610c7530600161175a565b604051631c57762b60e31b815260006004820152600160248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063e2bbb15890604401600060405180830381600087803b158015610cde57600080fd5b505af1158015610cf2573d6000803e3d6000fd5b50506007805460ff191660011790555050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6040516370a0823160e01b815230600482015260009081906001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190602401602060405180830381865afa158015610d99573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dbd9190611c6b565b604051634c4b4f4160e11b8152600060048201523060248201529091507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906398969e8290604401602060405180830381865afa158015610e2b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e4f9190611c6b565b610e599082611c9a565b90506105d783826116f5565b60075460ff161515600114610e8c5760405162461bcd60e51b815260040161067690611cad565b336000908152600560205260409020600101544311610ebd5760405162461bcd60e51b815260040161067690611d0a565b336000908152600560205260409020436001909101558015801590610ef15750336000908152600560205260409020548111155b610f635760405162461bcd60e51b815260206004820152603f60248201527f5374616b696e673a3a77697468647261773a3a63616e2774207769746864726160448201527f77206d6f7265207468616e207573657220736861726573206f72207a65726f006064820152608401610676565b610f6b6110be565b6040516370a0823160e01b81523060048201526000907f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316906370a0823190602401602060405180830381865afa158015610fd2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ff69190611c6b565b90506000611004838361147d565b33600090815260056020526040812080549293508592909190611028908490611d7b565b9250508190555082600660008282546110419190611d7b565b9091555061107b90506001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016858361168d565b60408051828152602081018590526001600160a01b0386169133917ff341246adaac6f497bc2a656f546ab9e182111d630394f0c57c710a59a2cb5679101610873565b604051630441a3e760e41b815260006004820181905260248201527f00000000000000000000000000000000000000000000000000000000000000006001600160a01b03169063441a3e7090604401600060405180830381600087803b15801561112757600080fd5b505af115801561113b573d6000803e3d6000fd5b50505050565b6001600160a01b0383166111a35760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b6064820152608401610676565b6001600160a01b0382166112045760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b6064820152608401610676565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006112718484610d05565b9050600019811461113b57818110156112cc5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e63650000006044820152606401610676565b61113b8484848403611141565b6001600160a01b03831661133d5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b6064820152608401610676565b6001600160a01b03821661139f5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b6064820152608401610676565b6001600160a01b038316600090815260208190526040902054818110156114175760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b6064820152608401610676565b6001600160a01b03848116600081815260208181526040808320878703905593871680835291849020805487019055925185815290927fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a361113b565b60006006546000036114a05761149b670de0b6b3a764000084611d8e565b6105d7565b6006546114ad8385611db0565b6105d79190611d8e565b604051623f675f60e91b81526001600160a01b038881166004830152600091908a1690637ecebe0090602401602060405180830381865afa158015611500573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906115249190611c6b565b60405163d505accf60e01b81526001600160a01b038a811660048301528981166024830152604482018990526064820188905260ff8716608483015260a4820186905260c48201859052919250908a169063d505accf9060e401600060405180830381600087803b15801561159857600080fd5b505af11580156115ac573d6000803e3d6000fd5b5050604051623f675f60e91b81526001600160a01b038b81166004830152600093508c169150637ecebe0090602401602060405180830381865afa1580156115f8573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061161c9190611c6b565b9050611629826001611c9a565b81146116815760405162461bcd60e51b815260206004820152602160248201527f5361666545524332303a207065726d697420646964206e6f74207375636365656044820152601960fa1b6064820152608401610676565b50505050505050505050565b6040516001600160a01b0383166024820152604481018290526116f090849063a9059cbb60e01b906064015b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152611819565b505050565b60006006546000036117135761149b670de0b6b3a764000084611db0565b81600654846114ad9190611db0565b6040516001600160a01b038085166024830152831660448201526064810182905261113b9085906323b872dd60e01b906084016116b9565b6001600160a01b0382166117b05760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f2061646472657373006044820152606401610676565b80600260008282546117c29190611c9a565b90915550506001600160a01b038216600081815260208181526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b600061186e826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118ee9092919063ffffffff16565b905080516000148061188f57508080602001905181019061188f9190611dc7565b6116f05760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b6064820152608401610676565b60606118fd8484600085611905565b949350505050565b6060824710156119665760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b6064820152608401610676565b600080866001600160a01b031685876040516119829190611de4565b60006040518083038185875af1925050503d80600081146119bf576040519150601f19603f3d011682016040523d82523d6000602084013e6119c4565b606091505b50915091506119d5878383876119e0565b979650505050505050565b60608315611a4f578251600003611a48576001600160a01b0385163b611a485760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e74726163740000006044820152606401610676565b50816118fd565b6118fd8383815115611a645781518083602001fd5b8060405162461bcd60e51b81526004016106769190611aa2565b60005b83811015611a99578181015183820152602001611a81565b50506000910152565b6020815260008251806020840152611ac1816040850160208701611a7e565b601f01601f19169190910160400192915050565b80356001600160a01b0381168114611aec57600080fd5b919050565b60008060408385031215611b0457600080fd5b611b0d83611ad5565b946020939093013593505050565b600060208284031215611b2d57600080fd5b6105d782611ad5565b600080600060608486031215611b4b57600080fd5b611b5484611ad5565b9250611b6260208501611ad5565b9150604084013590509250925092565b600060208284031215611b8457600080fd5b5035919050565b8015158114611b9957600080fd5b50565b60008060008060008060c08789031215611bb557600080fd5b863595506020870135611bc781611b8b565b945060408701359350606087013560ff81168114611be457600080fd5b9598949750929560808101359460a0909101359350915050565b60008060408385031215611c1157600080fd5b611c1a83611ad5565b9150611c2860208401611ad5565b90509250929050565b600181811c90821680611c4557607f821691505b602082108103611c6557634e487b7160e01b600052602260045260246000fd5b50919050565b600060208284031215611c7d57600080fd5b5051919050565b634e487b7160e01b600052601160045260246000fd5b8082018082111561047857610478611c84565b6020808252603f908201527f5374616b696e673a3a69734661726d696e67496e697469616c697a65643a3a4660408201527f61726d696e672063616d706169676e206e6f7420696e697469616c697a656400606082015260800190565b6020808252604b908201527f5374616b696e673a3a636865636b55736572426c6f636b3a3a5573657220616c60408201527f72656164792063616c6c6564206465706f736974206f7220776974686472617760608201526a207468697320626c6f636b60a81b608082015260a00190565b8181038181111561047857610478611c84565b600082611dab57634e487b7160e01b600052601260045260246000fd5b500490565b808202811582820484141761047857610478611c84565b600060208284031215611dd957600080fd5b81516105d781611b8b565b60008251611df6818460208701611a7e565b919091019291505056fea164736f6c6343000811000a000000000000000000000000caec63ce78a0d4dab2b5112295789a542a0fdaee0000000000000000000000005de8ab7e27f6e7a1fff3e5b337584aa43961beef00000000000000000000000000000000000000000000000000000000010eb536
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106100415760003560e01c80634cf088d9146100465780634e3ad80f14610089578063eee4f11b146100b0575b600080fd5b61006d7f00000000000000000000000080497049b005fd236591c3cd431dbd6e06eb1a3181565b6040516001600160a01b03909116815260200160405180910390f35b61006d7f0000000000000000000000007d85c0905a6e1ab5837a0b57cd94a419d3a7752381565b6100c36100be36600461046b565b6100c5565b005b7f0000000000000000000000007d85c0905a6e1ab5837a0b57cd94a419d3a775236001600160a01b0316634ad7ce806040518163ffffffff1660e01b8152600401602060405180830381865afa158015610123573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101479190610484565b81106101ad5760405162461bcd60e51b815260206004820152602a60248201527f5265776172644d616e616765723a63616d706169676e49643a77726f6e672063604482015269185b5c185a59db88125160b21b60648201526084015b60405180910390fd5b604051632ec88e3b60e21b8152600481018290526000907f0000000000000000000000007d85c0905a6e1ab5837a0b57cd94a419d3a775236001600160a01b03169063bb2238ec9060240160e060405180830381865afa158015610215573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061023991906104b9565b5050604051636eb1769f60e11b81523060048201526001600160a01b037f0000000000000000000000007d85c0905a6e1ab5837a0b57cd94a419d3a7752381166024830152949650938616945063dd62ed3e936044019250610299915050565b602060405180830381865afa1580156102b6573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906102da9190610484565b1561030b5761030b817f0000000000000000000000007d85c0905a6e1ab5837a0b57cd94a419d3a77523600061033c565b610338817f0000000000000000000000007d85c0905a6e1ab5837a0b57cd94a419d3a7752360001961033c565b5050565b604080516001600160a01b038481166024830152604480830185905283518084039091018152606490920183526020820180516001600160e01b031663095ea7b360e01b1790529151600092839290871691610398919061051b565b6000604051808303816000865af19150503d80600081146103d5576040519150601f19603f3d011682016040523d82523d6000602084013e6103da565b606091505b5091509150818015610404575080511580610404575080806020019051810190610404919061054a565b6104645760405162461bcd60e51b815260206004820152602b60248201527f5472616e7366657248656c7065723a3a73616665417070726f76653a2061707060448201526a1c9bdd994819985a5b195960aa1b60648201526084016101a4565b5050505050565b60006020828403121561047d57600080fd5b5035919050565b60006020828403121561049657600080fd5b5051919050565b80516001600160a01b03811681146104b457600080fd5b919050565b600080600080600080600060e0888a0312156104d457600080fd5b6104dd8861049d565b96506104eb6020890161049d565b604089015160608a015160808b015160a08c015160c0909c01519a9d939c50919a90999198509650945092505050565b6000825160005b8181101561053c5760208186018101518583015201610522565b506000920191825250919050565b60006020828403121561055c57600080fd5b8151801515811461056c57600080fd5b939250505056fea164736f6c6343000811000a
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000caec63ce78a0d4dab2b5112295789a542a0fdaee0000000000000000000000005de8ab7e27f6e7a1fff3e5b337584aa43961beef00000000000000000000000000000000000000000000000000000000010eb536
-----Decoded View---------------
Arg [0] : _farmingOwner (address): 0xcaEc63ce78a0D4DAb2b5112295789A542A0fdAee
Arg [1] : _smardexToken (address): 0x5DE8ab7E27f6E7A1fFf3E5B337584Aa43961BEeF
Arg [2] : _startFarmingCampaign (uint256): 17741110
-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 000000000000000000000000caec63ce78a0d4dab2b5112295789a542a0fdaee
Arg [1] : 0000000000000000000000005de8ab7e27f6e7a1fff3e5b337584aa43961beef
Arg [2] : 00000000000000000000000000000000000000000000000000000000010eb536
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.012931 | 261.0526 | $3.38 |
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.