Source Code
Latest 25 from a total of 1,392 transactions
| Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Claim | 143635588 | 3 days ago | IN | 0 ETH | 0.000000127007 | ||||
| Claim | 143415235 | 9 days ago | IN | 0 ETH | 0.000000009616 | ||||
| Claim | 143408342 | 9 days ago | IN | 0 ETH | 0.000000004414 | ||||
| Claim | 143352042 | 10 days ago | IN | 0 ETH | 0.00000001873 | ||||
| Claim | 143177968 | 14 days ago | IN | 0 ETH | 0.000000001817 | ||||
| Claim | 142847921 | 22 days ago | IN | 0 ETH | 0.000000013415 | ||||
| Claim | 142633439 | 27 days ago | IN | 0 ETH | 0.00000001315 | ||||
| Claim | 142600245 | 27 days ago | IN | 0 ETH | 0.000000012603 | ||||
| Claim | 142587438 | 28 days ago | IN | 0 ETH | 0.000000013136 | ||||
| Claim | 142350193 | 33 days ago | IN | 0 ETH | 0.000000004756 | ||||
| Claim | 142288937 | 35 days ago | IN | 0 ETH | 0.000000006139 | ||||
| Claim | 142082822 | 39 days ago | IN | 0 ETH | 0.000000139702 | ||||
| Claim | 141929676 | 43 days ago | IN | 0 ETH | 0.000000001517 | ||||
| Claim | 141897678 | 44 days ago | IN | 0 ETH | 0.000000012997 | ||||
| Claim | 141890827 | 44 days ago | IN | 0 ETH | 0.000000014792 | ||||
| Claim | 141680416 | 49 days ago | IN | 0 ETH | 0.000000014458 | ||||
| Claim | 141548298 | 52 days ago | IN | 0 ETH | 0.000000012023 | ||||
| Claim | 141226209 | 59 days ago | IN | 0 ETH | 0.000000015471 | ||||
| Claim | 141094209 | 62 days ago | IN | 0 ETH | 0.000000013378 | ||||
| Claim | 141089042 | 62 days ago | IN | 0 ETH | 0.000000003943 | ||||
| Claim | 141080469 | 63 days ago | IN | 0 ETH | 0.000000013876 | ||||
| Claim | 140893511 | 67 days ago | IN | 0 ETH | 0.000000123653 | ||||
| Claim | 140872803 | 67 days ago | IN | 0 ETH | 0.000000023843 | ||||
| Claim | 140855358 | 68 days ago | IN | 0 ETH | 0.00000000534 | ||||
| Claim | 140840809 | 68 days ago | IN | 0 ETH | 0.00000000135 |
Latest 25 internal transactions (View All)
Advanced mode:
| Parent Transaction Hash | Block | From | To | |||
|---|---|---|---|---|---|---|
| 107554863 | 839 days ago | 0 ETH | ||||
| 107554863 | 839 days ago | 0 ETH | ||||
| 107554171 | 839 days ago | 0 ETH | ||||
| 107553934 | 839 days ago | 0 ETH | ||||
| 107553851 | 839 days ago | 0 ETH | ||||
| 107553851 | 839 days ago | 0 ETH | ||||
| 107552893 | 839 days ago | 0 ETH | ||||
| 107549399 | 839 days ago | 0 ETH | ||||
| 107549399 | 839 days ago | 0 ETH | ||||
| 107548420 | 839 days ago | 0 ETH | ||||
| 107546900 | 839 days ago | 0 ETH | ||||
| 107546900 | 839 days ago | 0 ETH | ||||
| 107546696 | 839 days ago | 0 ETH | ||||
| 107546314 | 839 days ago | 0 ETH | ||||
| 107546314 | 839 days ago | 0 ETH | ||||
| 107544400 | 839 days ago | 0 ETH | ||||
| 107536008 | 839 days ago | 0 ETH | ||||
| 107536008 | 839 days ago | 0 ETH | ||||
| 107534816 | 839 days ago | 0 ETH | ||||
| 107534761 | 839 days ago | 0 ETH | ||||
| 107534761 | 839 days ago | 0 ETH | ||||
| 107521027 | 839 days ago | 0 ETH | ||||
| 107521027 | 839 days ago | 0 ETH | ||||
| 107521027 | 839 days ago | 0 ETH | ||||
| 107521027 | 839 days ago | 0 ETH |
Cross-Chain Transactions
Loading...
Loading
Contract Name:
StakingRewards
Compiler Version
v0.8.18+commit.87f61d96
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: gpl-3.0
pragma solidity ^0.8.0;
import "../external/openzeppelin/contracts/access/Ownable.sol";
import "../external/openzeppelin/contracts/token/ERC20/IERC20.sol";
import "../external/openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol";
import "../external/openzeppelin/contracts/utils/math/Math.sol";
import "../external/openzeppelin/contracts/utils/math/SafeMath.sol";
import "../interfaces/IExtraInterestBearingToken.sol";
import "../interfaces/IStakingRewards.sol";
contract StakingRewards is Ownable, IStakingRewards {
using SafeMath for uint256;
using SafeERC20 for IERC20;
IERC20 public immutable stakedToken;
address public immutable lendingPool;
address[] public rewardTokens;
mapping(address => bool) public inRewardsTokenList;
uint256 public totalStaked;
mapping(address => Reward) public rewardData;
mapping(address => uint256) public balanceOf;
mapping(address => mapping(address => uint256))
public userRewardPerTokenPaid;
mapping(address => mapping(address => uint256)) public userRewardsClaimable;
uint internal _unlocked = 1;
modifier nonReentrant() {
require(_unlocked == 1, "reentrant call");
_unlocked = 2;
_;
_unlocked = 1;
}
modifier onlyLendingPool() {
require(lendingPool == msg.sender);
_;
}
modifier updateReward(address user) {
for (uint i; i < rewardTokens.length; i++) {
address rewardToken = rewardTokens[i];
rewardData[rewardToken].rewardPerTokenStored = rewardPerToken(
rewardToken
);
rewardData[rewardToken].lastUpdateTime = Math.min(
rewardData[rewardToken].endTime,
block.timestamp
);
if (user != address(0)) {
userRewardsClaimable[user][rewardToken] = earned(
user,
rewardToken,
rewardData[rewardToken].rewardPerTokenStored
);
userRewardPerTokenPaid[user][rewardToken] = rewardData[
rewardToken
].rewardPerTokenStored;
}
}
_;
}
/// @notice This contract must be create in lendingPool's `initReserve()`
constructor(address _stakingToken) {
stakedToken = IERC20(_stakingToken);
lendingPool = msg.sender;
}
function rewardPerToken(address rewardToken) public view returns (uint) {
if (block.timestamp <= rewardData[rewardToken].startTime) {
// new rewards not start
return rewardData[rewardToken].rewardPerTokenStored;
}
uint256 dt = Math.min(
rewardData[rewardToken].endTime,
block.timestamp
) - (rewardData[rewardToken].lastUpdateTime);
if (dt == 0 || totalStaked == 0) {
return rewardData[rewardToken].rewardPerTokenStored;
}
return
rewardData[rewardToken].rewardPerTokenStored +
(rewardData[rewardToken].rewardRate * dt * 1e18) /
totalStaked;
}
function earned(
address user,
address rewardToken
) public view returns (uint) {
uint256 curRewardPerToken = rewardPerToken(rewardToken);
return earned(user, rewardToken, curRewardPerToken);
}
function earned(
address user,
address rewardToken,
uint256 curRewardPerToken
) internal view returns (uint) {
uint256 d = curRewardPerToken -
userRewardPerTokenPaid[user][rewardToken];
return
(balanceOf[user] * d) /
1e18 +
userRewardsClaimable[user][rewardToken];
}
function setReward(
address rewardToken,
uint256 startTime,
uint256 endTime,
uint256 totalRewards
) public onlyOwner nonReentrant updateReward(address(0)) {
require(startTime < endTime, "start must lt end");
require(rewardData[rewardToken].endTime < block.timestamp, "not end");
if (!inRewardsTokenList[rewardToken]) {
rewardTokens.push(rewardToken);
inRewardsTokenList[rewardToken] = true;
}
rewardData[rewardToken].startTime = startTime;
rewardData[rewardToken].endTime = endTime;
rewardData[rewardToken].lastUpdateTime = block.timestamp;
rewardData[rewardToken].rewardRate =
totalRewards /
(endTime - startTime);
if (block.timestamp > startTime && totalStaked > 0) {
uint256 dt = block.timestamp - startTime;
rewardData[rewardToken].rewardPerTokenStored +=
(rewardData[rewardToken].rewardRate * dt * 1e18) /
totalStaked;
}
if (block.timestamp > startTime && totalStaked == 0) {
// If this happens, there is no staked tokens from startTime to now
// The rewards in this period should be removed
uint256 dt = block.timestamp - startTime;
totalRewards -= rewardData[rewardToken].rewardRate * dt;
}
IERC20(rewardToken).safeTransferFrom(
msg.sender,
address(this),
totalRewards
);
emit RewardsSet(rewardToken, startTime, endTime, totalRewards);
}
/**
* @dev Stake `amount` of assets to this contract
* @param amount The amount of assets to be staked
* @param onBehalfOf The address that will receive the staked position, same as msg.sender if the user
* wants to receive them on his own wallet.
**/
function stake(
uint amount,
address onBehalfOf
) external nonReentrant updateReward(onBehalfOf) {
require(amount > 0, "amount = 0");
stakedToken.safeTransferFrom(msg.sender, address(this), amount);
balanceOf[onBehalfOf] += amount;
totalStaked += amount;
emit Staked(msg.sender, onBehalfOf, amount);
}
/**
* @dev Withdraw `amount` of staked assets
* @param amount The amount of assets to withdraw
* @param to The address that will receive the staked assets, same as msg.sender if the user
* wants to receive them on his own wallet.
**/
function withdraw(
uint amount,
address to
) external nonReentrant updateReward(msg.sender) {
require(amount > 0, "amount = 0");
balanceOf[msg.sender] -= amount;
totalStaked -= amount;
require(stakedToken.transfer(to, amount), "transfer failed");
emit Withdraw(msg.sender, to, amount);
}
/**
* @dev Withdraw `amount` of staked assets called by lendingPool
* only lendingPool can call this function in `unstakeAndWithdraw()` of LendingPool
* @param amount The amount of assets to withdraw
* @param user The user of the staked position
* @param to The address that will receive the staked assets, same as msg.sender if the user
* wants to receive them on his own wallet.
**/
function withdrawByLendingPool(
uint amount,
address user,
address to
) external onlyLendingPool nonReentrant updateReward(user) {
require(amount > 0, "amount = 0");
balanceOf[user] -= amount;
totalStaked -= amount;
require(stakedToken.transfer(to, amount), "transfer falied");
emit Withdraw(user, to, amount);
}
function claim() external nonReentrant updateReward(msg.sender) {
for (uint i = 0; i < rewardTokens.length; i++) {
address rewardToken = rewardTokens[i];
uint256 claimable = userRewardsClaimable[msg.sender][rewardToken];
if (claimable > 0) {
userRewardsClaimable[msg.sender][rewardToken] = 0;
require(
IERC20(rewardToken).transfer(msg.sender, claimable),
"transfer failed"
);
emit RewardPaid(msg.sender, rewardToken, claimable);
}
}
}
function update() external updateReward(address(0)) onlyOwner {}
function rewardsTokenListLength() external view returns (uint256) {
return rewardTokens.length;
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol)
pragma solidity ^0.8.0;
import "../utils/Context.sol";
/**
* @dev Contract module which provides a basic access control mechanism, where
* there is an account (an owner) that can be granted exclusive access to
* specific functions.
*
* By default, the owner account will be the one that deploys the contract. This
* can later be changed with {transferOwnership}.
*
* This module is used through inheritance. It will make available the modifier
* `onlyOwner`, which can be applied to your functions to restrict their use to
* the owner.
*/
abstract contract Ownable is Context {
address private _owner;
event OwnershipTransferred(
address indexed previousOwner,
address indexed newOwner
);
/**
* @dev Initializes the contract setting the deployer as the initial owner.
*/
constructor() {
_transferOwnership(_msgSender());
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
_checkOwner();
_;
}
/**
* @dev Returns the address of the current owner.
*/
function owner() public view virtual returns (address) {
return _owner;
}
/**
* @dev Throws if the sender is not the owner.
*/
function _checkOwner() internal view virtual {
require(owner() == _msgSender(), "Ownable: caller is not the owner");
}
/**
* @dev Leaves the contract without owner. It will not be possible to call
* `onlyOwner` functions anymore. Can only be called by the current owner.
*
* NOTE: Renouncing ownership will leave the contract without an owner,
* thereby removing any functionality that is only available to the owner.
*/
function renounceOwnership() public virtual onlyOwner {
_transferOwnership(address(0));
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Can only be called by the current owner.
*/
function transferOwnership(address newOwner) public virtual onlyOwner {
require(
newOwner != address(0),
"Ownable: new owner is the zero address"
);
_transferOwnership(newOwner);
}
/**
* @dev Transfers ownership of the contract to a new account (`newOwner`).
* Internal function without access restriction.
*/
function _transferOwnership(address newOwner) internal virtual {
address oldOwner = _owner;
_owner = newOwner;
emit OwnershipTransferred(oldOwner, newOwner);
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/draft-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.6.0) (token/ERC20/IERC20.sol)
pragma solidity ^0.8.0;
/**
* @dev Interface of the ERC20 standard as defined in the EIP.
*/
interface IERC20 {
/**
* @dev Emitted when `value` tokens are moved from one account (`from`) to
* another (`to`).
*
* Note that `value` may be zero.
*/
event Transfer(address indexed from, address indexed to, uint256 value);
/**
* @dev Emitted when the allowance of a `spender` for an `owner` is set by
* a call to {approve}. `value` is the new allowance.
*/
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
/**
* @dev Returns the amount of tokens in existence.
*/
function totalSupply() external view returns (uint256);
/**
* @dev Returns the amount of tokens owned by `account`.
*/
function balanceOf(address account) external view returns (uint256);
/**
* @dev Moves `amount` tokens from the caller's account to `to`.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transfer(address to, uint256 amount) external returns (bool);
/**
* @dev Returns the remaining number of tokens that `spender` will be
* allowed to spend on behalf of `owner` through {transferFrom}. This is
* zero by default.
*
* This value changes when {approve} or {transferFrom} are called.
*/
function allowance(
address owner,
address spender
) external view returns (uint256);
/**
* @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* IMPORTANT: Beware that changing an allowance with this method brings the risk
* that someone may use both the old and the new allowance by unfortunate
* transaction ordering. One possible solution to mitigate this race
* condition is to first reduce the spender's allowance to 0 and set the
* desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
*
* Emits an {Approval} event.
*/
function approve(address spender, uint256 amount) external returns (bool);
/**
* @dev Moves `amount` tokens from `from` to `to` using the
* allowance mechanism. `amount` is then deducted from the caller's
* allowance.
*
* Returns a boolean value indicating whether the operation succeeded.
*
* Emits a {Transfer} event.
*/
function transferFrom(
address from,
address to,
uint256 amount
) external returns (bool);
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/utils/SafeERC20.sol)
pragma solidity ^0.8.0;
import "../IERC20.sol";
import "../extensions/draft-IERC20Permit.sol";
import "../../../utils/Address.sol";
/**
* @title SafeERC20
* @dev Wrappers around ERC20 operations that throw on failure (when the token
* contract returns false). Tokens that return no value (and instead revert or
* throw on failure) are also supported, non-reverting calls are assumed to be
* successful.
* To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract,
* which allows you to call the safe operations as `token.safeTransfer(...)`, etc.
*/
library SafeERC20 {
using Address for address;
function safeTransfer(IERC20 token, address to, uint256 value) internal {
_callOptionalReturn(
token,
abi.encodeWithSelector(token.transfer.selector, to, value)
);
}
function safeTransferFrom(
IERC20 token,
address from,
address to,
uint256 value
) internal {
_callOptionalReturn(
token,
abi.encodeWithSelector(token.transferFrom.selector, from, to, value)
);
}
/**
* @dev Deprecated. This function has issues similar to the ones found in
* {IERC20-approve}, and its usage is discouraged.
*
* Whenever possible, use {safeIncreaseAllowance} and
* {safeDecreaseAllowance} instead.
*/
function safeApprove(
IERC20 token,
address spender,
uint256 value
) internal {
// safeApprove should only be called when setting an initial allowance,
// or when resetting it to zero. To increase and decrease it, use
// 'safeIncreaseAllowance' and 'safeDecreaseAllowance'
require(
(value == 0) || (token.allowance(address(this), spender) == 0),
"SafeERC20: approve from non-zero to non-zero allowance"
);
_callOptionalReturn(
token,
abi.encodeWithSelector(token.approve.selector, spender, value)
);
}
function safeIncreaseAllowance(
IERC20 token,
address spender,
uint256 value
) internal {
uint256 newAllowance = token.allowance(address(this), spender) + value;
_callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
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"
);
uint256 newAllowance = oldAllowance - value;
_callOptionalReturn(
token,
abi.encodeWithSelector(
token.approve.selector,
spender,
newAllowance
)
);
}
}
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"
);
if (returndata.length > 0) {
// Return data is optional
require(
abi.decode(returndata, (bool)),
"SafeERC20: ERC20 operation did not succeed"
);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.8.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
* ====
*
* [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://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more].
*
* IMPORTANT: because control is transferred to `recipient`, care must be
* taken to not create reentrancy vulnerabilities. Consider using
* {ReentrancyGuard} or the
* https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern].
*/
function sendValue(address payable recipient, uint256 amount) internal {
require(
address(this).balance >= amount,
"Address: insufficient balance"
);
(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: MIT
// OpenZeppelin Contracts (last updated v4.8.0) (utils/math/Math.sol)
pragma solidity ^0.8.0;
/**
* @dev Standard math utilities missing in the Solidity language.
*/
library Math {
enum Rounding {
Down, // Toward negative infinity
Up, // Toward infinity
Zero // Toward zero
}
/**
* @dev Returns the largest of two numbers.
*/
function max(uint256 a, uint256 b) internal pure returns (uint256) {
return a > b ? a : b;
}
/**
* @dev Returns the smallest of two numbers.
*/
function min(uint256 a, uint256 b) internal pure returns (uint256) {
return a < b ? a : b;
}
/**
* @dev Returns the average of two numbers. The result is rounded towards
* zero.
*/
function average(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b) / 2 can overflow.
return (a & b) + (a ^ b) / 2;
}
/**
* @dev Returns the ceiling of the division of two numbers.
*
* This differs from standard division with `/` in that it rounds up instead
* of rounding down.
*/
function ceilDiv(uint256 a, uint256 b) internal pure returns (uint256) {
// (a + b - 1) / b can overflow on addition, so we distribute.
return a == 0 ? 0 : (a - 1) / b + 1;
}
/**
* @notice Calculates floor(x * y / denominator) with full precision. Throws if result overflows a uint256 or denominator == 0
* @dev Original credit to Remco Bloemen under MIT license (https://xn--2-umb.com/21/muldiv)
* with further edits by Uniswap Labs also under MIT license.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator
) internal pure returns (uint256 result) {
unchecked {
// 512-bit multiply [prod1 prod0] = x * y. Compute the product mod 2^256 and mod 2^256 - 1, then use
// use the Chinese Remainder Theorem to reconstruct the 512 bit result. The result is stored in two 256
// variables such that product = prod1 * 2^256 + prod0.
uint256 prod0; // Least significant 256 bits of the product
uint256 prod1; // Most significant 256 bits of the product
assembly {
let mm := mulmod(x, y, not(0))
prod0 := mul(x, y)
prod1 := sub(sub(mm, prod0), lt(mm, prod0))
}
// Handle non-overflow cases, 256 by 256 division.
if (prod1 == 0) {
return prod0 / denominator;
}
// Make sure the result is less than 2^256. Also prevents denominator == 0.
require(denominator > prod1);
///////////////////////////////////////////////
// 512 by 256 division.
///////////////////////////////////////////////
// Make division exact by subtracting the remainder from [prod1 prod0].
uint256 remainder;
assembly {
// Compute remainder using mulmod.
remainder := mulmod(x, y, denominator)
// Subtract 256 bit number from 512 bit number.
prod1 := sub(prod1, gt(remainder, prod0))
prod0 := sub(prod0, remainder)
}
// Factor powers of two out of denominator and compute largest power of two divisor of denominator. Always >= 1.
// See https://cs.stackexchange.com/q/138556/92363.
// Does not overflow because the denominator cannot be zero at this stage in the function.
uint256 twos = denominator & (~denominator + 1);
assembly {
// Divide denominator by twos.
denominator := div(denominator, twos)
// Divide [prod1 prod0] by twos.
prod0 := div(prod0, twos)
// Flip twos such that it is 2^256 / twos. If twos is zero, then it becomes one.
twos := add(div(sub(0, twos), twos), 1)
}
// Shift in bits from prod1 into prod0.
prod0 |= prod1 * twos;
// Invert denominator mod 2^256. Now that denominator is an odd number, it has an inverse modulo 2^256 such
// that denominator * inv = 1 mod 2^256. Compute the inverse by starting with a seed that is correct for
// four bits. That is, denominator * inv = 1 mod 2^4.
uint256 inverse = (3 * denominator) ^ 2;
// Use the Newton-Raphson iteration to improve the precision. Thanks to Hensel's lifting lemma, this also works
// in modular arithmetic, doubling the correct bits in each step.
inverse *= 2 - denominator * inverse; // inverse mod 2^8
inverse *= 2 - denominator * inverse; // inverse mod 2^16
inverse *= 2 - denominator * inverse; // inverse mod 2^32
inverse *= 2 - denominator * inverse; // inverse mod 2^64
inverse *= 2 - denominator * inverse; // inverse mod 2^128
inverse *= 2 - denominator * inverse; // inverse mod 2^256
// Because the division is now exact we can divide by multiplying with the modular inverse of denominator.
// This will give us the correct result modulo 2^256. Since the preconditions guarantee that the outcome is
// less than 2^256, this is the final result. We don't need to compute the high bits of the result and prod1
// is no longer required.
result = prod0 * inverse;
return result;
}
}
/**
* @notice Calculates x * y / denominator with full precision, following the selected rounding direction.
*/
function mulDiv(
uint256 x,
uint256 y,
uint256 denominator,
Rounding rounding
) internal pure returns (uint256) {
uint256 result = mulDiv(x, y, denominator);
if (rounding == Rounding.Up && mulmod(x, y, denominator) > 0) {
result += 1;
}
return result;
}
/**
* @dev Returns the square root of a number. If the number is not a perfect square, the value is rounded down.
*
* Inspired by Henry S. Warren, Jr.'s "Hacker's Delight" (Chapter 11).
*/
function sqrt(uint256 a) internal pure returns (uint256) {
if (a == 0) {
return 0;
}
// For our first guess, we get the biggest power of 2 which is smaller than the square root of the target.
//
// We know that the "msb" (most significant bit) of our target number `a` is a power of 2 such that we have
// `msb(a) <= a < 2*msb(a)`. This value can be written `msb(a)=2**k` with `k=log2(a)`.
//
// This can be rewritten `2**log2(a) <= a < 2**(log2(a) + 1)`
// → `sqrt(2**k) <= sqrt(a) < sqrt(2**(k+1))`
// → `2**(k/2) <= sqrt(a) < 2**((k+1)/2) <= 2**(k/2 + 1)`
//
// Consequently, `2**(log2(a) / 2)` is a good first approximation of `sqrt(a)` with at least 1 correct bit.
uint256 result = 1 << (log2(a) >> 1);
// At this point `result` is an estimation with one bit of precision. We know the true value is a uint128,
// since it is the square root of a uint256. Newton's method converges quadratically (precision doubles at
// every iteration). We thus need at most 7 iteration to turn our partial result with one bit of precision
// into the expected uint128 result.
unchecked {
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
result = (result + a / result) >> 1;
return min(result, a / result);
}
}
/**
* @notice Calculates sqrt(a), following the selected rounding direction.
*/
function sqrt(
uint256 a,
Rounding rounding
) internal pure returns (uint256) {
unchecked {
uint256 result = sqrt(a);
return
result +
(rounding == Rounding.Up && result * result < a ? 1 : 0);
}
}
/**
* @dev Return the log in base 2, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log2(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 128;
}
if (value >> 64 > 0) {
value >>= 64;
result += 64;
}
if (value >> 32 > 0) {
value >>= 32;
result += 32;
}
if (value >> 16 > 0) {
value >>= 16;
result += 16;
}
if (value >> 8 > 0) {
value >>= 8;
result += 8;
}
if (value >> 4 > 0) {
value >>= 4;
result += 4;
}
if (value >> 2 > 0) {
value >>= 2;
result += 2;
}
if (value >> 1 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 2, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log2(
uint256 value,
Rounding rounding
) internal pure returns (uint256) {
unchecked {
uint256 result = log2(value);
return
result +
(rounding == Rounding.Up && 1 << result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 10, rounded down, of a positive value.
* Returns 0 if given 0.
*/
function log10(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >= 10 ** 64) {
value /= 10 ** 64;
result += 64;
}
if (value >= 10 ** 32) {
value /= 10 ** 32;
result += 32;
}
if (value >= 10 ** 16) {
value /= 10 ** 16;
result += 16;
}
if (value >= 10 ** 8) {
value /= 10 ** 8;
result += 8;
}
if (value >= 10 ** 4) {
value /= 10 ** 4;
result += 4;
}
if (value >= 10 ** 2) {
value /= 10 ** 2;
result += 2;
}
if (value >= 10 ** 1) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log10(
uint256 value,
Rounding rounding
) internal pure returns (uint256) {
unchecked {
uint256 result = log10(value);
return
result +
(rounding == Rounding.Up && 10 ** result < value ? 1 : 0);
}
}
/**
* @dev Return the log in base 256, rounded down, of a positive value.
* Returns 0 if given 0.
*
* Adding one to the result gives the number of pairs of hex symbols needed to represent `value` as a hex string.
*/
function log256(uint256 value) internal pure returns (uint256) {
uint256 result = 0;
unchecked {
if (value >> 128 > 0) {
value >>= 128;
result += 16;
}
if (value >> 64 > 0) {
value >>= 64;
result += 8;
}
if (value >> 32 > 0) {
value >>= 32;
result += 4;
}
if (value >> 16 > 0) {
value >>= 16;
result += 2;
}
if (value >> 8 > 0) {
result += 1;
}
}
return result;
}
/**
* @dev Return the log in base 10, following the selected rounding direction, of a positive value.
* Returns 0 if given 0.
*/
function log256(
uint256 value,
Rounding rounding
) internal pure returns (uint256) {
unchecked {
uint256 result = log256(value);
return
result +
(rounding == Rounding.Up && 1 << (result * 8) < value ? 1 : 0);
}
}
}// SPDX-License-Identifier: MIT
// OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol)
pragma solidity ^0.8.0;
// CAUTION
// This version of SafeMath should only be used with Solidity 0.8 or later,
// because it relies on the compiler's built in overflow checks.
/**
* @dev Wrappers over Solidity's arithmetic operations.
*
* NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler
* now has built in overflow checking.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryAdd(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
uint256 c = a + b;
if (c < a) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the subtraction of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function trySub(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b > a) return (false, 0);
return (true, a - b);
}
}
/**
* @dev Returns the multiplication of two unsigned integers, with an overflow flag.
*
* _Available since v3.4._
*/
function tryMul(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
// Gas optimization: this is cheaper than requiring 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522
if (a == 0) return (true, 0);
uint256 c = a * b;
if (c / a != b) return (false, 0);
return (true, c);
}
}
/**
* @dev Returns the division of two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryDiv(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a / b);
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
*
* _Available since v3.4._
*/
function tryMod(
uint256 a,
uint256 b
) internal pure returns (bool, uint256) {
unchecked {
if (b == 0) return (false, 0);
return (true, a % b);
}
}
/**
* @dev Returns the addition of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `+` operator.
*
* Requirements:
*
* - Addition cannot overflow.
*/
function add(uint256 a, uint256 b) internal pure returns (uint256) {
return a + b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting on
* overflow (when the result is negative).
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(uint256 a, uint256 b) internal pure returns (uint256) {
return a - b;
}
/**
* @dev Returns the multiplication of two unsigned integers, reverting on
* overflow.
*
* Counterpart to Solidity's `*` operator.
*
* Requirements:
*
* - Multiplication cannot overflow.
*/
function mul(uint256 a, uint256 b) internal pure returns (uint256) {
return a * b;
}
/**
* @dev Returns the integer division of two unsigned integers, reverting on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator.
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(uint256 a, uint256 b) internal pure returns (uint256) {
return a / b;
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting when dividing by zero.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(uint256 a, uint256 b) internal pure returns (uint256) {
return a % b;
}
/**
* @dev Returns the subtraction of two unsigned integers, reverting with custom message on
* overflow (when the result is negative).
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {trySub}.
*
* Counterpart to Solidity's `-` operator.
*
* Requirements:
*
* - Subtraction cannot overflow.
*/
function sub(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b <= a, errorMessage);
return a - b;
}
}
/**
* @dev Returns the integer division of two unsigned integers, reverting with custom message on
* division by zero. The result is rounded towards zero.
*
* Counterpart to Solidity's `/` operator. Note: this function uses a
* `revert` opcode (which leaves remaining gas untouched) while Solidity
* uses an invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function div(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a / b;
}
}
/**
* @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
* reverting with custom message when dividing by zero.
*
* CAUTION: This function is deprecated because it requires allocating memory for the error
* message unnecessarily. For custom revert reasons use {tryMod}.
*
* Counterpart to Solidity's `%` operator. This function uses a `revert`
* opcode (which leaves remaining gas untouched) while Solidity uses an
* invalid opcode to revert (consuming all remaining gas).
*
* Requirements:
*
* - The divisor cannot be zero.
*/
function mod(
uint256 a,
uint256 b,
string memory errorMessage
) internal pure returns (uint256) {
unchecked {
require(b > 0, errorMessage);
return a % b;
}
}
}// SPDX-License-Identifier: gpl-3.0
pragma solidity ^0.8.0;
import "../external/openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IExtraInterestBearingToken is IERC20 {
/**
* @dev Emitted after the mint action
* @param to The address receive tokens
* @param value The amount being
**/
event Mint(address indexed to, uint256 value);
/**
* @dev Mints `amount` eTokens to `user`
* @param user The address receiving the minted tokens
* @param amount The amount of tokens getting minted
*/
function mint(address user, uint256 amount) external;
/**
* @dev Emitted after eTokens are burned
* @param from The owner of the eTokens, getting them burned
* @param target The address that will receive the underlying tokens
* @param eTokenAmount The amount being burned
* @param underlyingTokenAmount The amount of underlying tokens being transferred to user
**/
event Burn(
address indexed from,
address indexed target,
uint256 eTokenAmount,
uint256 underlyingTokenAmount
);
/**
* @dev Burns eTokens from `user` and sends the underlying tokens to `receiverOfUnderlying`
* Can only be called by the lending pool;
* The `underlyingTokenAmount` should be calculated based on the current exchange rate in lending pool
* @param receiverOfUnderlying The address that will receive the underlying
* @param eTokenAmount The amount of eTokens being burned
* @param underlyingTokenAmount The amount of underlying tokens being transferred to user
**/
function burn(
address receiverOfUnderlying,
uint256 eTokenAmount,
uint256 underlyingTokenAmount
) external;
/**
* @dev Emitted after the minted to treasury
* @param treasury The treasury address
* @param value The amount being minted
**/
event MintToTreasury(address indexed treasury, uint256 value);
/**
* @dev Mints eTokens to the treasury of the reserve
* @param treasury The address of treasury
* @param amount The amount of ftokens getting minted
*/
function mintToTreasury(address treasury, uint256 amount) external;
/**
* @dev Transfers the underlying tokens to `target`. Called by the LendingPool to transfer
* underlying tokens to target in functions like borrow(), withdraw()
* @param target The recipient of the eTokens
* @param amount The amount getting transferred
* @return The amount transferred
**/
function transferUnderlyingTo(
address target,
uint256 amount
) external returns (uint256);
}// SPDX-License-Identifier: gpl-3.0
pragma solidity ^0.8.0;
import "../external/openzeppelin/contracts/token/ERC20/IERC20.sol";
interface IStakingRewards {
event RewardsSet(
address rewardsToken,
uint256 start,
uint256 end,
uint256 total
);
event Staked(
address indexed user,
address indexed onBehalfOf,
uint256 amount
);
event Withdraw(address indexed user, address indexed to, uint256 amount);
event RewardPaid(
address indexed user,
address indexed rewardsToken,
uint256 claimed
);
struct Reward {
uint256 startTime;
uint256 endTime;
uint256 rewardRate;
uint256 lastUpdateTime;
uint256 rewardPerTokenStored;
}
function rewardData(
address
) external view returns (uint256, uint256, uint256, uint256, uint256);
function stakedToken() external view returns (IERC20);
function lendingPool() external view returns (address);
function totalStaked() external view returns (uint256);
function balanceOf(address) external view returns (uint256);
function rewardsTokenListLength() external view returns (uint256);
function earned(
address _account,
address _rewardsToken
) external view returns (uint256);
function stake(uint _amount, address onBehalfOf) external;
function withdraw(uint _amount, address to) external;
function withdrawByLendingPool(
uint _amount,
address user,
address to
) external;
function claim() external;
}{
"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
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_stakingToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"rewardsToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"claimed","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"rewardsToken","type":"address"},{"indexed":false,"internalType":"uint256","name":"start","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"end","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"}],"name":"RewardsSet","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"onBehalfOf","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"claim","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"rewardToken","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"inRewardsTokenList","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lendingPool","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewardData","outputs":[{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"rewardRate","type":"uint256"},{"internalType":"uint256","name":"lastUpdateTime","type":"uint256"},{"internalType":"uint256","name":"rewardPerTokenStored","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardToken","type":"address"}],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"rewardTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardsTokenListLength","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"rewardToken","type":"address"},{"internalType":"uint256","name":"startTime","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"},{"internalType":"uint256","name":"totalRewards","type":"uint256"}],"name":"setReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"onBehalfOf","type":"address"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"update","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"userRewardsClaimable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"to","type":"address"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"address","name":"user","type":"address"},{"internalType":"address","name":"to","type":"address"}],"name":"withdrawByLendingPool","outputs":[],"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
60c060405260016008553480156200001657600080fd5b5060405162001e0838038062001e088339810160408190526200003991620000aa565b62000044336200005a565b6001600160a01b03166080523360a052620000dc565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215620000bd57600080fd5b81516001600160a01b0381168114620000d557600080fd5b9392505050565b60805160a051611cea6200011e60003960008181610328015261066f01526000818161034f0152818161057701528181610882015261124d0152611cea6000f3fe608060405234801561001057600080fd5b50600436106101365760003560e01c80637acb7757116100b85780639f9a43f21161007c5780639f9a43f2146102e8578063a2e620451461031b578063a59a997314610323578063cc7a262e1461034a578063f122977714610371578063f2fde38b1461038457600080fd5b80637acb7757146102885780637bb7bed11461029b578063817b1cd2146102c65780638da5cb5b146102cf5780638de4e990146102e057600080fd5b80634e71d92d116100ff5780634e71d92d1461021a5780635f7938f1146102225780637035ab981461023557806370a0823114610260578063715018a61461028057600080fd5b8062f714ce1461013b5780630e596e3b146101505780631b503fa51461018e578063211dc32d146101a157806348e5d9f8146101b4575b600080fd5b61014e610149366004611a30565b610397565b005b61017b61015e366004611a5c565b600760209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b61014e61019c366004611a86565b61066d565b61017b6101af366004611a5c565b610985565b6101f26101c2366004611ac2565b60046020819052600091825260409091208054600182015460028301546003840154939094015491939092909185565b604080519586526020860194909452928401919091526060830152608082015260a001610185565b61014e6109a8565b61014e610230366004611add565b610c83565b61017b610243366004611a5c565b600660209081526000928352604080842090915290825290205481565b61017b61026e366004611ac2565b60056020526000908152604090205481565b61014e6110b8565b61014e610296366004611a30565b6110cc565b6102ae6102a9366004611b16565b6112f8565b6040516001600160a01b039091168152602001610185565b61017b60035481565b6000546001600160a01b03166102ae565b60015461017b565b61030b6102f6366004611ac2565b60026020526000908152604090205460ff1681565b6040519015158152602001610185565b61014e611322565b6102ae7f000000000000000000000000000000000000000000000000000000000000000081565b6102ae7f000000000000000000000000000000000000000000000000000000000000000081565b61017b61037f366004611ac2565b61145a565b61014e610392366004611ac2565b611579565b6008546001146103c25760405162461bcd60e51b81526004016103b990611b2f565b60405180910390fd5b60026008553360005b6001548110156104f3576000600182815481106103ea576103ea611b57565b6000918252602090912001546001600160a01b0316905061040a8161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461043a90426115ef565b6001600160a01b038083166000908152600460205260409020600301919091558316156104e057610494838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b50806104eb81611b83565b9150506103cb565b50600083116105145760405162461bcd60e51b81526004016103b990611b9c565b3360009081526005602052604081208054859290610533908490611bc0565b92505081905550826003600082825461054c9190611bc0565b909155505060405163a9059cbb60e01b81526001600160a01b038381166004830152602482018590527f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906044016020604051808303816000875af11580156105c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e49190611bd3565b6106225760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016103b9565b6040518381526001600160a01b0383169033907f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb906020015b60405180910390a35050600160085550565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031633146106a257600080fd5b6008546001146106c45760405162461bcd60e51b81526004016103b990611b2f565b60026008558160005b6001548110156107f5576000600182815481106106ec576106ec611b57565b6000918252602090912001546001600160a01b0316905061070c8161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461073c90426115ef565b6001600160a01b038083166000908152600460205260409020600301919091558316156107e257610796838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b50806107ed81611b83565b9150506106cd565b50600084116108165760405162461bcd60e51b81526004016103b990611b9c565b6001600160a01b0383166000908152600560205260408120805486929061083e908490611bc0565b9250508190555083600360008282546108579190611bc0565b909155505060405163a9059cbb60e01b81526001600160a01b038381166004830152602482018690527f0000000000000000000000000000000000000000000000000000000000000000169063a9059cbb906044016020604051808303816000875af11580156108cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ef9190611bd3565b61092d5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985b1a5959608a1b60448201526064016103b9565b816001600160a01b0316836001600160a01b03167f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb8660405161097291815260200190565b60405180910390a3505060016008555050565b6000806109918361145a565b905061099e848483611605565b9150505b92915050565b6008546001146109ca5760405162461bcd60e51b81526004016103b990611b2f565b60026008553360005b600154811015610afb576000600182815481106109f2576109f2611b57565b6000918252602090912001546001600160a01b03169050610a128161145a565b6001600160a01b03821660009081526004602081905260409091209081019190915560010154610a4290426115ef565b6001600160a01b03808316600090815260046020526040902060030191909155831615610ae857610a9c838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b5080610af381611b83565b9150506109d3565b5060005b600154811015610c7a57600060018281548110610b1e57610b1e611b57565b60009182526020808320909101543383526007825260408084206001600160a01b03909216808552919092529120549091508015610c65573360008181526007602090815260408083206001600160a01b038716808552925280832092909255905163a9059cbb60e01b81526004810192909252602482018390529063a9059cbb906044016020604051808303816000875af1158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190611bd3565b610c245760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016103b9565b6040518181526001600160a01b0383169033907f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e9060200160405180910390a35b50508080610c7290611b83565b915050610aff565b50506001600855565b610c8b6116a3565b600854600114610cad5760405162461bcd60e51b81526004016103b990611b2f565b60026008556000805b600154811015610dde57600060018281548110610cd557610cd5611b57565b6000918252602090912001546001600160a01b03169050610cf58161145a565b6001600160a01b03821660009081526004602081905260409091209081019190915560010154610d2590426115ef565b6001600160a01b03808316600090815260046020526040902060030191909155831615610dcb57610d7f838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b5080610dd681611b83565b915050610cb6565b50828410610e225760405162461bcd60e51b81526020600482015260116024820152701cdd185c9d081b5d5cdd081b1d08195b99607a1b60448201526064016103b9565b6001600160a01b0385166000908152600460205260409020600101544211610e765760405162461bcd60e51b81526020600482015260076024820152661b9bdd08195b9960ca1b60448201526064016103b9565b6001600160a01b03851660009081526002602052604090205460ff16610ef7576001805480820182557fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b0319166001600160a01b0388169081179091556000908152600260205260409020805460ff191690911790555b6001600160a01b03851660009081526004602052604090208481556001810184905542600390910155610f2a8484611bc0565b610f349083611bf5565b6001600160a01b0386166000908152600460205260409020600201554284108015610f6157506000600354115b15610fee576000610f728542611bc0565b6003546001600160a01b03881660009081526004602052604090206002015491925090610fa0908390611c17565b610fb290670de0b6b3a7640000611c17565b610fbc9190611bf5565b6001600160a01b03871660009081526004602081905260408220018054909190610fe7908490611c2e565b9091555050505b8342118015610ffd5750600354155b1561104657600061100e8542611bc0565b6001600160a01b038716600090815260046020526040902060020154909150611038908290611c17565b6110429084611bc0565b9250505b61105b6001600160a01b0386163330856116fd565b604080516001600160a01b038716815260208101869052908101849052606081018390527faecc43db5fdd30351e900b7f70db87835b0fc811d39693c6f1fa82d05d1cf9919060800160405180910390a150506001600855505050565b6110c06116a3565b6110ca600061175d565b565b6008546001146110ee5760405162461bcd60e51b81526004016103b990611b2f565b60026008558060005b60015481101561121f5760006001828154811061111657611116611b57565b6000918252602090912001546001600160a01b031690506111368161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461116690426115ef565b6001600160a01b0380831660009081526004602052604090206003019190915583161561120c576111c0838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b508061121781611b83565b9150506110f7565b50600083116112405760405162461bcd60e51b81526004016103b990611b9c565b6112756001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000163330866116fd565b6001600160a01b0382166000908152600560205260408120805485929061129d908490611c2e565b9250508190555082600360008282546112b69190611c2e565b90915550506040518381526001600160a01b0383169033907f5dac0c1b1112564a045ba943c9d50270893e8e826c49be8e7073adc713ab7bd79060200161065b565b6001818154811061130857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000805b60015481101561144e5760006001828154811061134557611345611b57565b6000918252602090912001546001600160a01b031690506113658161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461139590426115ef565b6001600160a01b0380831660009081526004602052604090206003019190915583161561143b576113ef838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b508061144681611b83565b915050611326565b506114576116a3565b50565b6001600160a01b038116600090815260046020526040812054421161149957506001600160a01b03166000908152600460208190526040909120015490565b6001600160a01b038216600090815260046020526040812060038101546001909101546114c690426115ef565b6114d09190611bc0565b90508015806114df5750600354155b156115055750506001600160a01b03166000908152600460208190526040909120015490565b6003546001600160a01b03841660009081526004602052604090206002015461152f908390611c17565b61154190670de0b6b3a7640000611c17565b61154b9190611bf5565b6001600160a01b038416600090815260046020819052604090912001546115729190611c2e565b9392505050565b6115816116a3565b6001600160a01b0381166115e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b9565b6114578161175d565b60008183106115fe5781611572565b5090919050565b6001600160a01b03808416600090815260066020908152604080832093861683529290529081205481906116399084611bc0565b6001600160a01b038087166000818152600760209081526040808320948a1683529381528382205492825260059052919091205491925090670de0b6b3a764000090611686908490611c17565b6116909190611bf5565b61169a9190611c2e565b95945050505050565b6000546001600160a01b031633146110ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b9565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526117579085906117ad565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611802826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118849092919063ffffffff16565b80519091501561187f57808060200190518101906118209190611bd3565b61187f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016103b9565b505050565b6060611893848460008561189b565b949350505050565b6060824710156118fc5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016103b9565b600080866001600160a01b031685876040516119189190611c65565b60006040518083038185875af1925050503d8060008114611955576040519150601f19603f3d011682016040523d82523d6000602084013e61195a565b606091505b509150915061196b87838387611976565b979650505050505050565b606083156119e55782516000036119de576001600160a01b0385163b6119de5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103b9565b5081611893565b61189383838151156119fa5781518083602001fd5b8060405162461bcd60e51b81526004016103b99190611c81565b80356001600160a01b0381168114611a2b57600080fd5b919050565b60008060408385031215611a4357600080fd5b82359150611a5360208401611a14565b90509250929050565b60008060408385031215611a6f57600080fd5b611a7883611a14565b9150611a5360208401611a14565b600080600060608486031215611a9b57600080fd5b83359250611aab60208501611a14565b9150611ab960408501611a14565b90509250925092565b600060208284031215611ad457600080fd5b61157282611a14565b60008060008060808587031215611af357600080fd5b611afc85611a14565b966020860135965060408601359560600135945092505050565b600060208284031215611b2857600080fd5b5035919050565b6020808252600e908201526d1c99595b9d1c985b9d0818d85b1b60921b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611b9557611b95611b6d565b5060010190565b6020808252600a90820152690616d6f756e74203d20360b41b604082015260600190565b818103818111156109a2576109a2611b6d565b600060208284031215611be557600080fd5b8151801515811461157257600080fd5b600082611c1257634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176109a2576109a2611b6d565b808201808211156109a2576109a2611b6d565b60005b83811015611c5c578181015183820152602001611c44565b50506000910152565b60008251611c77818460208701611c41565b9190910192915050565b6020815260008251806020840152611ca0816040850160208701611c41565b601f01601f1916919091016040019291505056fea2646970667358221220ef292e62ce2a242faa17de28d1486971e190f581a56f1cd4574cf90e618b383964736f6c634300081200330000000000000000000000003dc60be8092c851c3f512edbfe3b61fc40d33bb9
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101365760003560e01c80637acb7757116100b85780639f9a43f21161007c5780639f9a43f2146102e8578063a2e620451461031b578063a59a997314610323578063cc7a262e1461034a578063f122977714610371578063f2fde38b1461038457600080fd5b80637acb7757146102885780637bb7bed11461029b578063817b1cd2146102c65780638da5cb5b146102cf5780638de4e990146102e057600080fd5b80634e71d92d116100ff5780634e71d92d1461021a5780635f7938f1146102225780637035ab981461023557806370a0823114610260578063715018a61461028057600080fd5b8062f714ce1461013b5780630e596e3b146101505780631b503fa51461018e578063211dc32d146101a157806348e5d9f8146101b4575b600080fd5b61014e610149366004611a30565b610397565b005b61017b61015e366004611a5c565b600760209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b61014e61019c366004611a86565b61066d565b61017b6101af366004611a5c565b610985565b6101f26101c2366004611ac2565b60046020819052600091825260409091208054600182015460028301546003840154939094015491939092909185565b604080519586526020860194909452928401919091526060830152608082015260a001610185565b61014e6109a8565b61014e610230366004611add565b610c83565b61017b610243366004611a5c565b600660209081526000928352604080842090915290825290205481565b61017b61026e366004611ac2565b60056020526000908152604090205481565b61014e6110b8565b61014e610296366004611a30565b6110cc565b6102ae6102a9366004611b16565b6112f8565b6040516001600160a01b039091168152602001610185565b61017b60035481565b6000546001600160a01b03166102ae565b60015461017b565b61030b6102f6366004611ac2565b60026020526000908152604090205460ff1681565b6040519015158152602001610185565b61014e611322565b6102ae7f000000000000000000000000bb505c54d71e9e599cb8435b4f0ceec05fc71cbd81565b6102ae7f0000000000000000000000003dc60be8092c851c3f512edbfe3b61fc40d33bb981565b61017b61037f366004611ac2565b61145a565b61014e610392366004611ac2565b611579565b6008546001146103c25760405162461bcd60e51b81526004016103b990611b2f565b60405180910390fd5b60026008553360005b6001548110156104f3576000600182815481106103ea576103ea611b57565b6000918252602090912001546001600160a01b0316905061040a8161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461043a90426115ef565b6001600160a01b038083166000908152600460205260409020600301919091558316156104e057610494838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b50806104eb81611b83565b9150506103cb565b50600083116105145760405162461bcd60e51b81526004016103b990611b9c565b3360009081526005602052604081208054859290610533908490611bc0565b92505081905550826003600082825461054c9190611bc0565b909155505060405163a9059cbb60e01b81526001600160a01b038381166004830152602482018590527f0000000000000000000000003dc60be8092c851c3f512edbfe3b61fc40d33bb9169063a9059cbb906044016020604051808303816000875af11580156105c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105e49190611bd3565b6106225760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016103b9565b6040518381526001600160a01b0383169033907f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb906020015b60405180910390a35050600160085550565b7f000000000000000000000000bb505c54d71e9e599cb8435b4f0ceec05fc71cbd6001600160a01b031633146106a257600080fd5b6008546001146106c45760405162461bcd60e51b81526004016103b990611b2f565b60026008558160005b6001548110156107f5576000600182815481106106ec576106ec611b57565b6000918252602090912001546001600160a01b0316905061070c8161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461073c90426115ef565b6001600160a01b038083166000908152600460205260409020600301919091558316156107e257610796838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b50806107ed81611b83565b9150506106cd565b50600084116108165760405162461bcd60e51b81526004016103b990611b9c565b6001600160a01b0383166000908152600560205260408120805486929061083e908490611bc0565b9250508190555083600360008282546108579190611bc0565b909155505060405163a9059cbb60e01b81526001600160a01b038381166004830152602482018690527f0000000000000000000000003dc60be8092c851c3f512edbfe3b61fc40d33bb9169063a9059cbb906044016020604051808303816000875af11580156108cb573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906108ef9190611bd3565b61092d5760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985b1a5959608a1b60448201526064016103b9565b816001600160a01b0316836001600160a01b03167f9b1bfa7fa9ee420a16e124f794c35ac9f90472acc99140eb2f6447c714cad8eb8660405161097291815260200190565b60405180910390a3505060016008555050565b6000806109918361145a565b905061099e848483611605565b9150505b92915050565b6008546001146109ca5760405162461bcd60e51b81526004016103b990611b2f565b60026008553360005b600154811015610afb576000600182815481106109f2576109f2611b57565b6000918252602090912001546001600160a01b03169050610a128161145a565b6001600160a01b03821660009081526004602081905260409091209081019190915560010154610a4290426115ef565b6001600160a01b03808316600090815260046020526040902060030191909155831615610ae857610a9c838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b5080610af381611b83565b9150506109d3565b5060005b600154811015610c7a57600060018281548110610b1e57610b1e611b57565b60009182526020808320909101543383526007825260408084206001600160a01b03909216808552919092529120549091508015610c65573360008181526007602090815260408083206001600160a01b038716808552925280832092909255905163a9059cbb60e01b81526004810192909252602482018390529063a9059cbb906044016020604051808303816000875af1158015610bc2573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610be69190611bd3565b610c245760405162461bcd60e51b815260206004820152600f60248201526e1d1c985b9cd9995c8819985a5b1959608a1b60448201526064016103b9565b6040518181526001600160a01b0383169033907f540798df468d7b23d11f156fdb954cb19ad414d150722a7b6d55ba369dea792e9060200160405180910390a35b50508080610c7290611b83565b915050610aff565b50506001600855565b610c8b6116a3565b600854600114610cad5760405162461bcd60e51b81526004016103b990611b2f565b60026008556000805b600154811015610dde57600060018281548110610cd557610cd5611b57565b6000918252602090912001546001600160a01b03169050610cf58161145a565b6001600160a01b03821660009081526004602081905260409091209081019190915560010154610d2590426115ef565b6001600160a01b03808316600090815260046020526040902060030191909155831615610dcb57610d7f838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b5080610dd681611b83565b915050610cb6565b50828410610e225760405162461bcd60e51b81526020600482015260116024820152701cdd185c9d081b5d5cdd081b1d08195b99607a1b60448201526064016103b9565b6001600160a01b0385166000908152600460205260409020600101544211610e765760405162461bcd60e51b81526020600482015260076024820152661b9bdd08195b9960ca1b60448201526064016103b9565b6001600160a01b03851660009081526002602052604090205460ff16610ef7576001805480820182557fb10e2d527612073b26eecdfd717e6a320cf44b4afac2b0732d9fcbe2b7fa0cf60180546001600160a01b0319166001600160a01b0388169081179091556000908152600260205260409020805460ff191690911790555b6001600160a01b03851660009081526004602052604090208481556001810184905542600390910155610f2a8484611bc0565b610f349083611bf5565b6001600160a01b0386166000908152600460205260409020600201554284108015610f6157506000600354115b15610fee576000610f728542611bc0565b6003546001600160a01b03881660009081526004602052604090206002015491925090610fa0908390611c17565b610fb290670de0b6b3a7640000611c17565b610fbc9190611bf5565b6001600160a01b03871660009081526004602081905260408220018054909190610fe7908490611c2e565b9091555050505b8342118015610ffd5750600354155b1561104657600061100e8542611bc0565b6001600160a01b038716600090815260046020526040902060020154909150611038908290611c17565b6110429084611bc0565b9250505b61105b6001600160a01b0386163330856116fd565b604080516001600160a01b038716815260208101869052908101849052606081018390527faecc43db5fdd30351e900b7f70db87835b0fc811d39693c6f1fa82d05d1cf9919060800160405180910390a150506001600855505050565b6110c06116a3565b6110ca600061175d565b565b6008546001146110ee5760405162461bcd60e51b81526004016103b990611b2f565b60026008558060005b60015481101561121f5760006001828154811061111657611116611b57565b6000918252602090912001546001600160a01b031690506111368161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461116690426115ef565b6001600160a01b0380831660009081526004602052604090206003019190915583161561120c576111c0838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b508061121781611b83565b9150506110f7565b50600083116112405760405162461bcd60e51b81526004016103b990611b9c565b6112756001600160a01b037f0000000000000000000000003dc60be8092c851c3f512edbfe3b61fc40d33bb9163330866116fd565b6001600160a01b0382166000908152600560205260408120805485929061129d908490611c2e565b9250508190555082600360008282546112b69190611c2e565b90915550506040518381526001600160a01b0383169033907f5dac0c1b1112564a045ba943c9d50270893e8e826c49be8e7073adc713ab7bd79060200161065b565b6001818154811061130857600080fd5b6000918252602090912001546001600160a01b0316905081565b6000805b60015481101561144e5760006001828154811061134557611345611b57565b6000918252602090912001546001600160a01b031690506113658161145a565b6001600160a01b0382166000908152600460208190526040909120908101919091556001015461139590426115ef565b6001600160a01b0380831660009081526004602052604090206003019190915583161561143b576113ef838260046000856001600160a01b03166001600160a01b0316815260200190815260200160002060040154611605565b6001600160a01b03808516600081815260076020908152604080832094871680845294825280832095909555600480825285832001549282526006815284822093825292909252919020555b508061144681611b83565b915050611326565b506114576116a3565b50565b6001600160a01b038116600090815260046020526040812054421161149957506001600160a01b03166000908152600460208190526040909120015490565b6001600160a01b038216600090815260046020526040812060038101546001909101546114c690426115ef565b6114d09190611bc0565b90508015806114df5750600354155b156115055750506001600160a01b03166000908152600460208190526040909120015490565b6003546001600160a01b03841660009081526004602052604090206002015461152f908390611c17565b61154190670de0b6b3a7640000611c17565b61154b9190611bf5565b6001600160a01b038416600090815260046020819052604090912001546115729190611c2e565b9392505050565b6115816116a3565b6001600160a01b0381166115e65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103b9565b6114578161175d565b60008183106115fe5781611572565b5090919050565b6001600160a01b03808416600090815260066020908152604080832093861683529290529081205481906116399084611bc0565b6001600160a01b038087166000818152600760209081526040808320948a1683529381528382205492825260059052919091205491925090670de0b6b3a764000090611686908490611c17565b6116909190611bf5565b61169a9190611c2e565b95945050505050565b6000546001600160a01b031633146110ca5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016103b9565b604080516001600160a01b0385811660248301528416604482015260648082018490528251808303909101815260849091019091526020810180516001600160e01b03166323b872dd60e01b1790526117579085906117ad565b50505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000611802826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b03166118849092919063ffffffff16565b80519091501561187f57808060200190518101906118209190611bd3565b61187f5760405162461bcd60e51b815260206004820152602a60248201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6044820152691bdd081cdd58d8d9595960b21b60648201526084016103b9565b505050565b6060611893848460008561189b565b949350505050565b6060824710156118fc5760405162461bcd60e51b815260206004820152602660248201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6044820152651c8818d85b1b60d21b60648201526084016103b9565b600080866001600160a01b031685876040516119189190611c65565b60006040518083038185875af1925050503d8060008114611955576040519150601f19603f3d011682016040523d82523d6000602084013e61195a565b606091505b509150915061196b87838387611976565b979650505050505050565b606083156119e55782516000036119de576001600160a01b0385163b6119de5760405162461bcd60e51b815260206004820152601d60248201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e747261637400000060448201526064016103b9565b5081611893565b61189383838151156119fa5781518083602001fd5b8060405162461bcd60e51b81526004016103b99190611c81565b80356001600160a01b0381168114611a2b57600080fd5b919050565b60008060408385031215611a4357600080fd5b82359150611a5360208401611a14565b90509250929050565b60008060408385031215611a6f57600080fd5b611a7883611a14565b9150611a5360208401611a14565b600080600060608486031215611a9b57600080fd5b83359250611aab60208501611a14565b9150611ab960408501611a14565b90509250925092565b600060208284031215611ad457600080fd5b61157282611a14565b60008060008060808587031215611af357600080fd5b611afc85611a14565b966020860135965060408601359560600135945092505050565b600060208284031215611b2857600080fd5b5035919050565b6020808252600e908201526d1c99595b9d1c985b9d0818d85b1b60921b604082015260600190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201611b9557611b95611b6d565b5060010190565b6020808252600a90820152690616d6f756e74203d20360b41b604082015260600190565b818103818111156109a2576109a2611b6d565b600060208284031215611be557600080fd5b8151801515811461157257600080fd5b600082611c1257634e487b7160e01b600052601260045260246000fd5b500490565b80820281158282048414176109a2576109a2611b6d565b808201808211156109a2576109a2611b6d565b60005b83811015611c5c578181015183820152602001611c44565b50506000910152565b60008251611c77818460208701611c41565b9190910192915050565b6020815260008251806020840152611ca0816040850160208701611c41565b601f01601f1916919091016040019291505056fea2646970667358221220ef292e62ce2a242faa17de28d1486971e190f581a56f1cd4574cf90e618b383964736f6c63430008120033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000003dc60be8092c851c3f512edbfe3b61fc40d33bb9
-----Decoded View---------------
Arg [0] : _stakingToken (address): 0x3dC60bE8092C851c3f512eDbFe3b61Fc40D33bb9
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000003dc60be8092c851c3f512edbfe3b61fc40d33bb9
Loading...
Loading
Loading...
Loading
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.