Source Code
Latest 9 from a total of 9 transactions
| Transaction Hash |
|
Block
|
From
|
To
|
|||||
|---|---|---|---|---|---|---|---|---|---|
| Claim Reward | 21923023 | 193 days ago | IN | 0 ETH | 0.00000001 | ||||
| Claim Reward | 9345321 | 484 days ago | IN | 0 ETH | 0.00000011 | ||||
| Claim Reward | 7703009 | 522 days ago | IN | 0 ETH | 0.00000112 | ||||
| Claim Reward | 7702986 | 522 days ago | IN | 0 ETH | 0.00000097 | ||||
| Claim Reward | 7444336 | 528 days ago | IN | 0 ETH | 0.00000008 | ||||
| Claim Reward | 6490225 | 550 days ago | IN | 0 ETH | 0 | ||||
| Claim Reward | 6118846 | 559 days ago | IN | 0 ETH | 0.00000038 | ||||
| Claim Reward | 5548016 | 572 days ago | IN | 0 ETH | 0.00000009 | ||||
| Nominate New Own... | 5074750 | 583 days ago | IN | 0 ETH | 0.00001746 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Cross-Chain Transactions
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xbc4f76A9...3D75015eb The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
StakingRewards
Compiler Version
v0.5.16+commit.9c3226ce
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
pragma solidity ^0.5.16;
import "openzeppelin-solidity-2.3.0/contracts/math/SafeMath.sol";
import "openzeppelin-solidity-2.3.0/contracts/token/ERC20/IERC20.sol";
import "openzeppelin-solidity-2.3.0/contracts/token/ERC20/SafeERC20.sol";
import "openzeppelin-solidity-2.3.0/contracts/utils/ReentrancyGuard.sol";
// Inheritance
import "./interfaces/IBlast.sol";
import "./interfaces/IStakingRewards.sol";
import "./Pausable.sol";
// https://docs.synthetix.io/contracts/source/contracts/stakingrewards
contract StakingRewards is IStakingRewards, ReentrancyGuard, Pausable {
IBlast public constant BLAST = IBlast(0x4300000000000000000000000000000000000002);
using SafeMath for uint256;
using SafeERC20 for IERC20;
/* ========== STATE VARIABLES ========== */
address public helper;
IERC20 public rewardsToken;
uint256 public periodFinish = 0;
uint256 public rewardRate = 0;
uint256 public rewardsDuration = 180 days;
uint256 public lastUpdateTime;
uint256 public rewardPerTokenStored;
mapping(address => uint256) public userRewardPerTokenPaid;
mapping(address => uint256) public rewards;
uint256 private _totalSupply;
mapping(address => uint256) private _balances;
/* ========== CONSTRUCTOR ========== */
constructor(
address _owner,
address _rewardsToken,
address _helper
) public Owned(_owner) {
rewardsToken = IERC20(_rewardsToken);
helper = _helper;
BLAST.configureClaimableGas();
}
/* ========== 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 block.timestamp < periodFinish ? 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);
}
/* ========== MUTATIVE FUNCTIONS ========== */
function stake(address account, uint256 amount) external nonReentrant notPaused updateReward(account) onlyHelper {
require(amount > 0, "Cannot stake 0");
_totalSupply = _totalSupply.add(amount);
_balances[account] = _balances[account].add(amount);
emit Staked(account, amount);
}
function withdraw(address account, uint256 amount) public nonReentrant updateReward(account) onlyHelper {
require(amount > 0, "Cannot withdraw 0");
_totalSupply = _totalSupply.sub(amount);
_balances[account] = _balances[account].sub(amount);
emit Withdrawn(account, amount);
}
function getReward(address account) public nonReentrant onlyHelper {
_claimReward(account);
}
function claimReward() public nonReentrant {
_claimReward(msg.sender);
}
/* ========== RESTRICTED FUNCTIONS ========== */
function notifyRewardAmount(uint256 reward) external onlyOwner updateReward(address(0)) {
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.
uint balance = rewardsToken.balanceOf(address(this));
require(rewardRate <= balance.div(rewardsDuration), "Provided reward too high");
lastUpdateTime = block.timestamp;
periodFinish = block.timestamp.add(rewardsDuration);
emit RewardAdded(reward);
}
// Added to support recovering LP Rewards from other systems such as BAL to be distributed to holders
function recoverERC20(address tokenAddress, uint256 tokenAmount) external onlyOwner {
IERC20(tokenAddress).safeTransfer(owner, tokenAmount);
emit Recovered(tokenAddress, tokenAmount);
}
function setRewardsDuration(uint256 _rewardsDuration) external onlyOwner {
require(
block.timestamp > periodFinish,
"Previous rewards period must be complete before changing the duration for the new period"
);
rewardsDuration = _rewardsDuration;
emit RewardsDurationUpdated(rewardsDuration);
}
function claimAllGas() external onlyOwner {
BLAST.claimAllGas(address(this), owner);
}
/* ========== INTERNAL FUNCTIONS ========== */
function _claimReward(address account) internal updateReward(account) {
uint256 reward = rewards[account];
if (reward > 0) {
rewards[account] = 0;
rewardsToken.safeTransfer(account, reward);
emit RewardPaid(account, reward);
}
}
/* ========== MODIFIERS ========== */
modifier updateReward(address account) {
rewardPerTokenStored = rewardPerToken();
lastUpdateTime = lastTimeRewardApplicable();
if (account != address(0)) {
rewards[account] = earned(account);
userRewardPerTokenPaid[account] = rewardPerTokenStored;
}
_;
}
modifier onlyHelper() {
require(msg.sender == helper, "Caller is not the helper");
_;
}
/* ========== 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);
event RewardsDurationUpdated(uint256 newDuration);
event Recovered(address token, uint256 amount);
}pragma solidity ^0.5.16;
interface IBlast {
// Note: the full interface for IBlast can be found below
function configureClaimableGas() external;
function claimAllGas(address contractAddress, address recipient) external returns (uint256);
}pragma solidity ^0.5.16;
// https://docs.synthetix.io/contracts/source/interfaces/istakingrewards
interface IStakingRewards {
// Views
function balanceOf(address account) external view returns (uint256);
function earned(address account) external view returns (uint256);
function getRewardForDuration() external view returns (uint256);
function lastTimeRewardApplicable() external view returns (uint256);
function rewardPerToken() external view returns (uint256);
function rewardsToken() external view returns (address);
function totalSupply() external view returns (uint256);
// Mutative
function getReward(address account) external;
function stake(address account, uint256 amount) external;
function withdraw(address account, uint256 amount) external;
}pragma solidity ^0.5.16;
// https://docs.synthetix.io/contracts/source/contracts/owned
contract Owned {
address public owner;
address public nominatedOwner;
constructor(address _owner) public {
require(_owner != address(0), "Owner address cannot be 0");
owner = _owner;
emit OwnerChanged(address(0), _owner);
}
function nominateNewOwner(address _owner) external onlyOwner {
nominatedOwner = _owner;
emit OwnerNominated(_owner);
}
function acceptOwnership() external {
require(msg.sender == nominatedOwner, "You must be nominated before you can accept ownership");
emit OwnerChanged(owner, nominatedOwner);
owner = nominatedOwner;
nominatedOwner = address(0);
}
modifier onlyOwner {
_onlyOwner();
_;
}
function _onlyOwner() private view {
require(msg.sender == owner, "Only the contract owner may perform this action");
}
event OwnerNominated(address newOwner);
event OwnerChanged(address oldOwner, address newOwner);
}pragma solidity ^0.5.16;
// Inheritance
import "./Owned.sol";
// https://docs.synthetix.io/contracts/source/contracts/pausable
contract Pausable is Owned {
uint public lastPauseTime;
bool public paused;
constructor() internal {
// This contract is abstract, and thus cannot be instantiated directly
require(owner != address(0), "Owner must be set");
// Paused will be false, and lastPauseTime will be 0 upon initialisation
}
/**
* @notice Change the paused state of the contract
* @dev Only the contract owner may call this.
*/
function setPaused(bool _paused) external onlyOwner {
// Ensure we're actually changing the state before we do anything
if (_paused == paused) {
return;
}
// Set our paused state.
paused = _paused;
// If applicable, set the last pause time.
if (paused) {
lastPauseTime = now;
}
// Let everyone know that our pause state has changed.
emit PauseChanged(paused);
}
event PauseChanged(bool isPaused);
modifier notPaused {
require(!paused, "This action cannot be performed while the contract is paused");
_;
}
}pragma solidity ^0.5.0;
/**
* @dev Wrappers over Solidity's arithmetic operations with added overflow
* checks.
*
* Arithmetic operations in Solidity wrap on overflow. This can easily result
* in bugs, because programmers usually assume that an overflow raises an
* error, which is the standard behavior in high level programming languages.
* `SafeMath` restores this intuition by reverting the transaction when an
* operation overflows.
*
* Using this library instead of the unchecked operations eliminates an entire
* class of bugs, so it's recommended to use it always.
*/
library SafeMath {
/**
* @dev Returns the addition of two unsigned integers, 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;
}
}pragma solidity ^0.5.0;
/**
* @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);
}pragma solidity ^0.5.0;
import "./IERC20.sol";
import "../../math/SafeMath.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 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");
}
}
}pragma solidity ^0.5.0;
/**
* @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;
}
}pragma solidity ^0.5.0;
/**
* @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");
}
}{
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_rewardsToken","type":"address"},{"internalType":"address","name":"_helper","type":"address"}],"payable":false,"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"oldOwner","type":"address"},{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnerNominated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"bool","name":"isPaused","type":"bool"}],"name":"PauseChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"token","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Recovered","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","type":"address"},{"indexed":false,"internalType":"uint256","name":"reward","type":"uint256"}],"name":"RewardPaid","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"newDuration","type":"uint256"}],"name":"RewardsDurationUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"user","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":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"constant":true,"inputs":[],"name":"BLAST","outputs":[{"internalType":"contract IBlast","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"acceptOwnership","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[],"name":"claimAllGas","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[],"name":"claimReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"earned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getReward","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"getRewardForDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"helper","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastPauseTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastTimeRewardApplicable","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"lastUpdateTime","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"_owner","type":"address"}],"name":"nominateNewOwner","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"nominatedOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"reward","type":"uint256"}],"name":"notifyRewardAmount","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":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"}],"name":"recoverERC20","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardPerTokenStored","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"rewards","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardsDuration","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[],"name":"rewardsToken","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"bool","name":"_paused","type":"bool"}],"name":"setPaused","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"uint256","name":"_rewardsDuration","type":"uint256"}],"name":"setRewardsDuration","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"stake","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":true,"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"userRewardPerTokenPaid","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"payable":false,"stateMutability":"view","type":"function"},{"constant":false,"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"payable":false,"stateMutability":"nonpayable","type":"function"}]Contract Creation Code
0x60806040526000600655600060075562ed4e0060085534801561002157600080fd5b506040516119253803806119258339818101604052606081101561004457600080fd5b50805160208201516040909201516001600055909190826001600160a01b0381166100b6576040805162461bcd60e51b815260206004820152601960248201527f4f776e657220616464726573732063616e6e6f74206265203000000000000000604482015290519081900360640190fd5b600180546001600160a01b0319166001600160a01b0383169081179091556040805160008152602081019290925280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a1506001546001600160a01b0316610162576040805162461bcd60e51b815260206004820152601160248201527013dddb995c881b5d5cdd081899481cd95d607a1b604482015290519081900360640190fd5b600580546001600160a01b0319166001600160a01b038481169190911790915560048054610100600160a81b0319166101009284169290920291909117815560408051634e606c4760e01b8152905173430000000000000000000000000000000000000292634e606c479280820192600092909182900301818387803b1580156101eb57600080fd5b505af11580156101ff573d6000803e3d6000fd5b50505050505050611710806102156000396000f3fe608060405234801561001057600080fd5b50600436106101e45760003560e01c806380faa57d1161010f578063c00007b0116100a2578063d1af0c7d11610071578063d1af0c7d14610442578063df136d651461044a578063ebe2b12b14610452578063f3fef3a31461045a576101e4565b8063c00007b0146103ef578063c8f33c9114610415578063cc1a378f1461041d578063cd3daf9d1461043a576101e4565b806391b4ded9116100de57806391b4ded9146103ab57806397d75776146103b3578063adc9772e146103bb578063b88a802f146103e7576101e4565b806380faa57d146103495780638980f11f146103515780638b8763471461037d5780638da5cb5b146103a3576101e4565b80633c6b16ab11610187578063645dd1fa11610156578063645dd1fa1461030b57806370a082311461031357806379ba5097146103395780637b0a47ee14610341576101e4565b80633c6b16ab146102a657806353a47bb7146102c35780635c975abb146102e757806363b0e66a14610303576101e4565b806316c38b3c116101c357806316c38b3c1461026f57806318160ddd1461028e5780631c1f78eb14610296578063386a95251461029e576101e4565b80628cc262146101e95780630700037d146102215780631627540c14610247575b600080fd5b61020f600480360360208110156101ff57600080fd5b50356001600160a01b0316610486565b60408051918252519081900360200190f35b61020f6004803603602081101561023757600080fd5b50356001600160a01b031661051c565b61026d6004803603602081101561025d57600080fd5b50356001600160a01b031661052e565b005b61026d6004803603602081101561028557600080fd5b5035151561058a565b61020f610604565b61020f61060b565b61020f610629565b61026d600480360360208110156102bc57600080fd5b503561062f565b6102cb61083f565b604080516001600160a01b039092168252519081900360200190f35b6102ef61084e565b604080519115158252519081900360200190f35b6102cb610857565b61026d61086b565b61020f6004803603602081101561032957600080fd5b50356001600160a01b03166108f9565b61026d610914565b61020f6109d0565b61020f6109d6565b61026d6004803603604081101561036757600080fd5b506001600160a01b0381351690602001356109ee565b61020f6004803603602081101561039357600080fd5b50356001600160a01b0316610a5e565b6102cb610a70565b61020f610a7f565b6102cb610a85565b61026d600480360360408110156103d157600080fd5b506001600160a01b038135169060200135610a90565b61026d610cb8565b61026d6004803603602081101561040557600080fd5b50356001600160a01b0316610d10565b61020f610dc7565b61026d6004803603602081101561043357600080fd5b5035610dcd565b61020f610e50565b6102cb610eaa565b61020f610eb9565b61020f610ebf565b61026d6004803603604081101561047057600080fd5b506001600160a01b038135169060200135610ec5565b6001600160a01b0381166000908152600c6020908152604080832054600b909252822054610516919061050a90670de0b6b3a7640000906104fe906104d9906104cd610e50565b9063ffffffff6110a916565b6001600160a01b0388166000908152600e60205260409020549063ffffffff61110616565b9063ffffffff61116616565b9063ffffffff6111d016565b92915050565b600c6020526000908152604090205481565b61053661122a565b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229181900360200190a150565b61059261122a565b60045460ff16151581151514156105a857610601565b6004805460ff1916821515179081905560ff16156105c557426003555b6004546040805160ff90921615158252517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59181900360200190a15b50565b600d545b90565b600061062460085460075461110690919063ffffffff16565b905090565b60085481565b61063761122a565b6000610641610e50565b600a5561064c6109d6565b6009556001600160a01b038116156106935761066781610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60065442106106b8576008546106b090839063ffffffff61116616565b600755610707565b6006546000906106ce904263ffffffff6110a916565b905060006106e76007548361110690919063ffffffff16565b600854909150610701906104fe868463ffffffff6111d016565b60075550505b600554604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561075257600080fd5b505afa158015610766573d6000803e3d6000fd5b505050506040513d602081101561077c57600080fd5b505160085490915061079590829063ffffffff61116616565b60075411156107eb576040805162461bcd60e51b815260206004820152601860248201527f50726f76696465642072657761726420746f6f20686967680000000000000000604482015290519081900360640190fd5b426009819055600854610804919063ffffffff6111d016565b6006556040805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1505050565b6002546001600160a01b031681565b60045460ff1681565b60045461010090046001600160a01b031681565b61087361122a565b60015460408051634aa7d2f760e11b81523060048201526001600160a01b039092166024830152516002604360981b019163954fa5ee9160448083019260209291908290030181600087803b1580156108cb57600080fd5b505af11580156108df573d6000803e3d6000fd5b505050506040513d60208110156108f557600080fd5b5050565b6001600160a01b03166000908152600e602052604090205490565b6002546001600160a01b0316331461095d5760405162461bcd60e51b81526004018080602001828103825260358152602001806115f16035913960400191505060405180910390fd5b600154600254604080516001600160a01b03938416815292909116602083015280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a160028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b60075481565b600060065442106109e957600654610624565b504290565b6109f661122a565b600154610a16906001600160a01b0384811691168363ffffffff61127516565b604080516001600160a01b03841681526020810183905281517f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa28929181900390910190a15050565b600b6020526000908152604090205481565b6001546001600160a01b031681565b60035481565b6002604360981b0181565b600080546001019081905560045460ff1615610add5760405162461bcd60e51b815260040180806020018281038252603c815260200180611676603c913960400191505060405180910390fd5b82610ae6610e50565b600a55610af16109d6565b6009556001600160a01b03811615610b3857610b0c81610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60045461010090046001600160a01b03163314610b97576040805162461bcd60e51b815260206004820152601860248201527721b0b63632b91034b9903737ba103a3432903432b63832b960411b604482015290519081900360640190fd5b60008311610bdd576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b600d54610bf0908463ffffffff6111d016565b600d556001600160a01b0384166000908152600e6020526040902054610c1c908463ffffffff6111d016565b6001600160a01b0385166000818152600e6020908152604091829020939093558051868152905191927f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d92918290030190a2506000548114610cb3576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b505050565b6000805460010190819055610ccc336112c7565b6000548114610601576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b600080546001019081905560045461010090046001600160a01b03163314610d7a576040805162461bcd60e51b815260206004820152601860248201527721b0b63632b91034b9903737ba103a3432903432b63832b960411b604482015290519081900360640190fd5b610d83826112c7565b60005481146108f5576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b60095481565b610dd561122a565b6006544211610e155760405162461bcd60e51b81526004018080602001828103825260588152602001806115796058913960600191505060405180910390fd5b60088190556040805182815290517ffb46ca5a5e06d4540d6387b930a7c978bce0db5f449ec6b3f5d07c6e1d44f2d39181900360200190a150565b6000600d5460001415610e665750600a54610608565b610624610e9b600d546104fe670de0b6b3a7640000610e8f600754610e8f6009546104cd6109d6565b9063ffffffff61110616565b600a549063ffffffff6111d016565b6005546001600160a01b031681565b600a5481565b60065481565b600080546001019081905582610ed9610e50565b600a55610ee46109d6565b6009556001600160a01b03811615610f2b57610eff81610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60045461010090046001600160a01b03163314610f8a576040805162461bcd60e51b815260206004820152601860248201527721b0b63632b91034b9903737ba103a3432903432b63832b960411b604482015290519081900360640190fd5b60008311610fd3576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b600d54610fe6908463ffffffff6110a916565b600d556001600160a01b0384166000908152600e6020526040902054611012908463ffffffff6110a916565b6001600160a01b0385166000818152600e6020908152604091829020939093558051868152905191927f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d592918290030190a2506000548114610cb3576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b600082821115611100576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008261111557506000610516565b8282028284828161112257fe5b041461115f5760405162461bcd60e51b81526004018080602001828103825260218152602001806116556021913960400191505060405180910390fd5b9392505050565b60008082116111bc576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b60008284816111c757fe5b04949350505050565b60008282018381101561115f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546001600160a01b031633146112735760405162461bcd60e51b815260040180806020018281038252602f815260200180611626602f913960400191505060405180910390fd5b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cb39084906113b4565b806112d0610e50565b600a556112db6109d6565b6009556001600160a01b03811615611322576112f681610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b6001600160a01b0382166000908152600c60205260409020548015610cb3576001600160a01b038084166000908152600c60205260408120556005546113709116848363ffffffff61127516565b6040805182815290516001600160a01b038516917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a2505050565b6113c6826001600160a01b0316611572565b611417576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106114555780518252601f199092019160209182019101611436565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146114b7576040519150601f19603f3d011682016040523d82523d6000602084013e6114bc565b606091505b509150915081611513576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561156c5780806020019051602081101561152f57600080fd5b505161156c5760405162461bcd60e51b815260040180806020018281038252602a8152602001806116b2602a913960400191505060405180910390fd5b50505050565b3b15159056fe50726576696f7573207265776172647320706572696f64206d75737420626520636f6d706c657465206265666f7265206368616e67696e6720746865206475726174696f6e20666f7220746865206e657720706572696f645265656e7472616e637947756172643a207265656e7472616e742063616c6c00596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869704f6e6c792074686520636f6e7472616374206f776e6572206d617920706572666f726d207468697320616374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775468697320616374696f6e2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e7472616374206973207061757365645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820ee3d9006277c03e9dd5ffa23dbe4fb6683d8738a73dd4a82fb53dd0367b0cc5964736f6c63430005100032000000000000000000000000f11c4dfa70f43564311e34e5f8fc6b1738f6c2d6000000000000000000000000dc60c24de182b07cb3f3a9269f120d8c15c4b38100000000000000000000000052b438b2fee2adeef6d4146095ace07772c1ed0a
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101e45760003560e01c806380faa57d1161010f578063c00007b0116100a2578063d1af0c7d11610071578063d1af0c7d14610442578063df136d651461044a578063ebe2b12b14610452578063f3fef3a31461045a576101e4565b8063c00007b0146103ef578063c8f33c9114610415578063cc1a378f1461041d578063cd3daf9d1461043a576101e4565b806391b4ded9116100de57806391b4ded9146103ab57806397d75776146103b3578063adc9772e146103bb578063b88a802f146103e7576101e4565b806380faa57d146103495780638980f11f146103515780638b8763471461037d5780638da5cb5b146103a3576101e4565b80633c6b16ab11610187578063645dd1fa11610156578063645dd1fa1461030b57806370a082311461031357806379ba5097146103395780637b0a47ee14610341576101e4565b80633c6b16ab146102a657806353a47bb7146102c35780635c975abb146102e757806363b0e66a14610303576101e4565b806316c38b3c116101c357806316c38b3c1461026f57806318160ddd1461028e5780631c1f78eb14610296578063386a95251461029e576101e4565b80628cc262146101e95780630700037d146102215780631627540c14610247575b600080fd5b61020f600480360360208110156101ff57600080fd5b50356001600160a01b0316610486565b60408051918252519081900360200190f35b61020f6004803603602081101561023757600080fd5b50356001600160a01b031661051c565b61026d6004803603602081101561025d57600080fd5b50356001600160a01b031661052e565b005b61026d6004803603602081101561028557600080fd5b5035151561058a565b61020f610604565b61020f61060b565b61020f610629565b61026d600480360360208110156102bc57600080fd5b503561062f565b6102cb61083f565b604080516001600160a01b039092168252519081900360200190f35b6102ef61084e565b604080519115158252519081900360200190f35b6102cb610857565b61026d61086b565b61020f6004803603602081101561032957600080fd5b50356001600160a01b03166108f9565b61026d610914565b61020f6109d0565b61020f6109d6565b61026d6004803603604081101561036757600080fd5b506001600160a01b0381351690602001356109ee565b61020f6004803603602081101561039357600080fd5b50356001600160a01b0316610a5e565b6102cb610a70565b61020f610a7f565b6102cb610a85565b61026d600480360360408110156103d157600080fd5b506001600160a01b038135169060200135610a90565b61026d610cb8565b61026d6004803603602081101561040557600080fd5b50356001600160a01b0316610d10565b61020f610dc7565b61026d6004803603602081101561043357600080fd5b5035610dcd565b61020f610e50565b6102cb610eaa565b61020f610eb9565b61020f610ebf565b61026d6004803603604081101561047057600080fd5b506001600160a01b038135169060200135610ec5565b6001600160a01b0381166000908152600c6020908152604080832054600b909252822054610516919061050a90670de0b6b3a7640000906104fe906104d9906104cd610e50565b9063ffffffff6110a916565b6001600160a01b0388166000908152600e60205260409020549063ffffffff61110616565b9063ffffffff61116616565b9063ffffffff6111d016565b92915050565b600c6020526000908152604090205481565b61053661122a565b600280546001600160a01b0383166001600160a01b0319909116811790915560408051918252517f906a1c6bd7e3091ea86693dd029a831c19049ce77f1dce2ce0bab1cacbabce229181900360200190a150565b61059261122a565b60045460ff16151581151514156105a857610601565b6004805460ff1916821515179081905560ff16156105c557426003555b6004546040805160ff90921615158252517f8fb6c181ee25a520cf3dd6565006ef91229fcfe5a989566c2a3b8c115570cec59181900360200190a15b50565b600d545b90565b600061062460085460075461110690919063ffffffff16565b905090565b60085481565b61063761122a565b6000610641610e50565b600a5561064c6109d6565b6009556001600160a01b038116156106935761066781610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60065442106106b8576008546106b090839063ffffffff61116616565b600755610707565b6006546000906106ce904263ffffffff6110a916565b905060006106e76007548361110690919063ffffffff16565b600854909150610701906104fe868463ffffffff6111d016565b60075550505b600554604080516370a0823160e01b815230600482015290516000926001600160a01b0316916370a08231916024808301926020929190829003018186803b15801561075257600080fd5b505afa158015610766573d6000803e3d6000fd5b505050506040513d602081101561077c57600080fd5b505160085490915061079590829063ffffffff61116616565b60075411156107eb576040805162461bcd60e51b815260206004820152601860248201527f50726f76696465642072657761726420746f6f20686967680000000000000000604482015290519081900360640190fd5b426009819055600854610804919063ffffffff6111d016565b6006556040805184815290517fde88a922e0d3b88b24e9623efeb464919c6bf9f66857a65e2bfcf2ce87a9433d9181900360200190a1505050565b6002546001600160a01b031681565b60045460ff1681565b60045461010090046001600160a01b031681565b61087361122a565b60015460408051634aa7d2f760e11b81523060048201526001600160a01b039092166024830152516002604360981b019163954fa5ee9160448083019260209291908290030181600087803b1580156108cb57600080fd5b505af11580156108df573d6000803e3d6000fd5b505050506040513d60208110156108f557600080fd5b5050565b6001600160a01b03166000908152600e602052604090205490565b6002546001600160a01b0316331461095d5760405162461bcd60e51b81526004018080602001828103825260358152602001806115f16035913960400191505060405180910390fd5b600154600254604080516001600160a01b03938416815292909116602083015280517fb532073b38c83145e3e5135377a08bf9aab55bc0fd7c1179cd4fb995d2a5159c9281900390910190a160028054600180546001600160a01b03199081166001600160a01b03841617909155169055565b60075481565b600060065442106109e957600654610624565b504290565b6109f661122a565b600154610a16906001600160a01b0384811691168363ffffffff61127516565b604080516001600160a01b03841681526020810183905281517f8c1256b8896378cd5044f80c202f9772b9d77dc85c8a6eb51967210b09bfaa28929181900390910190a15050565b600b6020526000908152604090205481565b6001546001600160a01b031681565b60035481565b6002604360981b0181565b600080546001019081905560045460ff1615610add5760405162461bcd60e51b815260040180806020018281038252603c815260200180611676603c913960400191505060405180910390fd5b82610ae6610e50565b600a55610af16109d6565b6009556001600160a01b03811615610b3857610b0c81610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60045461010090046001600160a01b03163314610b97576040805162461bcd60e51b815260206004820152601860248201527721b0b63632b91034b9903737ba103a3432903432b63832b960411b604482015290519081900360640190fd5b60008311610bdd576040805162461bcd60e51b815260206004820152600e60248201526d043616e6e6f74207374616b6520360941b604482015290519081900360640190fd5b600d54610bf0908463ffffffff6111d016565b600d556001600160a01b0384166000908152600e6020526040902054610c1c908463ffffffff6111d016565b6001600160a01b0385166000818152600e6020908152604091829020939093558051868152905191927f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d92918290030190a2506000548114610cb3576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b505050565b6000805460010190819055610ccc336112c7565b6000548114610601576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b600080546001019081905560045461010090046001600160a01b03163314610d7a576040805162461bcd60e51b815260206004820152601860248201527721b0b63632b91034b9903737ba103a3432903432b63832b960411b604482015290519081900360640190fd5b610d83826112c7565b60005481146108f5576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b60095481565b610dd561122a565b6006544211610e155760405162461bcd60e51b81526004018080602001828103825260588152602001806115796058913960600191505060405180910390fd5b60088190556040805182815290517ffb46ca5a5e06d4540d6387b930a7c978bce0db5f449ec6b3f5d07c6e1d44f2d39181900360200190a150565b6000600d5460001415610e665750600a54610608565b610624610e9b600d546104fe670de0b6b3a7640000610e8f600754610e8f6009546104cd6109d6565b9063ffffffff61110616565b600a549063ffffffff6111d016565b6005546001600160a01b031681565b600a5481565b60065481565b600080546001019081905582610ed9610e50565b600a55610ee46109d6565b6009556001600160a01b03811615610f2b57610eff81610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b60045461010090046001600160a01b03163314610f8a576040805162461bcd60e51b815260206004820152601860248201527721b0b63632b91034b9903737ba103a3432903432b63832b960411b604482015290519081900360640190fd5b60008311610fd3576040805162461bcd60e51b8152602060048201526011602482015270043616e6e6f74207769746864726177203607c1b604482015290519081900360640190fd5b600d54610fe6908463ffffffff6110a916565b600d556001600160a01b0384166000908152600e6020526040902054611012908463ffffffff6110a916565b6001600160a01b0385166000818152600e6020908152604091829020939093558051868152905191927f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d592918290030190a2506000548114610cb3576040805162461bcd60e51b815260206004820152601f60248201526000805160206115d1833981519152604482015290519081900360640190fd5b600082821115611100576040805162461bcd60e51b815260206004820152601e60248201527f536166654d6174683a207375627472616374696f6e206f766572666c6f770000604482015290519081900360640190fd5b50900390565b60008261111557506000610516565b8282028284828161112257fe5b041461115f5760405162461bcd60e51b81526004018080602001828103825260218152602001806116556021913960400191505060405180910390fd5b9392505050565b60008082116111bc576040805162461bcd60e51b815260206004820152601a60248201527f536166654d6174683a206469766973696f6e206279207a65726f000000000000604482015290519081900360640190fd5b60008284816111c757fe5b04949350505050565b60008282018381101561115f576040805162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f770000000000604482015290519081900360640190fd5b6001546001600160a01b031633146112735760405162461bcd60e51b815260040180806020018281038252602f815260200180611626602f913960400191505060405180910390fd5b565b604080516001600160a01b038416602482015260448082018490528251808303909101815260649091019091526020810180516001600160e01b031663a9059cbb60e01b179052610cb39084906113b4565b806112d0610e50565b600a556112db6109d6565b6009556001600160a01b03811615611322576112f681610486565b6001600160a01b0382166000908152600c6020908152604080832093909355600a54600b909152919020555b6001600160a01b0382166000908152600c60205260409020548015610cb3576001600160a01b038084166000908152600c60205260408120556005546113709116848363ffffffff61127516565b6040805182815290516001600160a01b038516917fe2403640ba68fed3a2f88b7557551d1993f84b99bb10ff833f0cf8db0c5e0486919081900360200190a2505050565b6113c6826001600160a01b0316611572565b611417576040805162461bcd60e51b815260206004820152601f60248201527f5361666545524332303a2063616c6c20746f206e6f6e2d636f6e747261637400604482015290519081900360640190fd5b60006060836001600160a01b0316836040518082805190602001908083835b602083106114555780518252601f199092019160209182019101611436565b6001836020036101000a0380198251168184511680821785525050505050509050019150506000604051808303816000865af19150503d80600081146114b7576040519150601f19603f3d011682016040523d82523d6000602084013e6114bc565b606091505b509150915081611513576040805162461bcd60e51b815260206004820181905260248201527f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564604482015290519081900360640190fd5b80511561156c5780806020019051602081101561152f57600080fd5b505161156c5760405162461bcd60e51b815260040180806020018281038252602a8152602001806116b2602a913960400191505060405180910390fd5b50505050565b3b15159056fe50726576696f7573207265776172647320706572696f64206d75737420626520636f6d706c657465206265666f7265206368616e67696e6720746865206475726174696f6e20666f7220746865206e657720706572696f645265656e7472616e637947756172643a207265656e7472616e742063616c6c00596f75206d757374206265206e6f6d696e61746564206265666f726520796f752063616e20616363657074206f776e6572736869704f6e6c792074686520636f6e7472616374206f776e6572206d617920706572666f726d207468697320616374696f6e536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f775468697320616374696f6e2063616e6e6f7420626520706572666f726d6564207768696c652074686520636f6e7472616374206973207061757365645361666545524332303a204552433230206f7065726174696f6e20646964206e6f742073756363656564a265627a7a72315820ee3d9006277c03e9dd5ffa23dbe4fb6683d8738a73dd4a82fb53dd0367b0cc5964736f6c63430005100032
Loading...
Loading
Loading...
Loading
Loading...
Loading
Net Worth in USD
$0.00
Net Worth in ETH
0
Multichain Portfolio | 35 Chains
| Chain | Token | Portfolio % | Price | Amount | Value |
|---|
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ 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.