More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 6,547 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Unstake | 21260989 | 2 days ago | IN | 0 ETH | 0.00100079 | ||||
Unstake | 21260415 | 2 days ago | IN | 0 ETH | 0.00081189 | ||||
Withdraw | 21260408 | 2 days ago | IN | 0 ETH | 0.00076132 | ||||
Stake | 21260384 | 2 days ago | IN | 0 ETH | 0.00092336 | ||||
Unstake | 21255373 | 3 days ago | IN | 0 ETH | 0.00085109 | ||||
Unstake | 21254969 | 3 days ago | IN | 0 ETH | 0.00089584 | ||||
Withdraw | 21254965 | 3 days ago | IN | 0 ETH | 0.00077958 | ||||
Unstake | 21252067 | 3 days ago | IN | 0 ETH | 0.00181031 | ||||
Unstake | 21244112 | 5 days ago | IN | 0 ETH | 0.00165303 | ||||
Unstake | 21223977 | 7 days ago | IN | 0 ETH | 0.00193503 | ||||
Withdraw | 21223966 | 7 days ago | IN | 0 ETH | 0.00204693 | ||||
Unstake | 21223184 | 7 days ago | IN | 0 ETH | 0.00259831 | ||||
Unstake | 21221666 | 8 days ago | IN | 0 ETH | 0.00130355 | ||||
Unstake | 21205182 | 10 days ago | IN | 0 ETH | 0.00086574 | ||||
Withdraw | 21205110 | 10 days ago | IN | 0 ETH | 0.00102097 | ||||
Unstake | 21201396 | 10 days ago | IN | 0 ETH | 0.00157188 | ||||
Withdraw | 21201388 | 10 days ago | IN | 0 ETH | 0.00163189 | ||||
Unstake | 21197179 | 11 days ago | IN | 0 ETH | 0.00131153 | ||||
Unstake | 21183253 | 13 days ago | IN | 0 ETH | 0.00406418 | ||||
Stake | 21172494 | 15 days ago | IN | 0 ETH | 0.00331554 | ||||
Unstake | 21164033 | 16 days ago | IN | 0 ETH | 0.00171222 | ||||
Unstake | 21153450 | 17 days ago | IN | 0 ETH | 0.00141798 | ||||
Withdraw | 21153446 | 17 days ago | IN | 0 ETH | 0.00134977 | ||||
Unstake | 21151760 | 17 days ago | IN | 0 ETH | 0.00089454 | ||||
Unstake | 21151697 | 17 days ago | IN | 0 ETH | 0.00069913 |
Latest 2 internal transactions
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
14338666 | 996 days ago | Contract Creation | 0 ETH | |||
14338666 | 996 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Contract Name:
Staking
Compiler Version
v0.8.0+commit.c7dfd78e
Optimization Enabled:
Yes with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "staking/contracts/StakingERC20.sol"; /** * @dev Handles staking erc20 tokens */ contract Staking is StakingERC20 { constructor( IERC20 token, IERC20 rewardToken ) StakingERC20(token, rewardToken, 9) { } }
// SPDX-License-Identifier: NONE pragma solidity ^0.8.0; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import "./Distribute.sol"; import "./interfaces/IERC900.sol"; /** * An IERC900 staking contract */ contract StakingERC20 is IERC900 { using SafeERC20 for IERC20; /// @dev handle to access ERC20 token token contract to make transfers IERC20 private _token; Distribute immutable public staking_contract_eth; Distribute immutable public staking_contract_token; event ProfitToken(uint256 amount); event ProfitEth(uint256 amount); event StakeChanged(uint256 total, uint256 timestamp); constructor(IERC20 stake_token, IERC20 reward_token, uint256 decimals) { _token = stake_token; staking_contract_eth = new Distribute(decimals, IERC20(address(0))); staking_contract_token = new Distribute(decimals, reward_token); } function distribute_eth() payable external { staking_contract_eth.distribute{value : msg.value}(0, msg.sender); emit ProfitEth(msg.value); } function distribute(uint256 amount) external { staking_contract_token.distribute(amount, msg.sender); emit ProfitToken(amount); } /** @dev Stakes a certain amount of tokens, this MUST transfer the given amount from the account @param amount Amount of ERC20 token to stake @param data Additional data as per the EIP900 */ function stake(uint256 amount, bytes calldata data) external override { stakeFor(msg.sender, amount, data); } /** @dev Stakes a certain amount of tokens, this MUST transfer the given amount from the caller @param account Address who will own the stake afterwards @param amount Amount of ERC20 token to stake @param data Additional data as per the EIP900 */ function stakeFor(address account, uint256 amount, bytes calldata data) public override { //transfer the ERC20 token from the account, he must have set an allowance of {amount} tokens _token.safeTransferFrom(msg.sender, address(this), amount); staking_contract_eth.stakeFor(account, amount); staking_contract_token.stakeFor(account, amount); emit Staked(account, amount, totalStakedFor(account), data); emit StakeChanged(staking_contract_eth.totalStaked(), block.timestamp); } /** @dev Unstakes a certain amount of tokens, this SHOULD return the given amount of tokens to the account, if unstaking is currently not possible the function MUST revert @param amount Amount of ERC20 token to remove from the stake @param data Additional data as per the EIP900 */ function unstake(uint256 amount, bytes calldata data) external override { staking_contract_eth.unstakeFrom(payable(msg.sender), amount); staking_contract_token.unstakeFrom(payable(msg.sender), amount); _token.safeTransfer(msg.sender, amount); emit Unstaked(msg.sender, amount, totalStakedFor(msg.sender), data); emit StakeChanged(staking_contract_eth.totalStaked(), block.timestamp); } /** @dev Withdraws rewards (basically unstake then restake) @param amount Amount of ERC20 token to remove from the stake */ function withdraw(uint256 amount) external { staking_contract_eth.withdrawFrom(payable(msg.sender), amount); staking_contract_token.withdrawFrom(payable(msg.sender),amount); } /** @dev Returns the current total of tokens staked for an address @param account address owning the stake @return the total of staked tokens of this address */ function totalStakedFor(address account) public view override returns (uint256) { return staking_contract_eth.totalStakedFor(account); } /** @dev Returns the current total of tokens staked @return the total of staked tokens */ function totalStaked() external view override returns (uint256) { return staking_contract_eth.totalStaked(); } /** @dev returns the total rewards stored for token and eth */ function totalReward() external view returns (uint256 token, uint256 eth) { token = staking_contract_token.getTotalReward(); eth = staking_contract_eth.getTotalReward(); } /** @dev Address of the token being used by the staking interface @return ERC20 token token address */ function token() external view override returns (address) { return address(_token); } /** @dev MUST return true if the optional history functions are implemented, otherwise false We dont want this */ function supportsHistory() external pure override returns (bool) { return false; } /** @dev Returns how much ETH the user can withdraw currently @param account Address of the user to check reward for @return _eth the amount of ETH the account will perceive if he unstakes now @return __token the amount of tokens the account will perceive if he unstakes now */ function getReward(address account) public view returns (uint256 _eth, uint256 __token) { _eth = staking_contract_eth.getReward(account); __token = staking_contract_token.getReward(account); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; import "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; function safeTransfer( IERC20 token, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom( IERC20 token, address from, address to, uint256 value ) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove( IERC20 token, address spender, uint256 value ) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' require( (value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance( IERC20 token, address spender, uint256 value ) internal { uint256 newAllowance = token.allowance(address(this), spender) + value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require(oldAllowance >= value, "SafeERC20: decreased allowance below zero"); uint256 newAllowance = oldAllowance - value; _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: NONE pragma solidity ^0.8.0; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import '@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/security/ReentrancyGuard.sol'; /** * staking contract for ERC20 tokens or ETH */ contract Distribute is Ownable, ReentrancyGuard { using SafeMath for uint256; using SafeERC20 for IERC20; /** @dev This value is very important because if the number of bonds is too great compared to the distributed value, then the bond increase will be zero therefore this value depends on the number of decimals of the distributed token and I suggest it to be the same For example if the token has 18 decimals, then the precision should also have 18 decimals */ uint256 immutable public PRECISION; uint256 public constant INITIAL_BOND_VALUE = 1000000; uint256 public bond_value = INITIAL_BOND_VALUE; //just for info uint256 public investor_count; uint256 private _total_staked; uint256 private _temp_pool; // the amount of dust left to distribute after the bond value has been updated uint256 public to_distribute; mapping(address => uint256) private _bond_value_addr; mapping(address => uint256) private _stakes; /// @dev token to distribute IERC20 immutable public reward_token; /** @dev Initialize the contract @param decimals Number of decimals of the reward token @param _reward_token The token used for rewards. Set to 0 for ETH */ constructor(uint256 decimals, IERC20 _reward_token) Ownable() ReentrancyGuard() { reward_token = _reward_token; PRECISION = 10**decimals; } /** @dev Stakes a certain amount, this MUST transfer the given amount from the caller @param account Address who will own the stake afterwards @param amount Amount to stake */ function stakeFor(address account, uint256 amount) public onlyOwner nonReentrant { require(account != address(0), "Distribute: Invalid account"); require(amount > 0, "Distribute: Amount must be greater than zero"); _total_staked = _total_staked.add(amount); if(_stakes[account] == 0) { investor_count++; } uint256 accumulated_reward = getReward(account); _stakes[account] = _stakes[account].add(amount); uint256 new_bond_value = accumulated_reward * PRECISION / _stakes[account]; _bond_value_addr[account] = bond_value - new_bond_value; } /** @dev unstakes a certain amounts, if unstaking is currently not possible the function MUST revert @param account From whom @param amount Amount to remove from the stake */ function unstakeFrom(address payable account, uint256 amount) public onlyOwner nonReentrant { require(account != address(0), "Distribute: Invalid account"); require(amount > 0, "Distribute: Amount must be greater than zero"); require(amount <= _stakes[account], "Distribute: Dont have enough staked"); uint256 to_reward = _getReward(account, amount); _total_staked -= amount; _stakes[account] -= amount; if(_stakes[account] == 0) { investor_count--; } if(to_reward == 0) return; //take into account dust error during payment too if(address(reward_token) != address(0)) { reward_token.safeTransfer(account, to_reward); } else { Address.sendValue(account, to_reward); } } /** @dev Withdraws rewards (basically unstake then restake) @param account From whom @param amount Amount to remove from the stake */ function withdrawFrom(address payable account, uint256 amount) external onlyOwner { unstakeFrom(account, amount); stakeFor(account, amount); } /** @dev Called contracts to distribute dividends Updates the bond value @param amount Amount of token to distribute @param from Address from which to take the token */ function distribute(uint256 amount, address from) external payable onlyOwner nonReentrant { if(address(reward_token) != address(0)) { if(amount == 0) return; reward_token.safeTransferFrom(from, address(this), amount); require(msg.value == 0, "Distribute: Illegal distribution"); } else { amount = msg.value; } if(_total_staked == 0) { // no stakes yet, put into temp pool _temp_pool = _temp_pool.add(amount); return; } // if a temp pool existed, add it to the current distribution if(_temp_pool > 0) { amount = amount.add(_temp_pool); _temp_pool = 0; } uint256 temp_to_distribute = to_distribute + amount; uint256 total_bonds = _total_staked / PRECISION; uint256 bond_increase = temp_to_distribute / total_bonds; uint256 distributed_total = total_bonds.mul(bond_increase); bond_value += bond_increase; //collect the dust because of the PRECISION used for bonds //it will be reinjected into the next distribution to_distribute = temp_to_distribute - distributed_total; } /** @dev Returns the current total staked for an address @param account address owning the stake @return the total staked for this account */ function totalStakedFor(address account) external view returns (uint256) { return _stakes[account]; } /** @return current staked token */ function totalStaked() external view returns (uint256) { return _total_staked; } /** @dev Returns how much the user can withdraw currently @param account Address of the user to check reward for @return the amount account will perceive if he unstakes now */ function getReward(address account) public view returns (uint256) { return _getReward(account,_stakes[account]); } /** @dev returns the total amount of stored rewards */ function getTotalReward() external view returns (uint256) { if(address(reward_token) != address(0)) { return reward_token.balanceOf(address(this)); } else { return address(this).balance; } } /** @dev Returns how much the user can withdraw currently @param account Address of the user to check reward for @param amount Number of stakes @return the amount account will perceive if he unstakes now */ function _getReward(address account, uint256 amount) internal view returns (uint256) { return amount.mul(bond_value.sub(_bond_value_addr[account])) / PRECISION; } }
// SPDX-License-Identifier: NONE pragma solidity ^0.8.0; //https://github.com/ethereum/EIPs/blob/master/EIPS/eip-900.md interface IERC900 { event Staked(address indexed addr, uint256 amount, uint256 total, bytes data); event Unstaked(address indexed addr, uint256 amount, uint256 total, bytes data); function stake(uint256 amount, bytes calldata data) external; function stakeFor(address addr, uint256 amount, bytes calldata data) external; function unstake(uint256 amount, bytes calldata data) external; function totalStakedFor(address addr) external view returns (uint256); function totalStaked() external view returns (uint256); function token() external view returns (address); function supportsHistory() external pure returns (bool); // optional //function lastStakedFor(address addr) public view returns (uint256); //function totalStakedForAt(address addr, uint256 blockNumber) public view returns (uint256); //function totalStakedAt(uint256 blockNumber) public view returns (uint256); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Address.sol) pragma solidity ^0.8.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResult(success, returndata, errorMessage); } /** * @dev Tool to verifies that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/ReentrancyGuard.sol) pragma solidity ^0.8.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 private _status; constructor() { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and making it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
{ "optimizer": { "enabled": true, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "metadata": { "useLiteralContent": true }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"token","type":"address"},{"internalType":"contract IERC20","name":"rewardToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ProfitEth","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ProfitToken","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"timestamp","type":"uint256"}],"name":"StakeChanged","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"addr","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"total","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Unstaked","type":"event"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"distribute","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"distribute_eth","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getReward","outputs":[{"internalType":"uint256","name":"_eth","type":"uint256"},{"internalType":"uint256","name":"__token","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"stakeFor","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"staking_contract_eth","outputs":[{"internalType":"contract Distribute","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"staking_contract_token","outputs":[{"internalType":"contract Distribute","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"supportsHistory","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"pure","type":"function"},{"inputs":[],"name":"token","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalReward","outputs":[{"internalType":"uint256","name":"token","type":"uint256"},{"internalType":"uint256","name":"eth","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStaked","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"totalStakedFor","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60c06040523480156200001157600080fd5b5060405162002c4e38038062002c4e833981016040819052620000349162000125565b600080546001600160a01b0319166001600160a01b0384161781556040518391839160099182916200006690620000fa565b620000739291906200015c565b604051809103906000f08015801562000090573d6000803e3d6000fd5b5060601b6001600160601b03191660805260405181908390620000b390620000fa565b620000c09291906200015c565b604051809103906000f080158015620000dd573d6000803e3d6000fd5b5060601b6001600160601b03191660a05250620001739350505050565b6116e8806200156683390190565b80516001600160a01b03811681146200012057600080fd5b919050565b6000806040838503121562000138578182fd5b620001438362000108565b9150620001536020840162000108565b90509250929050565b9182526001600160a01b0316602082015260400190565b60805160601c60a05160601c6113576200020f6000396000818161034601528181610564015281816106830152818161085a01528181610a7201528181610b930152610d2c0152600081816102c801528181610423015281816104e6015281816105ec01528181610716015281816107af01528181610914015281816109be01528181610b1501528181610c7f0152610d5001526113576000f3fe6080604052600436106100dd5760003560e01c806391c05b0b1161007f578063c8fd6ed011610059578063c8fd6ed01461021c578063f9b8cf141461023c578063fad011301461025e578063fc0c546a14610273576100dd565b806391c05b0b146101d457806396bf541f146101f4578063c00007b0146101fc576100dd565b80634b341aed116100bb5780634b341aed146101445780637033e4a61461017a578063750142e61461019c578063817b1cd2146101bf576100dd565b80630e89439b146100e25780630ef96356146101045780632e1a7d4d14610124575b600080fd5b3480156100ee57600080fd5b506101026100fd3660046110ce565b610288565b005b34801561011057600080fd5b5061010261011f366004611026565b610299565b34801561013057600080fd5b5061010261013f36600461109e565b6104cf565b34801561015057600080fd5b5061016461015f36600461100c565b6105d2565b60405161017191906112a1565b60405180910390f35b34801561018657600080fd5b5061018f610679565b6040516101719190611185565b3480156101a857600080fd5b506101b161067e565b6040516101719291906112aa565b3480156101cb57600080fd5b506101646107ab565b3480156101e057600080fd5b506101026101ef36600461109e565b610843565b6101026108fd565b34801561020857600080fd5b506101b161021736600461100c565b6109b9565b34801561022857600080fd5b506101026102373660046110ce565b610afe565b34801561024857600080fd5b50610251610d2a565b6040516101719190611134565b34801561026a57600080fd5b50610251610d4e565b34801561027f57600080fd5b50610251610d72565b61029433848484610299565b505050565b6000546102b1906001600160a01b0316333086610d81565b6040516305dc812160e31b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690632ee40908906102ff9087908790600401611148565b600060405180830381600087803b15801561031957600080fd5b505af115801561032d573d6000803e3d6000fd5b50506040516305dc812160e31b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169250632ee40908915061037f9087908790600401611148565b600060405180830381600087803b15801561039957600080fd5b505af11580156103ad573d6000803e3d6000fd5b50505050836001600160a01b03167fc65e53b88159e7d2c0fc12a0600072e28ae53ff73b4c1715369c30f160935142846103e6876105d2565b85856040516103f894939291906112b8565b60405180910390a27f0ea809b2fd10635ec1f83398c49b948d3250250ff7a7f7f5423261597a72454f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663817b1cd26040518163ffffffff1660e01b815260040160206040518083038186803b15801561047a57600080fd5b505afa15801561048e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b291906110b6565b426040516104c19291906112aa565b60405180910390a150505050565b604051639470b0bd60e01b81526001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690639470b0bd9061051d9033908590600401611148565b600060405180830381600087803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b5050604051639470b0bd60e01b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169250639470b0bd915061059d9033908590600401611148565b600060405180830381600087803b1580156105b757600080fd5b505af11580156105cb573d6000803e3d6000fd5b5050505050565b604051634b341aed60e01b81526000906001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001690634b341aed90610621908590600401611134565b60206040518083038186803b15801561063957600080fd5b505afa15801561064d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067191906110b6565b90505b919050565b600090565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637d1fcbfa6040518163ffffffff1660e01b815260040160206040518083038186803b1580156106da57600080fd5b505afa1580156106ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071291906110b6565b91507f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316637d1fcbfa6040518163ffffffff1660e01b815260040160206040518083038186803b15801561076d57600080fd5b505afa158015610781573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a591906110b6565b90509091565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663817b1cd26040518163ffffffff1660e01b815260040160206040518083038186803b15801561080657600080fd5b505afa15801561081a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083e91906110b6565b905090565b6040516370fd458160e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063e1fa8b02906108919084903390600401611190565b600060405180830381600087803b1580156108ab57600080fd5b505af11580156108bf573d6000803e3d6000fd5b505050507f0c1650719d4812baaef27eb3792b8df0f895a354e59262229d71d5713ba514bc816040516108f291906112a1565b60405180910390a150565b6040516370fd458160e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063e1fa8b0290349061094e906000903390600401611190565b6000604051808303818588803b15801561096757600080fd5b505af115801561097b573d6000803e3d6000fd5b50505050507fd00b2ed02073d0d42cc00e313ded833cfe6dffd8ff86113d7936ce7cb73e5c67346040516109af91906112a1565b60405180910390a1565b6000807f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663c00007b0846040518263ffffffff1660e01b8152600401610a089190611134565b60206040518083038186803b158015610a2057600080fd5b505afa158015610a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5891906110b6565b604051630c00007b60e41b81529092506001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063c00007b090610aa7908690600401611134565b60206040518083038186803b158015610abf57600080fd5b505afa158015610ad3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af791906110b6565b9050915091565b60405163398d1d8360e11b81526001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000169063731a3b0690610b4c9033908790600401611148565b600060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505060405163398d1d8360e11b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016925063731a3b069150610bcc9033908790600401611148565b600060405180830381600087803b158015610be657600080fd5b505af1158015610bfa573d6000803e3d6000fd5b5050600054610c1692506001600160a01b031690503385610ddf565b337faf01bfc8475df280aca00b578c4a948e6d95700f0db8c13365240f7f973c875484610c42836105d2565b8585604051610c5494939291906112b8565b60405180910390a27f0ea809b2fd10635ec1f83398c49b948d3250250ff7a7f7f5423261597a72454f7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031663817b1cd26040518163ffffffff1660e01b815260040160206040518083038186803b158015610cd657600080fd5b505afa158015610cea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0e91906110b6565b42604051610d1d9291906112aa565b60405180910390a1505050565b7f000000000000000000000000000000000000000000000000000000000000000081565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000546001600160a01b031690565b610dd9846323b872dd60e01b858585604051602401610da293929190611161565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610dfe565b50505050565b6102948363a9059cbb60e01b8484604051602401610da2929190611148565b6000610e53826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e969092919063ffffffff16565b8051909150156102945780806020019051810190610e71919061107e565b6102945760405162461bcd60e51b8152600401610e8d90611257565b60405180910390fd5b6060610ea58484600085610eaf565b90505b9392505050565b606082471015610ed15760405162461bcd60e51b8152600401610e8d906111da565b610eda85610f6f565b610ef65760405162461bcd60e51b8152600401610e8d90611220565b600080866001600160a01b03168587604051610f129190611118565b60006040518083038185875af1925050503d8060008114610f4f576040519150601f19603f3d011682016040523d82523d6000602084013e610f54565b606091505b5091509150610f64828286610f75565b979650505050505050565b3b151590565b60608315610f84575081610ea8565b825115610f945782518084602001fd5b8160405162461bcd60e51b8152600401610e8d91906111a7565b80356001600160a01b038116811461067457600080fd5b60008083601f840112610fd6578182fd5b50813567ffffffffffffffff811115610fed578182fd5b60208301915083602082850101111561100557600080fd5b9250929050565b60006020828403121561101d578081fd5b610ea882610fae565b6000806000806060858703121561103b578283fd5b61104485610fae565b935060208501359250604085013567ffffffffffffffff811115611066578283fd5b61107287828801610fc5565b95989497509550505050565b60006020828403121561108f578081fd5b81518015158114610ea8578182fd5b6000602082840312156110af578081fd5b5035919050565b6000602082840312156110c7578081fd5b5051919050565b6000806000604084860312156110e2578283fd5b83359250602084013567ffffffffffffffff8111156110ff578283fd5b61110b86828701610fc5565b9497909650939450505050565b6000825161112a8184602087016112f5565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b901515815260200190565b9182526001600160a01b0316602082015260400190565b60006020825282518060208401526111c68160408501602087016112f5565b601f01601f19169190910160400192915050565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b90815260200190565b918252602082015260400190565b60008582528460208301526060604083015282606083015282846080840137818301608090810191909152601f909201601f191601019392505050565b60005b838110156113105781810151838201526020016112f8565b83811115610dd9575050600091015256fea264697066735822122093e8b62b2fc1fbf6d0c979b1055c88e4b46c32c1bc750b5a3a6ff8534d2ccc6a64736f6c6343000800003360c0604052620f42406002553480156200001857600080fd5b50604051620016e8380380620016e88339810160408190526200003b91620000d2565b6200004f620000496200007e565b62000082565b600180556001600160601b0319606082901b1660a0526200007282600a6200015c565b60805250620002679050565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60008060408385031215620000e5578182fd5b825160208401519092506001600160a01b038116811462000104578182fd5b809150509250929050565b80825b600180861162000123575062000153565b81870482111562000138576200013862000251565b808616156200014657918102915b9490941c93800262000112565b94509492505050565b60006200016d600019848462000174565b9392505050565b60008262000185575060016200016d565b8162000194575060006200016d565b8160018114620001ad5760028114620001b857620001ec565b60019150506200016d565b60ff841115620001cc57620001cc62000251565b6001841b915084821115620001e557620001e562000251565b506200016d565b5060208310610133831016604e8410600b841016171562000224575081810a838111156200021e576200021e62000251565b6200016d565b6200023384848460016200010f565b80860482111562000248576200024862000251565b02949350505050565b634e487b7160e01b600052601160045260246000fd5b60805160a05160601c611419620002cf600039600081816102cf0152818161068b015281816106c5015281816107090152818161074d01528181610908015261094c01526000818161043c0152818161084d015281816109eb0152610b6201526114196000f3fe6080604052600436106100fe5760003560e01c8063817b1cd211610095578063c00007b011610064578063c00007b014610250578063d777fbc414610270578063e1fa8b0214610285578063efc31b4014610298578063f2fde38b146102ad576100fe565b8063817b1cd2146101f15780638da5cb5b146102065780639470b0bd1461021b578063aaf5eb681461023b576100fe565b80636bfc33d1116100d15780636bfc33d114610192578063715018a6146101a7578063731a3b06146101bc5780637d1fcbfa146101dc576100fe565b80632638c09e146101035780632ee409081461012e5780634b341aed1461015057806351bdfa1f1461017d575b600080fd5b34801561010f57600080fd5b506101186102cd565b6040516101259190610f57565b60405180910390f35b34801561013a57600080fd5b5061014e610149366004610ec2565b6102f1565b005b34801561015c57600080fd5b5061017061016b366004610e7b565b6104a1565b60405161012591906112e3565b34801561018957600080fd5b506101706104bc565b34801561019e57600080fd5b506101706104c2565b3480156101b357600080fd5b5061014e6104c9565b3480156101c857600080fd5b5061014e6101d7366004610e97565b610514565b3480156101e857600080fd5b50610170610705565b3480156101fd57600080fd5b506101706107df565b34801561021257600080fd5b506101186107e5565b34801561022757600080fd5b5061014e610236366004610e97565b6107f4565b34801561024757600080fd5b5061017061084b565b34801561025c57600080fd5b5061017061026b366004610e7b565b61086f565b34801561027c57600080fd5b50610170610899565b61014e610293366004610f0c565b61089f565b3480156102a457600080fd5b50610170610a66565b3480156102b957600080fd5b5061014e6102c8366004610e7b565b610a6c565b7f000000000000000000000000000000000000000000000000000000000000000081565b6102f9610add565b6001600160a01b031661030a6107e5565b6001600160a01b0316146103395760405162461bcd60e51b81526004016103309061113e565b60405180910390fd5b6002600154141561035c5760405162461bcd60e51b815260040161033090611275565b60026001556001600160a01b0382166103875760405162461bcd60e51b8152600401610330906112ac565b600081116103a75760405162461bcd60e51b8152600401610330906111a8565b6004546103b49082610ae1565b6004556001600160a01b0382166000908152600860205260409020546103ea57600380549060006103e48361139d565b91905055505b60006103f58361086f565b6001600160a01b03841660009081526008602052604090205490915061041b9083610ae1565b6001600160a01b0384166000908152600860205260408120829055906104617f000000000000000000000000000000000000000000000000000000000000000084611324565b61046b9190611304565b90508060025461047b9190611343565b6001600160a01b0390941660009081526007602052604090209390935550506001805550565b6001600160a01b031660009081526008602052604090205490565b60035481565b620f424081565b6104d1610add565b6001600160a01b03166104e26107e5565b6001600160a01b0316146105085760405162461bcd60e51b81526004016103309061113e565b6105126000610af4565b565b61051c610add565b6001600160a01b031661052d6107e5565b6001600160a01b0316146105535760405162461bcd60e51b81526004016103309061113e565b600260015414156105765760405162461bcd60e51b815260040161033090611275565b60026001556001600160a01b0382166105a15760405162461bcd60e51b8152600401610330906112ac565b600081116105c15760405162461bcd60e51b8152600401610330906111a8565b6001600160a01b0382166000908152600860205260409020548111156105f95760405162461bcd60e51b815260040161033090610fdb565b60006106058383610b44565b905081600460008282546106199190611343565b90915550506001600160a01b03831660009081526008602052604081208054849290610646908490611343565b90915550506001600160a01b03831660009081526008602052604090205461067e576003805490600061067883611386565b91905055505b8061068957506106fd565b7f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316156106f1576106ec6001600160a01b037f0000000000000000000000000000000000000000000000000000000000000000168483610ba0565b6106fb565b6106fb8382610bfb565b505b505060018055565b60007f00000000000000000000000000000000000000000000000000000000000000006001600160a01b0316156107d9576040516370a0823160e01b81526001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016906370a0823190610782903090600401610f57565b60206040518083038186803b15801561079a57600080fd5b505afa1580156107ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107d29190610ef4565b90506107dc565b50475b90565b60045490565b6000546001600160a01b031690565b6107fc610add565b6001600160a01b031661080d6107e5565b6001600160a01b0316146108335760405162461bcd60e51b81526004016103309061113e565b61083d8282610514565b61084782826102f1565b5050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6001600160a01b038116600090815260086020526040812054610893908390610b44565b92915050565b60025481565b6108a7610add565b6001600160a01b03166108b86107e5565b6001600160a01b0316146108de5760405162461bcd60e51b81526004016103309061113e565b600260015414156109015760405162461bcd60e51b815260040161033090611275565b60026001557f00000000000000000000000000000000000000000000000000000000000000006001600160a01b031615610997578161093f576106fd565b6109746001600160a01b037f000000000000000000000000000000000000000000000000000000000000000016823085610c97565b34156109925760405162461bcd60e51b815260040161033090611173565b61099b565b3491505b6004546109b7576005546109af9083610ae1565b6005556106fd565b600554156109d5576005546109cd908390610ae1565b600060055591505b6000826006546109e591906112ec565b905060007f0000000000000000000000000000000000000000000000000000000000000000600454610a179190611304565b90506000610a258284611304565b90506000610a338383610cbe565b90508160026000828254610a4791906112ec565b90915550610a5790508185611343565b60065550505050505060018055565b60065481565b610a74610add565b6001600160a01b0316610a856107e5565b6001600160a01b031614610aab5760405162461bcd60e51b81526004016103309061113e565b6001600160a01b038116610ad15760405162461bcd60e51b81526004016103309061101e565b610ada81610af4565b50565b3390565b6000610aed82846112ec565b9392505050565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0382166000908152600760205260408120546002547f000000000000000000000000000000000000000000000000000000000000000091610b9691610b8f91610cca565b8490610cbe565b610aed9190611304565b610bf68363a9059cbb60e01b8484604051602401610bbf929190610f8f565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610cd6565b505050565b80471015610c1b5760405162461bcd60e51b8152600401610330906110c1565b6000826001600160a01b031682604051610c34906107dc565b60006040518083038185875af1925050503d8060008114610c71576040519150601f19603f3d011682016040523d82523d6000602084013e610c76565b606091505b5050905080610bf65760405162461bcd60e51b815260040161033090611064565b610cb8846323b872dd60e01b858585604051602401610bbf93929190610f6b565b50505050565b6000610aed8284611324565b6000610aed8284611343565b6000610d2b826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610d659092919063ffffffff16565b805190915015610bf65780806020019051810190610d499190610ed4565b610bf65760405162461bcd60e51b81526004016103309061122b565b6060610d748484600085610d7c565b949350505050565b606082471015610d9e5760405162461bcd60e51b8152600401610330906110f8565b610da785610e3c565b610dc35760405162461bcd60e51b8152600401610330906111f4565b600080866001600160a01b03168587604051610ddf9190610f3b565b60006040518083038185875af1925050503d8060008114610e1c576040519150601f19603f3d011682016040523d82523d6000602084013e610e21565b606091505b5091509150610e31828286610e42565b979650505050505050565b3b151590565b60608315610e51575081610aed565b825115610e615782518084602001fd5b8160405162461bcd60e51b81526004016103309190610fa8565b600060208284031215610e8c578081fd5b8135610aed816113ce565b60008060408385031215610ea9578081fd5b8235610eb4816113ce565b946020939093013593505050565b60008060408385031215610ea9578182fd5b600060208284031215610ee5578081fd5b81518015158114610aed578182fd5b600060208284031215610f05578081fd5b5051919050565b60008060408385031215610f1e578182fd5b823591506020830135610f30816113ce565b809150509250929050565b60008251610f4d81846020870161135a565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b6001600160a01b03929092168252602082015260400190565b6000602082528251806020840152610fc781604085016020870161135a565b601f01601f19169190910160400192915050565b60208082526023908201527f446973747269627574653a20446f6e74206861766520656e6f756768207374616040820152621ad95960ea1b606082015260800190565b60208082526026908201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160408201526564647265737360d01b606082015260800190565b6020808252603a908201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260408201527f6563697069656e74206d61792068617665207265766572746564000000000000606082015260800190565b6020808252601d908201527f416464726573733a20696e73756666696369656e742062616c616e6365000000604082015260600190565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b6020808252818101527f446973747269627574653a20496c6c6567616c20646973747269627574696f6e604082015260600190565b6020808252602c908201527f446973747269627574653a20416d6f756e74206d75737420626520677265617460408201526b6572207468616e207a65726f60a01b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b6020808252601f908201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c00604082015260600190565b6020808252601b908201527f446973747269627574653a20496e76616c6964206163636f756e740000000000604082015260600190565b90815260200190565b600082198211156112ff576112ff6113b8565b500190565b60008261131f57634e487b7160e01b81526012600452602481fd5b500490565b600081600019048311821515161561133e5761133e6113b8565b500290565b600082821015611355576113556113b8565b500390565b60005b8381101561137557818101518382015260200161135d565b83811115610cb85750506000910152565b600081611395576113956113b8565b506000190190565b60006000198214156113b1576113b16113b8565b5060010190565b634e487b7160e01b600052601160045260246000fd5b6001600160a01b0381168114610ada57600080fdfea26469706673582212204eda6095e5209fa5a14838d556acc6f21baacad00167190de9f22cd57d73deed64736f6c63430008000033000000000000000000000000295b42684f90c77da7ea46336001010f2791ec8c000000000000000000000000295b42684f90c77da7ea46336001010f2791ec8c
Deployed Bytecode
0x6080604052600436106100dd5760003560e01c806391c05b0b1161007f578063c8fd6ed011610059578063c8fd6ed01461021c578063f9b8cf141461023c578063fad011301461025e578063fc0c546a14610273576100dd565b806391c05b0b146101d457806396bf541f146101f4578063c00007b0146101fc576100dd565b80634b341aed116100bb5780634b341aed146101445780637033e4a61461017a578063750142e61461019c578063817b1cd2146101bf576100dd565b80630e89439b146100e25780630ef96356146101045780632e1a7d4d14610124575b600080fd5b3480156100ee57600080fd5b506101026100fd3660046110ce565b610288565b005b34801561011057600080fd5b5061010261011f366004611026565b610299565b34801561013057600080fd5b5061010261013f36600461109e565b6104cf565b34801561015057600080fd5b5061016461015f36600461100c565b6105d2565b60405161017191906112a1565b60405180910390f35b34801561018657600080fd5b5061018f610679565b6040516101719190611185565b3480156101a857600080fd5b506101b161067e565b6040516101719291906112aa565b3480156101cb57600080fd5b506101646107ab565b3480156101e057600080fd5b506101026101ef36600461109e565b610843565b6101026108fd565b34801561020857600080fd5b506101b161021736600461100c565b6109b9565b34801561022857600080fd5b506101026102373660046110ce565b610afe565b34801561024857600080fd5b50610251610d2a565b6040516101719190611134565b34801561026a57600080fd5b50610251610d4e565b34801561027f57600080fd5b50610251610d72565b61029433848484610299565b505050565b6000546102b1906001600160a01b0316333086610d81565b6040516305dc812160e31b81526001600160a01b037f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f1690632ee40908906102ff9087908790600401611148565b600060405180830381600087803b15801561031957600080fd5b505af115801561032d573d6000803e3d6000fd5b50506040516305dc812160e31b81526001600160a01b037f000000000000000000000000e74cf29d67260f1dc60a3c3f015cd7c6c1960236169250632ee40908915061037f9087908790600401611148565b600060405180830381600087803b15801561039957600080fd5b505af11580156103ad573d6000803e3d6000fd5b50505050836001600160a01b03167fc65e53b88159e7d2c0fc12a0600072e28ae53ff73b4c1715369c30f160935142846103e6876105d2565b85856040516103f894939291906112b8565b60405180910390a27f0ea809b2fd10635ec1f83398c49b948d3250250ff7a7f7f5423261597a72454f7f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f6001600160a01b031663817b1cd26040518163ffffffff1660e01b815260040160206040518083038186803b15801561047a57600080fd5b505afa15801561048e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906104b291906110b6565b426040516104c19291906112aa565b60405180910390a150505050565b604051639470b0bd60e01b81526001600160a01b037f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f1690639470b0bd9061051d9033908590600401611148565b600060405180830381600087803b15801561053757600080fd5b505af115801561054b573d6000803e3d6000fd5b5050604051639470b0bd60e01b81526001600160a01b037f000000000000000000000000e74cf29d67260f1dc60a3c3f015cd7c6c1960236169250639470b0bd915061059d9033908590600401611148565b600060405180830381600087803b1580156105b757600080fd5b505af11580156105cb573d6000803e3d6000fd5b5050505050565b604051634b341aed60e01b81526000906001600160a01b037f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f1690634b341aed90610621908590600401611134565b60206040518083038186803b15801561063957600080fd5b505afa15801561064d573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061067191906110b6565b90505b919050565b600090565b6000807f000000000000000000000000e74cf29d67260f1dc60a3c3f015cd7c6c19602366001600160a01b0316637d1fcbfa6040518163ffffffff1660e01b815260040160206040518083038186803b1580156106da57600080fd5b505afa1580156106ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061071291906110b6565b91507f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f6001600160a01b0316637d1fcbfa6040518163ffffffff1660e01b815260040160206040518083038186803b15801561076d57600080fd5b505afa158015610781573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906107a591906110b6565b90509091565b60007f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f6001600160a01b031663817b1cd26040518163ffffffff1660e01b815260040160206040518083038186803b15801561080657600080fd5b505afa15801561081a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061083e91906110b6565b905090565b6040516370fd458160e11b81526001600160a01b037f000000000000000000000000e74cf29d67260f1dc60a3c3f015cd7c6c1960236169063e1fa8b02906108919084903390600401611190565b600060405180830381600087803b1580156108ab57600080fd5b505af11580156108bf573d6000803e3d6000fd5b505050507f0c1650719d4812baaef27eb3792b8df0f895a354e59262229d71d5713ba514bc816040516108f291906112a1565b60405180910390a150565b6040516370fd458160e11b81526001600160a01b037f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f169063e1fa8b0290349061094e906000903390600401611190565b6000604051808303818588803b15801561096757600080fd5b505af115801561097b573d6000803e3d6000fd5b50505050507fd00b2ed02073d0d42cc00e313ded833cfe6dffd8ff86113d7936ce7cb73e5c67346040516109af91906112a1565b60405180910390a1565b6000807f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f6001600160a01b031663c00007b0846040518263ffffffff1660e01b8152600401610a089190611134565b60206040518083038186803b158015610a2057600080fd5b505afa158015610a34573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a5891906110b6565b604051630c00007b60e41b81529092506001600160a01b037f000000000000000000000000e74cf29d67260f1dc60a3c3f015cd7c6c1960236169063c00007b090610aa7908690600401611134565b60206040518083038186803b158015610abf57600080fd5b505afa158015610ad3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610af791906110b6565b9050915091565b60405163398d1d8360e11b81526001600160a01b037f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f169063731a3b0690610b4c9033908790600401611148565b600060405180830381600087803b158015610b6657600080fd5b505af1158015610b7a573d6000803e3d6000fd5b505060405163398d1d8360e11b81526001600160a01b037f000000000000000000000000e74cf29d67260f1dc60a3c3f015cd7c6c196023616925063731a3b069150610bcc9033908790600401611148565b600060405180830381600087803b158015610be657600080fd5b505af1158015610bfa573d6000803e3d6000fd5b5050600054610c1692506001600160a01b031690503385610ddf565b337faf01bfc8475df280aca00b578c4a948e6d95700f0db8c13365240f7f973c875484610c42836105d2565b8585604051610c5494939291906112b8565b60405180910390a27f0ea809b2fd10635ec1f83398c49b948d3250250ff7a7f7f5423261597a72454f7f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f6001600160a01b031663817b1cd26040518163ffffffff1660e01b815260040160206040518083038186803b158015610cd657600080fd5b505afa158015610cea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610d0e91906110b6565b42604051610d1d9291906112aa565b60405180910390a1505050565b7f000000000000000000000000e74cf29d67260f1dc60a3c3f015cd7c6c196023681565b7f00000000000000000000000057b3408711d4977666f176aac46780fcc152b60f81565b6000546001600160a01b031690565b610dd9846323b872dd60e01b858585604051602401610da293929190611161565b60408051601f198184030181529190526020810180516001600160e01b03166001600160e01b031990931692909217909152610dfe565b50505050565b6102948363a9059cbb60e01b8484604051602401610da2929190611148565b6000610e53826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c6564815250856001600160a01b0316610e969092919063ffffffff16565b8051909150156102945780806020019051810190610e71919061107e565b6102945760405162461bcd60e51b8152600401610e8d90611257565b60405180910390fd5b6060610ea58484600085610eaf565b90505b9392505050565b606082471015610ed15760405162461bcd60e51b8152600401610e8d906111da565b610eda85610f6f565b610ef65760405162461bcd60e51b8152600401610e8d90611220565b600080866001600160a01b03168587604051610f129190611118565b60006040518083038185875af1925050503d8060008114610f4f576040519150601f19603f3d011682016040523d82523d6000602084013e610f54565b606091505b5091509150610f64828286610f75565b979650505050505050565b3b151590565b60608315610f84575081610ea8565b825115610f945782518084602001fd5b8160405162461bcd60e51b8152600401610e8d91906111a7565b80356001600160a01b038116811461067457600080fd5b60008083601f840112610fd6578182fd5b50813567ffffffffffffffff811115610fed578182fd5b60208301915083602082850101111561100557600080fd5b9250929050565b60006020828403121561101d578081fd5b610ea882610fae565b6000806000806060858703121561103b578283fd5b61104485610fae565b935060208501359250604085013567ffffffffffffffff811115611066578283fd5b61107287828801610fc5565b95989497509550505050565b60006020828403121561108f578081fd5b81518015158114610ea8578182fd5b6000602082840312156110af578081fd5b5035919050565b6000602082840312156110c7578081fd5b5051919050565b6000806000604084860312156110e2578283fd5b83359250602084013567ffffffffffffffff8111156110ff578283fd5b61110b86828701610fc5565b9497909650939450505050565b6000825161112a8184602087016112f5565b9190910192915050565b6001600160a01b0391909116815260200190565b6001600160a01b03929092168252602082015260400190565b6001600160a01b039384168152919092166020820152604081019190915260600190565b901515815260200190565b9182526001600160a01b0316602082015260400190565b60006020825282518060208401526111c68160408501602087016112f5565b601f01601f19169190910160400192915050565b60208082526026908201527f416464726573733a20696e73756666696369656e742062616c616e636520666f6040820152651c8818d85b1b60d21b606082015260800190565b6020808252601d908201527f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000604082015260600190565b6020808252602a908201527f5361666545524332303a204552433230206f7065726174696f6e20646964206e6040820152691bdd081cdd58d8d9595960b21b606082015260800190565b90815260200190565b918252602082015260400190565b60008582528460208301526060604083015282606083015282846080840137818301608090810191909152601f909201601f191601019392505050565b60005b838110156113105781810151838201526020016112f8565b83811115610dd9575050600091015256fea264697066735822122093e8b62b2fc1fbf6d0c979b1055c88e4b46c32c1bc750b5a3a6ff8534d2ccc6a64736f6c63430008000033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000295b42684f90c77da7ea46336001010f2791ec8c000000000000000000000000295b42684f90c77da7ea46336001010f2791ec8c
-----Decoded View---------------
Arg [0] : token (address): 0x295B42684F90c77DA7ea46336001010F2791Ec8c
Arg [1] : rewardToken (address): 0x295B42684F90c77DA7ea46336001010F2791Ec8c
-----Encoded View---------------
2 Constructor Arguments found :
Arg [0] : 000000000000000000000000295b42684f90c77da7ea46336001010f2791ec8c
Arg [1] : 000000000000000000000000295b42684f90c77da7ea46336001010f2791ec8c
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $0.004097 | 143,049,320.0993 | $586,099.57 |
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.