Contract Overview
My Name Tag:
Not Available, login to update
[ Download CSV Export ]
Latest 6 internal transactions
Parent Txn Hash | Block | From | To | Value | |||
---|---|---|---|---|---|---|---|
0x1afec9228fb21c0135c0adeedd05a594bd84020e2a39da22bc0c91ed55902b03 | 21945892 | 428 days 4 hrs ago | 0x042f9f08a3b7ab93a4008927cbecbc3a32c962d3 | Contract Creation | 0 MATIC | ||
0xc1582c4c6842c9e962d4306d3b1d754e9f25de420b2bfeb54c4538dc735c8f3d | 21945868 | 428 days 4 hrs ago | 0x042f9f08a3b7ab93a4008927cbecbc3a32c962d3 | Contract Creation | 0 MATIC | ||
0xaf0a87b0f8ee2826e6b8883daf28d8ff094df31e3c3d31487079e7be94175758 | 19993152 | 480 days 4 hrs ago | 0x042f9f08a3b7ab93a4008927cbecbc3a32c962d3 | Contract Creation | 0 MATIC | ||
0xd331476364d78f4bcfe1ff8b0c745e0950f3feccd22c8fd973dc571d3f6b25c0 | 19993134 | 480 days 4 hrs ago | 0x042f9f08a3b7ab93a4008927cbecbc3a32c962d3 | Contract Creation | 0 MATIC | ||
0x66328ca634c6b3eddf85ad32904f294a34fb4fc5a875ce8cf6b4c6795605eba6 | 19993129 | 480 days 4 hrs ago | 0x042f9f08a3b7ab93a4008927cbecbc3a32c962d3 | Contract Creation | 0 MATIC | ||
0x5bfe67129691873fc8840c6f493f59b4199df2abc3bc3794a89548cf611ab0b0 | 19993123 | 480 days 4 hrs ago | 0x042f9f08a3b7ab93a4008927cbecbc3a32c962d3 | Contract Creation | 0 MATIC |
[ Download CSV Export ]
Similar Match Source Code
Note: This contract matches the deployed ByteCode of the Source Code for Contract 0x9AD01C2B7a77B0c4DD94FF5a65B4a17F3C69e49e
Contract Name:
LendingDistributionFactory
Compiler Version
v0.5.17+commit.d19bba13
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT pragma solidity 0.5.17; import "./LendingDistributionRewards.sol"; contract LendingDistributionFactory is Ownable { // immutables address public rewardsToken; uint256 public stakingRewardsGenesis; address public registry; // the staking tokens for which the rewards contract has been deployed address[] public stakingTokens; // info about rewards for a particular staking token struct StakingRewardsInfo { address stakingRewards; uint256 rewardAmount; uint256 endTime; } // rewards info by staking token mapping(address => StakingRewardsInfo) public stakingRewardsInfoByStakingToken; constructor( address _rewardsToken, uint256 _stakingRewardsGenesis, address _registry ) public Ownable() { require( _stakingRewardsGenesis >= block.timestamp, "StakingRewardsFactory::constructor: genesis too soon" ); require( _rewardsToken != address(0), "rewards tokend cannot be zero address" ); rewardsToken = _rewardsToken; stakingRewardsGenesis = _stakingRewardsGenesis; registry = _registry; } ///// permissioned functions // deploy a staking reward contract for the staking token, and store the reward amount // the reward will be distributed to the staking reward contract no sooner than the genesis function deploy( address stakingToken, uint256 rewardAmount, uint256 endTime ) public onlyOwner { StakingRewardsInfo storage info = stakingRewardsInfoByStakingToken[ stakingToken ]; require( info.stakingRewards == address(0), "StakingRewardsFactory::deploy: already deployed" ); info.stakingRewards = address( new LendingDistributionRewards( /*_rewardsDistribution=*/ address(this), rewardsToken, registry, owner() ) ); info.rewardAmount = rewardAmount; info.endTime = endTime; stakingTokens.push(stakingToken); } ///// permissionless functions // updates the rerward amount and endTime for the distribution contract function updateRewards( address stakingToken, uint256 rewardAmount, uint256 endTime ) public onlyOwner { require( stakingToken != address(0), "staking tokend cannot be zero address" ); StakingRewardsInfo storage info = stakingRewardsInfoByStakingToken[ stakingToken ]; info.rewardAmount = rewardAmount; info.endTime = endTime; } // call notifyRewardAmount for all staking tokens. function notifyRewardAmounts() public { require( stakingTokens.length > 0, "StakingRewardsFactory::notifyRewardAmounts: called before any deploys" ); for (uint256 i = 0; i < stakingTokens.length; i++) { notifyRewardAmount(stakingTokens[i]); } } // notify reward amount for an individual staking token. // this is a fallback in case the notifyRewardAmounts costs too much gas to call for all contracts function notifyRewardAmount(address stakingToken) public { require( block.timestamp >= stakingRewardsGenesis, "StakingRewardsFactory::notifyRewardAmount: not ready" ); StakingRewardsInfo storage info = stakingRewardsInfoByStakingToken[ stakingToken ]; require( info.stakingRewards != address(0), "StakingRewardsFactory::notifyRewardAmount: not deployed" ); if (info.rewardAmount > 0) { uint256 rewardAmount = info.rewardAmount; info.rewardAmount = 0; require( IERC20(rewardsToken).transfer( info.stakingRewards, rewardAmount ), "StakingRewardsFactory::notifyRewardAmount: transfer failed" ); LendingDistributionRewards(info.stakingRewards).notifyRewardAmount( rewardAmount, info.endTime ); } } function sweep( address recipient, address erc20, uint256 transferAmount ) public onlyOwner { require(recipient != address(0), "CANNOT TRANSFER TO ZERO ADDRESS"); require(transferAmount > 0, "TRANSFER AMOUNT 0"); require( IERC20(erc20).transfer(recipient, transferAmount), "StakingRewardsFactory::sweep: transfer failed" ); } }
//SPDX-License-Identifier: MIT pragma solidity 0.5.17; interface IRegistry { function logic(address logicAddr) external view returns (bool); function implementation(bytes32 key) external view returns (address); function notAllowed(address erc20) external view returns (bool); function deployWallet() external returns (address); function wallets(address user) external view returns (address); function walletRegistered(address wallet) external view returns (bool); function distributionContract(address token) external view returns (address); } /** * @dev Interface of the ERC20 standard as defined in the EIP. Does not include * the optional functions; to access them see `ERC20Detailed`. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through `transferFrom`. This is * zero by default. * * This value changes when `approve` or `transferFrom` are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * > Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an `Approval` event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a `Transfer` event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to `approve`. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } /** * @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. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be aplied to your functions to restrict their use to * the owner. */ contract Ownable { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() internal { _owner = msg.sender; emit OwnershipTransferred(address(0), _owner); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(isOwner(), "Ownable: caller is not the owner"); _; } /** * @dev Returns true if the caller is the current owner. */ function isOwner() public view returns (bool) { return msg.sender == _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 onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public onlyOwner { _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). */ function _transferOwnership(address newOwner) internal { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); uint256 c = a - b; return c; } /** * @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) { // 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-solidity/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { // Solidity only automatically asserts when dividing by 0 require(b > 0, "SafeMath: division by zero"); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b != 0, "SafeMath: modulo by zero"); return a % b; } } /** * @dev Standard math utilities missing in the Solidity language. */ library Math { /** * @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, so we distribute return (a / 2) + (b / 2) + (((a % 2) + (b % 2)) / 2); } } /** * @dev Optional functions from the ERC20 standard. */ contract ERC20Detailed is IERC20 { string private _name; string private _symbol; uint8 private _decimals; /** * @dev Sets the values for `name`, `symbol`, and `decimals`. All three of * these values are immutable: they can only be set once during * construction. */ constructor( string memory name, string memory symbol, uint8 decimals ) public { _name = name; _symbol = symbol; _decimals = decimals; } /** * @dev Returns the name of the token. */ function name() public view returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view 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. * * > Note that 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 returns (uint8) { return _decimals; } } /** * @dev Collection of functions related to the address type, */ library Address { /** * @dev Returns true if `account` is a contract. * * This test is non-exhaustive, and there may be false-negatives: during the * execution of a contract's constructor, its address will be reported as * not containing a contract. * * > It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. */ function isContract(address account) internal view returns (bool) { // This method relies in extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } } /** * @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 ERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { callOptionalReturn( token, abi.encodeWithSelector(token.transfer.selector, to, value) ); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { callOptionalReturn( token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value) ); } function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); callOptionalReturn( token, abi.encodeWithSelector(token.approve.selector, spender, value) ); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).add( value ); callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender).sub( value ); callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. // A Solidity high level call has three parts: // 1. The target address is checked to verify it contains contract code // 2. The call itself is made, and success asserted // 3. The return value is decoded, which in turn checks the size of the returned data. // solhint-disable-next-line max-line-length require(address(token).isContract(), "SafeERC20: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = address(token).call(data); require(success, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require( abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed" ); } } } /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the `nonReentrant` modifier * available, which can be aplied 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. */ contract ReentrancyGuard { /// @dev counter to allow mutex lock with only one SSTORE operation uint256 private _guardCounter; constructor() internal { // The counter starts at one to prevent changing it from zero to a non-zero // value, which is a more expensive operation. _guardCounter = 1; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { _guardCounter += 1; uint256 localCounter = _guardCounter; _; require( localCounter == _guardCounter, "ReentrancyGuard: reentrant call" ); } } // Inheritance interface IStakingRewards { // Views function lastTimeRewardApplicable() external view returns (uint256); function rewardPerToken() external view returns (uint256); function earned(address account) external view returns (uint256); function getRewardForDuration() external view returns (uint256); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); // Mutative function stake(uint256 amount) external; function withdraw(uint256 amount) external; function getReward(address user) external; // function exit(address user) external; } contract RewardsDistributionRecipient { address public rewardsDistribution; function notifyRewardAmount(uint256 reward, uint256 endTime) external; modifier onlyRewardsDistribution() { require( msg.sender == rewardsDistribution, "Caller is not RewardsDistribution contract" ); _; } } contract LendingDistributionRewards is IStakingRewards, RewardsDistributionRecipient, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for IERC20; /* ========== STATE VARIABLES ========== */ IERC20 public rewardsToken; uint256 public periodFinish = 0; uint256 public rewardRate = 0; uint256 public rewardsDuration = 0; uint256 public lastUpdateTime; uint256 public rewardPerTokenStored; mapping(address => uint256) public userRewardPerTokenPaid; mapping(address => uint256) public rewards; uint256 private _totalSupply; mapping(address => uint256) private _balances; address public registry; address public owner; /* ========== CONSTRUCTOR ========== */ constructor( address _rewardsDistribution, address _rewardsToken, address _registry, address _owner ) public { rewardsToken = IERC20(_rewardsToken); rewardsDistribution = _rewardsDistribution; registry = _registry; owner = _owner; } /* ========== VIEWS ========== */ function totalSupply() external view returns (uint256) { return _totalSupply; } function balanceOf(address account) external view returns (uint256) { return _balances[account]; } function lastTimeRewardApplicable() public view returns (uint256) { return Math.min(block.timestamp, periodFinish); } function rewardPerToken() public view returns (uint256) { if (_totalSupply == 0) { return rewardPerTokenStored; } return rewardPerTokenStored.add( lastTimeRewardApplicable() .sub(lastUpdateTime) .mul(rewardRate) .mul(1e18) .div(_totalSupply) ); } function earned(address account) public view returns (uint256) { return _balances[account] .mul(rewardPerToken().sub(userRewardPerTokenPaid[account])) .div(1e18) .add(rewards[account]); } function getRewardForDuration() external view returns (uint256) { return rewardRate.mul(rewardsDuration); } function stake(uint256 amount) external nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot stake 0"); require( IRegistry(registry).walletRegistered(msg.sender) == true, "Invalid Access: Can only be accessed by ETHA wallets" ); _totalSupply = _totalSupply.add(amount); _balances[msg.sender] = _balances[msg.sender].add(amount); emit Staked(msg.sender, amount); } function withdraw(uint256 amount) public nonReentrant updateReward(msg.sender) { require(amount > 0, "Cannot withdraw 0"); require( IRegistry(registry).walletRegistered(msg.sender) == true, "Invalid Access: Can only be accessed by ETHA wallets" ); _totalSupply = _totalSupply.sub(amount); _balances[msg.sender] = _balances[msg.sender].sub(amount); emit Withdrawn(msg.sender, amount); } function getReward(address user) public nonReentrant updateReward(user) { uint256 reward = rewards[user]; if (reward > 0) { rewards[user] = 0; rewardsToken.safeTransfer(user, reward); emit RewardPaid(user, reward); } } /* ========== RESTRICTED FUNCTIONS ========== */ function notifyRewardAmount(uint256 reward, uint256 endTime) external onlyRewardsDistribution updateReward(address(0)) { rewardsDuration = endTime.sub(block.timestamp); if (block.timestamp >= periodFinish) { rewardRate = reward.div(rewardsDuration); } else { uint256 remaining = periodFinish.sub(block.timestamp); uint256 leftover = remaining.mul(rewardRate); rewardRate = reward.add(leftover).div(rewardsDuration); } // Ensure the provided reward amount is not more than the balance in the contract. // This keeps the reward rate in the right range, preventing overflows due to // very high values of rewardRate in the earned and rewardsPerToken functions; // Reward + leftover must be less than 2^256 / 10^18 to avoid overflow. uint256 balance = rewardsToken.balanceOf(address(this)); require( rewardRate <= balance.div(rewardsDuration), "Provided reward too high" ); lastUpdateTime = block.timestamp; periodFinish = endTime; emit RewardAdded(reward); } function sweep( address recipient, address erc20, uint256 transferAmount ) public { require(msg.sender == owner, "INVALID ACCESS"); require(recipient != address(0), "CANNOT TRANSFER TO ZERO ADDRESS"); require(transferAmount > 0, "TRANSFER AMOUNT 0"); require( IERC20(erc20).transfer(recipient, transferAmount), "LendingDistrubution::sweep: transfer failed" ); } /* ========== MODIFIERS ========== */ modifier updateReward(address account) { rewardPerTokenStored = rewardPerToken(); lastUpdateTime = lastTimeRewardApplicable(); if (account != address(0)) { rewards[account] = earned(account); userRewardPerTokenPaid[account] = rewardPerTokenStored; } _; } /* ========== EVENTS ========== */ event RewardAdded(uint256 reward); event Staked(address indexed user, uint256 amount); event Withdrawn(address indexed user, uint256 amount); event RewardPaid(address indexed user, uint256 reward); }
{ "evmVersion": "istanbul", "libraries": {}, "metadata": { "useLiteralContent": true }, "optimizer": { "enabled": true, "runs": 200 }, "remappings": [], "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"uint256","name":"_stakingRewardsGenesis","type":"uint256"},{"internalType":"address","name":"_registry","type":"address"}],"payable":false,"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"},{"constant":false,"inputs":[{"internalType":"address","name":"stakingToken","type":"address"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"deploy","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"isOwner","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"stakingToken","type":"address"}],"name":"notifyRewardAmount","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"notifyRewardAmounts","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"registry","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"renounceOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"stakingRewardsGenesis","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakingRewardsInfoByStakingToken","outputs":[{"internalType":"address","name":"stakingRewards","type":"address"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"stakingTokens","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"address","name":"erc20","type":"address"},{"internalType":"uint256","name":"transferAmount","type":"uint256"}],"name":"sweep","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"stakingToken","type":"address"},{"internalType":"uint256","name":"rewardAmount","type":"uint256"},{"internalType":"uint256","name":"endTime","type":"uint256"}],"name":"updateRewards","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
608060405234801561001057600080fd5b506040516122de3803806122de8339818101604052606081101561003357600080fd5b5080516020820151604092830151600080546001600160a01b031916331780825594519394929391926001600160a01b0316917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3428210156100ca5760405162461bcd60e51b81526004018080602001828103825260348152602001806122aa6034913960400191505060405180910390fd5b6001600160a01b03831661010f5760405162461bcd60e51b81526004018080602001828103825260258152602001806122856025913960400191505060405180910390fd5b600180546001600160a01b039485166001600160a01b03199182161790915560029290925560038054919093169116179055612135806101506000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c80638da5cb5b1161008c578063ae741d8d11610066578063ae741d8d14610254578063cfda54781461025c578063d1af0c7d1461028e578063f2fde38b14610296576100ea565b80638da5cb5b146102165780638f32d59b1461021e578063a0928c111461023a576100ea565b80636cf8caf8116100c85780636cf8caf814610192578063715018a6146101e05780637b103999146101e857806381e16298146101f0576100ea565b8063344e5e34146100ef5780634a9bd8021461012857806362c067671461015c575b600080fd5b61010c6004803603602081101561010557600080fd5b50356102bc565b604080516001600160a01b039092168252519081900360200190f35b61015a6004803603606081101561013e57600080fd5b506001600160a01b0381351690602081013590604001356102e3565b005b61015a6004803603606081101561017257600080fd5b506001600160a01b03813581169160208101359091169060400135610396565b6101b8600480360360208110156101a857600080fd5b50356001600160a01b031661054d565b604080516001600160a01b039094168452602084019290925282820152519081900360600190f35b61015a610578565b61010c610609565b61015a6004803603602081101561020657600080fd5b50356001600160a01b0316610618565b61010c6107ff565b61022661080e565b604080519115158252519081900360200190f35b61024261081f565b60408051918252519081900360200190f35b61015a610825565b61015a6004803603606081101561027257600080fd5b506001600160a01b0381351690602081013590604001356108a5565b61010c610a24565b61015a600480360360208110156102ac57600080fd5b50356001600160a01b0316610a33565b600481815481106102c957fe5b6000918252602090912001546001600160a01b0316905081565b6102eb61080e565b61032a576040805162461bcd60e51b81526020600482018190526024820152600080516020611fa5833981519152604482015290519081900360640190fd5b6001600160a01b03831661036f5760405162461bcd60e51b81526004018080602001828103825260258152602001806120446025913960400191505060405180910390fd5b6001600160a01b039092166000908152600560205260409020600181019190915560020155565b61039e61080e565b6103dd576040805162461bcd60e51b81526020600482018190526024820152600080516020611fa5833981519152604482015290519081900360640190fd5b6001600160a01b038316610438576040805162461bcd60e51b815260206004820152601f60248201527f43414e4e4f54205452414e5346455220544f205a45524f204144445245535300604482015290519081900360640190fd5b60008111610481576040805162461bcd60e51b815260206004820152601160248201527005452414e5346455220414d4f554e54203607c1b604482015290519081900360640190fd5b816001600160a01b031663a9059cbb84836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156104e157600080fd5b505af11580156104f5573d6000803e3d6000fd5b505050506040513d602081101561050b57600080fd5b50516105485760405162461bcd60e51b815260040180806020018281038252602d8152602001806120d4602d913960400191505060405180910390fd5b505050565b6005602052600090815260409020805460018201546002909201546001600160a01b03909116919083565b61058061080e565b6105bf576040805162461bcd60e51b81526020600482018190526024820152600080516020611fa5833981519152604482015290519081900360640190fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b6003546001600160a01b031681565b6002544210156106595760405162461bcd60e51b81526004018080602001828103825260348152602001806120696034913960400191505060405180910390fd5b6001600160a01b03808216600090815260056020526040902080549091166106b25760405162461bcd60e51b815260040180806020018281038252603781526020018061209d6037913960400191505060405180910390fd5b6001810154156107fb5760018082018054600091829055915483546040805163a9059cbb60e01b81526001600160a01b039283166004820152602481018690529051919092169263a9059cbb92604480820193602093909283900390910190829087803b15801561072257600080fd5b505af1158015610736573d6000803e3d6000fd5b505050506040513d602081101561074c57600080fd5b50516107895760405162461bcd60e51b815260040180806020018281038252603a81526020018061200a603a913960400191505060405180910390fd5b815460028301546040805163246132f960e01b8152600481018590526024810192909252516001600160a01b039092169163246132f99160448082019260009290919082900301818387803b1580156107e157600080fd5b505af11580156107f5573d6000803e3d6000fd5b50505050505b5050565b6000546001600160a01b031690565b6000546001600160a01b0316331490565b60025481565b6004546108635760405162461bcd60e51b8152600401808060200182810382526045815260200180611fc56045913960600191505060405180910390fd5b60005b6004548110156108a25761089a6004828154811061088057fe5b6000918252602090912001546001600160a01b0316610618565b600101610866565b50565b6108ad61080e565b6108ec576040805162461bcd60e51b81526020600482018190526024820152600080516020611fa5833981519152604482015290519081900360640190fd5b6001600160a01b0380841660009081526005602052604090208054909116156109465760405162461bcd60e51b815260040180806020018281038252602f815260200180611f76602f913960400191505060405180910390fd5b60015460035430916001600160a01b0390811691166109636107ff565b60405161096f90610b1e565b6001600160a01b039485168152928416602084015290831660408084019190915292166060820152905190819003608001906000f0801580156109b6573d6000803e3d6000fd5b5081546001600160a01b03199081166001600160a01b039283161783556001808401959095556002909201929092556004805493840181556000527f8a35acfbc15ff81a39ae7d344fd709f28e8600b4aa8c65c6b64bfe7fe36bd19b90920180549092169216919091179055565b6001546001600160a01b031681565b610a3b61080e565b610a7a576040805162461bcd60e51b81526020600482018190526024820152600080516020611fa5833981519152604482015290519081900360640190fd5b6108a2816001600160a01b038116610ac35760405162461bcd60e51b8152600401808060200182810382526026815260200180611f506026913960400191505060405180910390fd5b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61142480610b2c8339019056fe608060405260006003556000600455600060055534801561001f57600080fd5b506040516114243803806114248339818101604052608081101561004257600080fd5b5080516020820151604083015160609093015160018055600280546001600160a01b03199081166001600160a01b0394851617909155600080548216948416949094178455600c8054821695841695909517909455600d80549094169116179091556113709081906100b490396000f3fe608060405234801561001057600080fd5b50600436106101415760003560e01c80637b103999116100b8578063c00007b01161007c578063c00007b0146102e1578063c8f33c9114610307578063cd3daf9d1461030f578063d1af0c7d14610317578063df136d651461031f578063ebe2b12b1461032757610141565b80637b1039991461028657806380faa57d1461028e5780638b876347146102965780638da5cb5b146102bc578063a694fc3a146102c457610141565b80632e1a7d4d1161010a5780632e1a7d4d146101d9578063386a9525146101f65780633fc6df6e146101fe57806362c067671461022257806370a08231146102585780637b0a47ee1461027e57610141565b80628cc262146101465780630700037d1461017e57806318160ddd146101a45780631c1f78eb146101ac578063246132f9146101b4575b600080fd5b61016c6004803603602081101561015c57600080fd5b50356001600160a01b031661032f565b60408051918252519081900360200190f35b61016c6004803603602081101561019457600080fd5b50356001600160a01b03166103c5565b61016c6103d7565b61016c6103de565b6101d7600480360360408110156101ca57600080fd5b50803590602001356103fc565b005b6101d7600480360360208110156101ef57600080fd5b503561064e565b61016c61088d565b610206610893565b604080516001600160a01b039092168252519081900360200190f35b6101d76004803603606081101561023857600080fd5b506001600160a01b038135811691602081013590911690604001356108a2565b61016c6004803603602081101561026e57600080fd5b50356001600160a01b0316610a62565b61016c610a7d565b610206610a83565b61016c610a92565b61016c600480360360208110156102ac57600080fd5b50356001600160a01b0316610aa0565b610206610ab2565b6101d7600480360360208110156102da57600080fd5b5035610ac1565b6101d7600480360360208110156102f757600080fd5b50356001600160a01b0316610cf9565b61016c610e44565b61016c610e4a565b610206610ea4565b61016c610eb3565b61016c610eb9565b6001600160a01b03811660009081526009602090815260408083205460089092528220546103bf91906103b390670de0b6b3a7640000906103a79061038290610376610e4a565b9063ffffffff610ebf16565b6001600160a01b0388166000908152600b60205260409020549063ffffffff610f1c16565b9063ffffffff610f7c16565b9063ffffffff610fe616565b92915050565b60096020526000908152604090205481565b600a545b90565b60006103f7600554600454610f1c90919063ffffffff16565b905090565b6000546001600160a01b031633146104455760405162461bcd60e51b815260040180806020018281038252602a8152602001806112b4602a913960400191505060405180910390fd5b600061044f610e4a565b60075561045a610a92565b6006556001600160a01b038116156104a1576104758161032f565b6001600160a01b0382166000908152600960209081526040808320939093556007546008909152919020555b6104b1824263ffffffff610ebf16565b60055560035442106104d9576005546104d190849063ffffffff610f7c16565b600455610528565b6003546000906104ef904263ffffffff610ebf16565b9050600061050860045483610f1c90919063ffffffff16565b600554909150610522906103a7878463ffffffff610fe616565b60045550505b600254604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561057357600080fd5b505afa158015610587573d6000803e3d6000fd5b505050506040513d602081101561059d57600080fd5b50516005549091506105b690829063ffffffff610f7c16565b600454111561060c576040805162461bcd60e51b815260206004820152601860248201527f50726f76696465642072657761726420746f6f20686967680000000000000000604482015290519081900360640190fd5b4260065560038390556040805185815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a150505050565b6001805481019081905533610661610e4a565b60075561066c610a92565b6006556001600160a01b038116156106b3576106878161032f565b6001600160a01b0382166000908152600960209081526040808320939093556007546008909152919020555b600083116106fc576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b600c546040805163ac2c9c0f60e01b815233600482015290516001600160a01b039092169163ac2c9c0f91602480820192602092909190829003018186803b15801561074757600080fd5b505afa15801561075b573d6000803e3d6000fd5b505050506040513d602081101561077157600080fd5b505115156001146107b35760405162461bcd60e51b81526004018080602001828103825260348152602001806113086034913960400191505060405180910390fd5b600a546107c6908463ffffffff610ebf16565b600a55336000908152600b60205260409020546107e9908463ffffffff610ebf16565b336000818152600b6020908152604091829020939093558051868152905191927f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d592918290030190a2506001548114610889576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b5050565b60055481565b6000546001600160a01b031681565b600d546001600160a01b031633146108f2576040805162461bcd60e51b815260206004820152600e60248201526d494e56414c49442041434345535360901b604482015290519081900360640190fd5b6001600160a01b03831661094d576040805162461bcd60e51b815260206004820152601f60248201527f43414e4e4f54205452414e5346455220544f205a45524f204144445245535300604482015290519081900360640190fd5b60008111610996576040805162461bcd60e51b815260206004820152601160248201527005452414e5346455220414d4f554e54203607c1b604482015290519081900360640190fd5b816001600160a01b031663a9059cbb84836040518363ffffffff1660e01b815260040180836001600160a01b03166001600160a01b0316815260200182815260200192505050602060405180830381600087803b1580156109f657600080fd5b505af1158015610a0a573d6000803e3d6000fd5b505050506040513d6020811015610a2057600080fd5b5051610a5d5760405162461bcd60e51b815260040180806020018281038252602b815260200180611289602b913960400191505060405180910390fd5b505050565b6001600160a01b03166000908152600b602052604090205490565b60045481565b600c546001600160a01b031681565b60006103f742600354611040565b60086020526000908152604090205481565b600d546001600160a01b031681565b6001805481019081905533610ad4610e4a565b600755610adf610a92565b6006556001600160a01b03811615610b2657610afa8161032f565b6001600160a01b0382166000908152600960209081526040808320939093556007546008909152919020555b60008311610b6c576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b600c546040805163ac2c9c0f60e01b815233600482015290516001600160a01b039092169163ac2c9c0f91602480820192602092909190829003018186803b158015610bb757600080fd5b505afa158015610bcb573d6000803e3d6000fd5b505050506040513d6020811015610be157600080fd5b50511515600114610c235760405162461bcd60e51b81526004018080602001828103825260348152602001806113086034913960400191505060405180910390fd5b600a54610c36908463ffffffff610fe616565b600a55336000908152600b6020526040902054610c59908463ffffffff610fe616565b336000818152600b6020908152604091829020939093558051868152905191927f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d92918290030190a2506001548114610889576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b6001805481019081905581610d0c610e4a565b600755610d17610a92565b6006556001600160a01b03811615610d5e57610d328161032f565b6001600160a01b0382166000908152600960209081526040808320939093556007546008909152919020555b6001600160a01b0383166000908152600960205260409020548015610dec576001600160a01b03808516600090815260096020526040812055600254610dac9116858363ffffffff61105616565b6040805182815290516001600160a01b038616917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a25b50506001548114610889576040805162461bcd60e51b815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604482015290519081900360640190fd5b60065481565b6000600a5460001415610e6057506007546103db565b6103f7610e95600a546103a7670de0b6b3a7640000610e89600454610e89600654610376610a92565b9063ffffffff610f1c16565b6007549063ffffffff610fe616565b6002546001600160a01b031681565b60075481565b60035481565b600082821115610f16576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b600082610f2b575060006103bf565b82820282848281610f3857fe5b0414610f755760405162461bcd60e51b81526004018080602001828103825260218152602001806112686021913960400191505060405180910390fd5b9392505050565b6000808211610fd2576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b6000828481610fdd57fe5b04949350505050565b600082820183811015610f75576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b600081831061104f5781610f75565b5090919050565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610a5d9084906110b5826001600160a01b0316611261565b611106576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106111445780518252601f199092019160209182019101611125565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146111a6576040519150601f19603f3d011682016040523d82523d6000602084013e6111ab565b606091505b509150915081611202576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561125b5780806020019051602081101561121e57600080fd5b505161125b5760405162461bcd60e51b815260040180806020018281038252602a8152602001806112de602a913960400191505060405180910390fd5b50505050565b3b15159056fe536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f774c656e64696e67446973747275627574696f6e3a3a73776565703a207472616e73666572206661696c656443616c6c6572206973206e6f742052657761726473446973747269627574696f6e20636f6e74726163745361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564496e76616c6964204163636573733a2043616e206f6e6c7920626520616363657373656420627920455448412077616c6c657473a265627a7a72315820f54aaa10649140fd6eb6cb90f580e807eabc733821b59a6fa67db8019fcf508864736f6c634300051100324f776e61626c653a206e6577206f776e657220697320746865207a65726f20616464726573735374616b696e6752657761726473466163746f72793a3a6465706c6f793a20616c7265616479206465706c6f7965644f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725374616b696e6752657761726473466163746f72793a3a6e6f74696679526577617264416d6f756e74733a2063616c6c6564206265666f726520616e79206465706c6f79735374616b696e6752657761726473466163746f72793a3a6e6f74696679526577617264416d6f756e743a207472616e73666572206661696c65647374616b696e6720746f6b656e642063616e6e6f74206265207a65726f20616464726573735374616b696e6752657761726473466163746f72793a3a6e6f74696679526577617264416d6f756e743a206e6f742072656164795374616b696e6752657761726473466163746f72793a3a6e6f74696679526577617264416d6f756e743a206e6f74206465706c6f7965645374616b696e6752657761726473466163746f72793a3a73776565703a207472616e73666572206661696c6564a265627a7a72315820ccc00abea198500ef24cba206c63e66a7315bfd558ecd94510b7a16de4f995c664736f6c634300051100327265776172647320746f6b656e642063616e6e6f74206265207a65726f20616464726573735374616b696e6752657761726473466163746f72793a3a636f6e7374727563746f723a2067656e6573697320746f6f20736f6f6e00000000000000000000000059e9261255644c411afdd00bd89162d09d862e380000000000000000000000000000000000000000000000000000000060f0408e000000000000000000000000583b965462e11da63d1d4bc6d2d43d391f79af1f
Age | Block | Fee Address | BC Fee Address | Voting Power | Jailed | Incoming |
---|
Make sure to use the "Vote Down" button for any spammy posts, and the "Vote Up" for interesting conversations.