More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,675 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Rewards | 21669191 | 46 mins ago | IN | 0 ETH | 0.00124079 | ||||
Claim Rewards | 21668869 | 1 hr ago | IN | 0 ETH | 0.00155978 | ||||
Unstake | 21668863 | 1 hr ago | IN | 0 ETH | 0.00236303 | ||||
Claim Rewards | 21668774 | 2 hrs ago | IN | 0 ETH | 0.00152457 | ||||
Stake | 21668773 | 2 hrs ago | IN | 0 ETH | 0.00195086 | ||||
Stake | 21668682 | 2 hrs ago | IN | 0 ETH | 0.00191568 | ||||
Claim Rewards | 21668255 | 3 hrs ago | IN | 0 ETH | 0.00146391 | ||||
Stake | 21668255 | 3 hrs ago | IN | 0 ETH | 0.00227108 | ||||
Unstake | 21668247 | 3 hrs ago | IN | 0 ETH | 0.00232967 | ||||
Withdraw | 21668210 | 4 hrs ago | IN | 0 ETH | 0.00172902 | ||||
Stake | 21668203 | 4 hrs ago | IN | 0 ETH | 0.00205684 | ||||
Stake | 21668186 | 4 hrs ago | IN | 0 ETH | 0.00284739 | ||||
Claim Rewards | 21668136 | 4 hrs ago | IN | 0 ETH | 0.00302676 | ||||
Stake | 21668078 | 4 hrs ago | IN | 0 ETH | 0.00335516 | ||||
Stake | 21668027 | 4 hrs ago | IN | 0 ETH | 0.00254686 | ||||
Claim Rewards | 21667887 | 5 hrs ago | IN | 0 ETH | 0.00202409 | ||||
Unstake | 21666626 | 9 hrs ago | IN | 0 ETH | 0.00519223 | ||||
Unstake | 21666284 | 10 hrs ago | IN | 0 ETH | 0.00288282 | ||||
Unstake | 21666268 | 10 hrs ago | IN | 0 ETH | 0.00405554 | ||||
Stake | 21665575 | 12 hrs ago | IN | 0 ETH | 0.00323181 | ||||
Claim Rewards | 21665562 | 12 hrs ago | IN | 0 ETH | 0.0028425 | ||||
Withdraw | 21665020 | 14 hrs ago | IN | 0 ETH | 0.00205572 | ||||
Withdraw | 21664546 | 16 hrs ago | IN | 0 ETH | 0.00252497 | ||||
Unstake | 21663953 | 18 hrs ago | IN | 0 ETH | 0.00313215 | ||||
Claim Rewards | 21663949 | 18 hrs ago | IN | 0 ETH | 0.00241569 |
View more zero value Internal Transactions in Advanced View mode
Advanced mode:
Loading...
Loading
Contract Name:
PinStaking
Compiler Version
v0.8.20+commit.a1b79de6
Optimization Enabled:
Yes with 200 runs
Other Settings:
paris EvmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity 0.8.20; import {SafeERC20} from "@openzeppelin/contracts/token/ERC20/utils/SafeERC20.sol"; import {IERC20} from "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import {Ownable} from "@openzeppelin/contracts/access/Ownable.sol"; import {Ownable2Step} from "@openzeppelin/contracts/access/Ownable2Step.sol"; import {RewardsLogic, RewardsPeriod} from "src/rewardsPeriod.sol"; /// @title PinLink Staking Contract /// @author PinLink (@jacopod: https://twitter.com/jacolansac) /// @notice A staking contract to deposit PIN tokens and get rewards in PIN tokens. contract PinStaking is Ownable2Step { using SafeERC20 for IERC20; using RewardsLogic for RewardsPeriod; // token to stake, and also reward token address public immutable stakedToken; // scaling factor using for precision, to minimize rounding errors uint256 public constant PRECISION = 1e18; // Everytime a unstake is made, a lockup period of 7 days must pass before they can be withdrawn uint256 public constant UNSTAKE_LOCKUP_PERIOD = 7 days; // The maximum number of active pending unstakes per account uint8 public constant MAX_PENDING_UNSTAKES = 50; // The info about the rewards period that is currently active, how much, the start and end times, etc. RewardsPeriod public rewardsData; // The accumulated rewards per staked token over time (in wei, scaled up by PRECISION) // updated every time a deposit is made uint256 public globalRewardsPerStakedToken; // The sum of all staked amounts // units: wei uint256 public totalStakedTokens; // Staking info per account mapping(address => StakeInfo) public stakeInfo; // Array of pending unstakes per account. // The unstakes are sorted by releaseTime, so the last in the array is always the latest unstake. mapping(address => Unstake[]) public pendingUnstakes; struct StakeInfo { // accumulated staked amount by the account uint256 balance; // accumulated rewards by the account pending to be withdrawn. units: wei (absolute, not per token) uint256 pendingRewards; // the claimed rewards, as "rewards per staked token", following the global rewards per staked token scaled up by PRECISION uint256 updatedRewardsPerStakedToken; // number of pending unstakes for this account uint256 pendingUnstakesCount; // sum of historical reward claims by the account. // units: wei uint256 totalRewardsClaimed; } struct Unstake { // amount of unstaked tokens in this operation uint128 amount; // timestamp when it is possible to withdraw uint64 releaseTime; // If it has been withdrawn or not bool withdrawn; } //////////////////////// EVENTS //////////////////////// event Deposited(uint256 amountDeposited, uint256 amountDistributed, uint256 periodInDays); event Staked(address indexed account, uint256 amount); event Unstaked(address indexed account, uint256 amount); event ClaimedRewards(address indexed account, uint256 amount); event Withdrawn(address indexed account, uint256 amount); event GlobalRewardsPerStakedTokenUpdated(uint256 amountReleased, uint256 newGlobalRewardsPerToken); //////////////////////// MODIFIERS //////////////////////// /// @dev this modifier triggers an update in the globalRewardsPerToken, // by triggering a release of rewards since the last update, following the linear schedule modifier updateRewards(address account) { // if no rewards have been deposited, there is no rewardsData, and therefore there is no update if (rewardsData.isInitialized()) { // This updates the released rewards, and the global rewards per token, // taking into account the current totalStaked uint256 newGlobalRewardsPerToken = _updateGlobalRewardsPerStakedToken(); // For the first-time stake, first the pendingRewards is updated to 0 (balance==0), // and then the individual rewardsPerTokenStaked is matched to the global, so that the staker doesn't earn past rewards // update earned rewards for the account (in absolute value) StakeInfo storage accountInfo = stakeInfo[account]; // global is always larger than the individual updatedRewardsPerStakedToken, so this should never underflow accountInfo.pendingRewards += ( accountInfo.balance * (newGlobalRewardsPerToken - accountInfo.updatedRewardsPerStakedToken) ) / PRECISION; // now that pendingRewards has been updated, we match the individual updatedRewardsPerStakedToken to the global one accountInfo.updatedRewardsPerStakedToken = newGlobalRewardsPerToken; } _; } constructor(address _stakedToken) Ownable(msg.sender) { stakedToken = _stakedToken; } //////////////////////// RESTRICTED ACCESS FUNCTIONS //////////////////////// /// @notice Allows an account with the proper role to start a new rewards period and deposit rewards /// @dev The pending rewards that haven't been released yet in this period are bundled with the deposited amount for the next period /// @dev Noticeably, a new deposit can finish an existing period way before its end, and that's why it is a protected function. // Once rewards are deposited, they cannot be withdrawn from this contract. They are fully distributed to stakers. // Admins can only accelerate its distribution by starting a new rewards period before the previous one ends function depositRewards(uint256 _amount, uint256 _periodInDays) external onlyOwner { // The deposit of rewards to be distributed linearly until the end of the period require(_amount > 0, "Invalid input: _amount=0"); require(_periodInDays >= 1, "Invalid: _periodInDays < 1 day"); require(_periodInDays < 5 * 365, "Invalid: _periodInDays > 5 years"); // transfer tokens to the contract, but only register what actually arrives after fees uint256 pendingRewards = 0; if (rewardsData.isInitialized()) { // first update the linear release and the global rewards per token // The output of the function deliberately ignored _updateGlobalRewardsPerStakedToken(); // incrase amount with the pending rewards that haven't been released yet pendingRewards = rewardsData.nonDistributedRewards(); } uint256 distributedAmount = _amount + pendingRewards; // overwrite all fields of the RewardsPeriod info struct // the rewardsDeposited includes the remaining rewards from the previous period that were not distributed rewardsData.rewardsDeposited = uint128(distributedAmount); rewardsData.lastReleasedAmount = 0; // nothing has ben released yet rewardsData.startDate = uint64(block.timestamp); rewardsData.endDate = uint64(block.timestamp + _periodInDays * 1 days); IERC20(stakedToken).safeTransferFrom(msg.sender, address(this), _amount); emit Deposited(_amount, distributedAmount, _periodInDays); } //////////////////////// EXTERNAL USER-FACING FUNCTIONS //////////////////////// /// @notice Any account can stake the PIN token /// @dev The modifier triggers a rewards upate for msg.sender and an update of the global rewards per token /// @dev So the rewards are up to date before the staking operation is executed /// @dev If this contract is not excluded from transfer fees, the staked amount will differ from `_amount` function stake(uint256 _amount) external updateRewards(msg.sender) { require(_amount > 0, "Amount must be greater than 0"); stakeInfo[msg.sender].balance += _amount; totalStakedTokens += _amount; IERC20(stakedToken).safeTransferFrom(msg.sender, address(this), _amount); emit Staked(msg.sender, _amount); } /// @notice Any account with positive staking balance can unstake the PIN tokens /// @dev The modifier triggers a rewards upate for msg.sender and update of the global rewards per token, /// so rewards are up to date before the unstake action takes place /// @dev If this contract is not excluded from transfer fees, the unstaked amount will differ from `_amount` function unstake(uint256 _amount) external updateRewards(msg.sender) { StakeInfo storage accountInfo = stakeInfo[msg.sender]; require(_amount > 0, "Invalid: _amount=0"); require(accountInfo.balance >= _amount, "Insufficient staked amount"); require(accountInfo.pendingUnstakesCount <= MAX_PENDING_UNSTAKES, "Too many pending unstakes"); uint256 totalStaked = totalStakedTokens; accountInfo.balance -= _amount; totalStakedTokens = totalStaked - _amount; pendingUnstakes[msg.sender].push( Unstake({ amount: uint128(_amount), releaseTime: uint64(block.timestamp + UNSTAKE_LOCKUP_PERIOD), withdrawn: false }) ); // the pending unstakes are always at the tail of `pendingUnstakes[msg.sender]` // With this counter, we know how long the tail is, and we can iterate only the pending ones accountInfo.pendingUnstakesCount++; // if we reach totalStaked==0 due to an unstake, during an active period // we wrapup the rewards period so rewards in no-mans-land period are pushed forward if ((totalStaked == _amount) && (rewardsData.endDate > block.timestamp)) { uint256 pendingForDistribution = rewardsData.nonDistributedRewards(); // the end Date is not altered, only the start date and the remaining rewards rewardsData.rewardsDeposited = uint128(pendingForDistribution); rewardsData.startDate = uint64(block.timestamp); rewardsData.lastReleasedAmount = 0; } emit Unstaked(msg.sender, _amount); } /// @notice Allows an account to claim pending staking rewards /// @dev The modifier triggers a rewards upate for msg.sender, /// so the `pendingRewards` are updated before sending the rewards function claimRewards() external updateRewards(msg.sender) { // the pendingRewards have just been upated in the `updateRewards` modifer, so this value is up-to-date uint256 pendingRewards = stakeInfo[msg.sender].pendingRewards; // delete to get some gas back delete stakeInfo[msg.sender].pendingRewards; stakeInfo[msg.sender].totalRewardsClaimed += pendingRewards; IERC20(stakedToken).safeTransfer(msg.sender, pendingRewards); emit ClaimedRewards(msg.sender, pendingRewards); } /// @notice This withdraws ALL pending unstakes that have fulfilled the lockup period. /// @dev The modifier updating rewards has no effect in the withdrawn tokens, but better keep the system updated as frequently as possible function withdraw() external updateRewards(msg.sender) { uint256 totalToWithdraw; uint256 stakesWithdrawn; uint256 length = pendingUnstakes[msg.sender].length; uint256 firstPendingUnstake = length - stakeInfo[msg.sender].pendingUnstakesCount; // here we iterate since he first unstake that hasn't been withdrawn yet, and we "break" when we find one that hasn't been released yet // this ensures that we never iterate unstakes that have been already withdrawn for (uint256 i = firstPendingUnstake; i < length; i++) { Unstake storage pendingUnstake = pendingUnstakes[msg.sender][i]; // as soon as we hit a unstake that is not ready yet, we know that all the following ones are not ready either, // because the unstakes are sorted by `releaseTime` if (pendingUnstake.releaseTime > block.timestamp) break; pendingUnstake.withdrawn = true; stakesWithdrawn++; totalToWithdraw += pendingUnstake.amount; } if (totalToWithdraw > 0) { // update the storage count only after the loop stakeInfo[msg.sender].pendingUnstakesCount -= stakesWithdrawn; IERC20(stakedToken).safeTransfer(msg.sender, totalToWithdraw); emit Withdrawn(msg.sender, totalToWithdraw); } } /// @notice updates the rewards release, and the global rewards per token /// @dev The rewards release update is triggered by all functions with the updateRewards modifier. /// @dev But this function allows to manually triggering the rewards update, to minimize the step sizes function updateRewardsRelease() external { _updateGlobalRewardsPerStakedToken(); } //////////////////////// VIEW FUNCTIONS //////////////////////// /// @notice returns the sum of all active pending unstakes that can be withdrawn now /// @dev see withdraw() for more info about the for-loop iteration boundaries function getWithdrawableAmount(address account) public view returns (uint256 totalWithdrawable) { uint256 length = pendingUnstakes[account].length; uint256 firstPendingUnstake = length - stakeInfo[account].pendingUnstakesCount; for (uint256 i = firstPendingUnstake; i < length; i++) { if (pendingUnstakes[account][i].releaseTime > block.timestamp) break; totalWithdrawable += pendingUnstakes[account][i].amount; } } /// @notice returns the sum of all active pending unstakes of `account` that cannot be withdrawn yet /// @dev see withdraw() for more info about the for-loop iteration boundaries function getLockedUnstakedAmount(address account) public view returns (uint256 totalLocked) { uint256 length = pendingUnstakes[account].length; if (length == 0) return 0; uint256 firstPendingUnstake = length - stakeInfo[account].pendingUnstakesCount; if (firstPendingUnstake == length) return 0; // all unstakes are withdrawable (or there are no unstakes at all // here we start iterating from the tail, and go backwards until we hit an unstake that is already withdrawable for (uint256 i = length; i > firstPendingUnstake; i--) { uint256 index = i - 1; if (pendingUnstakes[account][index].releaseTime <= block.timestamp) break; totalLocked += pendingUnstakes[account][index].amount; } return totalLocked; } /// @notice returns the sum of all staked tokens for `account` function getStakingBalance(address account) public view returns (uint256) { return stakeInfo[account].balance; } // @notice returns the sum of all historical rewards claimed plus the pending rewards. function getHistoricalRewardsEarned(address account) public view returns (uint256) { return stakeInfo[account].totalRewardsClaimed + getClaimableRewards(account); } /// @notice returns the amount of rewards that would be received by `account` if he/she called `claimRewards()` /// @dev includes an estimation of the pending linear release since the last time it was updated, // because we cannot run the updateRewards modifier here as it is a view function function getClaimableRewards(address account) public view returns (uint256 estimatedRewards) { // the below calculations would revert when the array has no elements if (!rewardsData.isInitialized()) return 0; StakeInfo storage accountInfo = stakeInfo[account]; // here we estimate the increase in globalRewardsPerStaked token if the pending rewards were released uint256 globalRewardPerToken = globalRewardsPerStakedToken; // only update globalRewardPerToken if there are staked tokens to distribute among uint256 estimatedRewardsFromUnreleased; if (totalStakedTokens > 0) { globalRewardPerToken += (rewardsData.releasedSinceLastUpdate() * PRECISION) / totalStakedTokens; // this estimated rewards are only relevant if there is any balance in the account (and then necessarily totalStakeTokens>0) estimatedRewardsFromUnreleased = (accountInfo.balance * (globalRewardPerToken - accountInfo.updatedRewardsPerStakedToken)) / PRECISION; } return estimatedRewardsFromUnreleased + accountInfo.pendingRewards; } /// @notice returns an array of Unstake objects that haven't been withdrawn yet. /// @dev This includes the ones that are in lockup period, and the ones that are already withdrawable /// @dev The unstakes that have been already withdrawn are not included here. /// @dev Note that the withdrawn field in the Unstake struct will always be `false` in these ones /// @dev The length of the array can be read in advace with `unstakeInfo[account].pendingUnstakesCount` function getPendingUnstakes(address account) public view returns (Unstake[] memory unstakes) { uint256 length = pendingUnstakes[account].length; uint256 pendingUnstakesCount = stakeInfo[account].pendingUnstakesCount; uint256 firstPendingUnstake = length - pendingUnstakesCount; // the lenght of the output arrays is known before iteration unstakes = new Unstake[](pendingUnstakesCount); // item `firstPendinUnstake` goes into index=0 of the output array for (uint256 i = firstPendingUnstake; i < length; i++) { unstakes[i - firstPendingUnstake] = Unstake({ amount: pendingUnstakes[account][i].amount, releaseTime: pendingUnstakes[account][i].releaseTime, withdrawn: false // because we are only returning the pending ones }); } } /// @notice gives an approximated APR for the current rewards period and the current totalStakedTokens /// @dev This is only a rough estimation which makes the following assumptions: /// - It uses the current period rewards and duration: as soon as a new period is created, the APR can change. /// - It uses the current totalStakedTokens: the APR will change with every stake/unstake /// - If the period duration is 0, or there are no staked tokens, this function returns APR=0 function getEstimatedAPR() public view returns (uint256) { return rewardsData.estimatedAPR(totalStakedTokens); } //////////////////////// INTERNAL FUNCTIONS //////////////////////// /// @notice Triggers a release of the linear rewards distribution since the last update, // and with the released rewards, the global rewards per token is updated /// @dev If there are no staked tokens, there is no update function _updateGlobalRewardsPerStakedToken() internal returns (uint256 globalRewardPerToken) { // cache storage variables for gas savings uint256 totalTokens = totalStakedTokens; globalRewardPerToken = globalRewardsPerStakedToken; // if there are no staked tokens, there is no distribution, so the global rewards per token is not updated if (totalTokens == 0) { if (rewardsData.endDate > block.timestamp) { // push the start date forward until there are staked tokens rewardsData.startDate = uint64(block.timestamp); } return globalRewardPerToken; } // The difference between the last distribution and the released tokens following the linear release // is what needs to be distributed in this update uint256 released = rewardsData.releasedSinceLastUpdate(); // The rounding error here will be included in the next time `released` is calculated uint256 extraRewardsPerToken = (released * PRECISION) / totalTokens; // globalRewardsPerStakedToken is always incremented, it can never go down globalRewardPerToken += extraRewardsPerToken; // update storage globalRewardsPerStakedToken = globalRewardPerToken; // the actual amount of distributed tokens is (extraRewardsPerToken * totalTokens) / PRECISION, // however, as this result is rounded down, it can break some critical invariants by dust amounts. // Instead we store the last released amount, knowing that the difference between released and actually distributed // will be lost as dust wei in the contract // trying to keep track of those dust amounts would require more storage operations // and are not be worth the gas spent rewardsData.lastReleasedAmount += uint128(released); emit GlobalRewardsPerStakedTokenUpdated(released, globalRewardPerToken); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/utils/SafeERC20.sol) pragma solidity ^0.8.20; import {IERC20} from "../IERC20.sol"; import {IERC20Permit} from "../extensions/IERC20Permit.sol"; import {Address} from "../../../utils/Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using Address for address; /** * @dev An operation with an ERC20 token failed. */ error SafeERC20FailedOperation(address token); /** * @dev Indicates a failed `decreaseAllowance` request. */ error SafeERC20FailedDecreaseAllowance(address spender, uint256 currentAllowance, uint256 requestedDecrease); /** * @dev Transfer `value` amount of `token` from the calling contract to `to`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transfer, (to, value))); } /** * @dev Transfer `value` amount of `token` from `from` to `to`, spending the approval given by `from` to the * calling contract. If `token` returns no value, non-reverting calls are assumed to be successful. */ function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeCall(token.transferFrom, (from, to, value))); } /** * @dev Increase the calling contract's allowance toward `spender` by `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. */ function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 oldAllowance = token.allowance(address(this), spender); forceApprove(token, spender, oldAllowance + value); } /** * @dev Decrease the calling contract's allowance toward `spender` by `requestedDecrease`. If `token` returns no * value, non-reverting calls are assumed to be successful. */ function safeDecreaseAllowance(IERC20 token, address spender, uint256 requestedDecrease) internal { unchecked { uint256 currentAllowance = token.allowance(address(this), spender); if (currentAllowance < requestedDecrease) { revert SafeERC20FailedDecreaseAllowance(spender, currentAllowance, requestedDecrease); } forceApprove(token, spender, currentAllowance - requestedDecrease); } } /** * @dev Set the calling contract's allowance toward `spender` to `value`. If `token` returns no value, * non-reverting calls are assumed to be successful. Meant to be used with tokens that require the approval * to be set to zero before setting it to a non-zero value, such as USDT. */ function forceApprove(IERC20 token, address spender, uint256 value) internal { bytes memory approvalCall = abi.encodeCall(token.approve, (spender, value)); if (!_callOptionalReturnBool(token, approvalCall)) { _callOptionalReturn(token, abi.encodeCall(token.approve, (spender, 0))); _callOptionalReturn(token, approvalCall); } } /** * @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); if (returndata.length != 0 && !abi.decode(returndata, (bool))) { revert SafeERC20FailedOperation(address(token)); } } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). * * This is a variant of {_callOptionalReturn} that silents catches all reverts and returns a bool instead. */ function _callOptionalReturnBool(IERC20 token, bytes memory data) private returns (bool) { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We cannot use {Address-functionCall} here since this should return false // and not revert is the subcall reverts. (bool success, bytes memory returndata) = address(token).call(data); return success && (returndata.length == 0 || abi.decode(returndata, (bool))) && address(token).code.length > 0; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the value of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the value of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves a `value` amount of tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 value) 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 a `value` amount of tokens 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 value) external returns (bool); /** * @dev Moves a `value` amount of tokens from `from` to `to` using the * allowance mechanism. `value` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 value) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (access/Ownable.sol) pragma solidity ^0.8.20; import {Context} from "../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. * * The initial owner is set to the address provided by the deployer. 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; /** * @dev The caller account is not authorized to perform an operation. */ error OwnableUnauthorizedAccount(address account); /** * @dev The owner is not a valid owner account. (eg. `address(0)`) */ error OwnableInvalidOwner(address owner); event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the address provided by the deployer as the initial owner. */ constructor(address initialOwner) { if (initialOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _transferOwnership(initialOwner); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { if (owner() != _msgSender()) { revert OwnableUnauthorizedAccount(_msgSender()); } } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby disabling any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { if (newOwner == address(0)) { revert OwnableInvalidOwner(address(0)); } _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 (last updated v5.0.0) (access/Ownable2Step.sol) pragma solidity ^0.8.20; import {Ownable} from "./Ownable.sol"; /** * @dev Contract module which provides access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * The initial owner is specified at deployment time in the constructor for `Ownable`. This * can later be changed with {transferOwnership} and {acceptOwnership}. * * This module is used through inheritance. It will make available all functions * from parent (Ownable). */ abstract contract Ownable2Step is Ownable { address private _pendingOwner; event OwnershipTransferStarted(address indexed previousOwner, address indexed newOwner); /** * @dev Returns the address of the pending owner. */ function pendingOwner() public view virtual returns (address) { return _pendingOwner; } /** * @dev Starts the ownership transfer of the contract to a new account. Replaces the pending transfer if there is one. * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual override onlyOwner { _pendingOwner = newOwner; emit OwnershipTransferStarted(owner(), newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`) and deletes any pending owner. * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual override { delete _pendingOwner; super._transferOwnership(newOwner); } /** * @dev The new owner accepts the ownership transfer. */ function acceptOwnership() public virtual { address sender = _msgSender(); if (pendingOwner() != sender) { revert OwnableUnauthorizedAccount(sender); } _transferOwnership(sender); } }
pragma solidity 0.8.20; struct RewardsPeriod { // amount of rewards to be distributed linearly until the end of the period. // units: wei uint128 rewardsDeposited; // released amount in the last update // units: wei uint128 lastReleasedAmount; // timestamp when the period starts uint64 startDate; // timestamp when the period ends uint64 endDate; } library RewardsLogic { using RewardsLogic for RewardsPeriod; uint256 public constant PRECISSION = 1e18; /// @notice Reward tokens that have been released in this period according to the linear release function releasedRewardsSincePeriodStarted(RewardsPeriod storage self) internal view returns (uint256 releasedAmount) { // once the end date has passed all rewards are released if (block.timestamp > self.endDate) return self.rewardsDeposited; // before the period starts, no rewards are released if (block.timestamp < self.startDate) return 0; // between start and end, there is a linear release of the rewardsDeposited return (self.rewardsDeposited * (block.timestamp - self.startDate)) / (self.endDate - self.startDate); } /// @notice difference between the released amount according to the linear release, and the total released amount up to last update function releasedSinceLastUpdate(RewardsPeriod storage self) internal view returns (uint256 releasedAmount) { return self.releasedRewardsSincePeriodStarted() - self.lastReleasedAmount; } /// @notice This returns the value of rewards that haven't been distributed in a storage operation. /// @dev It does not take into account potential amounts that // might be released since the last update until now. function nonDistributedRewards(RewardsPeriod storage self) internal view returns (uint256 pendingToDistribute) { return self.rewardsDeposited - self.lastReleasedAmount; } /// @dev if endDate==0 it means that no rewards have been deposited yet any time /// @notice determines if there was at least one rewards deposit function isInitialized(RewardsPeriod storage self) internal view returns (bool) { return self.endDate > 0; } /// @notice This estimates the APR of the current period for the CURRENT TOTAL STAKED /// @dev This assumes that the totalStaked is constant over the entire period, which is of course a very relaxed assumption. /// @dev This therefore only provides a snapshot of the APR in this moment for the current totalStaked /// @dev units: ratio APR scaled up by PRECISION. Examples: /// - for 5% APR, the function would return 0.05 * 1e18. /// - for 100% APR, the function would return 1e18. function estimatedAPR(RewardsPeriod storage self, uint256 totalStaked) internal view returns (uint256) { // If there are no staked tokens, nobody is getting rewards, so APR is 0. if (totalStaked == 0) return 0; uint256 periodDuration = self.endDate - self.startDate; // This can only happen when no rewards have been distributed yet, in which case APR is also 0 if (periodDuration == 0) return 0; return (PRECISSION * self.rewardsDeposited * 365 days) / (totalStaked * periodDuration); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (token/ERC20/extensions/IERC20Permit.sol) pragma solidity ^0.8.20; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on {IERC20-approve}, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. * * ==== Security Considerations * * There are two important considerations concerning the use of `permit`. The first is that a valid permit signature * expresses an allowance, and it should not be assumed to convey additional meaning. In particular, it should not be * considered as an intention to spend the allowance in any specific way. The second is that because permits have * built-in replay protection and can be submitted by anyone, they can be frontrun. A protocol that uses permits should * take this into consideration and allow a `permit` call to fail. Combining these two aspects, a pattern that may be * generally recommended is: * * ```solidity * function doThingWithPermit(..., uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public { * try token.permit(msg.sender, address(this), value, deadline, v, r, s) {} catch {} * doThing(..., value); * } * * function doThing(..., uint256 value) public { * token.safeTransferFrom(msg.sender, address(this), value); * ... * } * ``` * * Observe that: 1) `msg.sender` is used as the owner, leaving no ambiguity as to the signer intent, and 2) the use of * `try/catch` allows the permit to fail and makes the code tolerant to frontrunning. (See also * {SafeERC20-safeTransferFrom}). * * Additionally, note that smart contract wallets (such as Argent or Safe) are not able to produce permit signatures, so * contracts should have entry points that don't rely on permit. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over ``owner``'s tokens, * given ``owner``'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. * * CAUTION: See Security Considerations above. */ function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for {permit}, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.0) (utils/Address.sol) pragma solidity ^0.8.20; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev The ETH balance of the account is not enough to perform the operation. */ error AddressInsufficientBalance(address account); /** * @dev There's no code at `target` (it is not a contract). */ error AddressEmptyCode(address target); /** * @dev A call to an address target failed. The target may have reverted. */ error FailedInnerCall(); /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://consensys.net/diligence/blog/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.8.20/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { if (address(this).balance < amount) { revert AddressInsufficientBalance(address(this)); } (bool success, ) = recipient.call{value: amount}(""); if (!success) { revert FailedInnerCall(); } } /** * @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 or custom error, it is bubbled * up by this function (like regular Solidity function calls). However, if * the call reverted with no returned reason, this function reverts with a * {FailedInnerCall} error. * * 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. */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0); } /** * @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`. */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { if (address(this).balance < value) { revert AddressInsufficientBalance(address(this)); } (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and reverts if the target * was not a contract or bubbling up the revert reason (falling back to {FailedInnerCall}) in case of an * unsuccessful call. */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata ) internal view returns (bytes memory) { if (!success) { _revert(returndata); } else { // only check if target is a contract if the call was successful and the return data is empty // otherwise we already know that it was a contract if (returndata.length == 0 && target.code.length == 0) { revert AddressEmptyCode(target); } return returndata; } } /** * @dev Tool to verify that a low level call was successful, and reverts if it wasn't, either by bubbling the * revert reason or with a default {FailedInnerCall} error. */ function verifyCallResult(bool success, bytes memory returndata) internal pure returns (bytes memory) { if (!success) { _revert(returndata); } else { return returndata; } } /** * @dev Reverts with returndata if present. Otherwise reverts with {FailedInnerCall}. */ function _revert(bytes memory returndata) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert FailedInnerCall(); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v5.0.1) (utils/Context.sol) pragma solidity ^0.8.20; /** * @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; } function _contextSuffixLength() internal view virtual returns (uint256) { return 0; } }
{ "remappings": [ "@ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "@forge-std/=lib/forge-std/src/", "@openzeppelin/=lib/openzeppelin-contracts/", "@openzeppelin/contracts/=lib/openzeppelin-contracts/contracts/", "ds-test/=lib/openzeppelin-contracts/lib/forge-std/lib/ds-test/src/", "erc4626-tests/=lib/openzeppelin-contracts/lib/erc4626-tests/", "forge-std/=lib/forge-std/src/", "openzeppelin-contracts/=lib/openzeppelin-contracts/" ], "optimizer": { "enabled": true, "runs": 200 }, "metadata": { "useLiteralContent": false, "bytecodeHash": "ipfs", "appendCBOR": true }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "evmVersion": "paris", "viaIR": false, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_stakedToken","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"target","type":"address"}],"name":"AddressEmptyCode","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"AddressInsufficientBalance","type":"error"},{"inputs":[],"name":"FailedInnerCall","type":"error"},{"inputs":[{"internalType":"address","name":"owner","type":"address"}],"name":"OwnableInvalidOwner","type":"error"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"OwnableUnauthorizedAccount","type":"error"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"SafeERC20FailedOperation","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"ClaimedRewards","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountDeposited","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amountDistributed","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"periodInDays","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"amountReleased","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"newGlobalRewardsPerToken","type":"uint256"}],"name":"GlobalRewardsPerStakedTokenUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferStarted","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Staked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Unstaked","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount","type":"uint256"}],"name":"Withdrawn","type":"event"},{"inputs":[],"name":"MAX_PENDING_UNSTAKES","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"PRECISION","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNSTAKE_LOCKUP_PERIOD","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"},{"internalType":"uint256","name":"_periodInDays","type":"uint256"}],"name":"depositRewards","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getClaimableRewards","outputs":[{"internalType":"uint256","name":"estimatedRewards","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getEstimatedAPR","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getHistoricalRewardsEarned","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getLockedUnstakedAmount","outputs":[{"internalType":"uint256","name":"totalLocked","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getPendingUnstakes","outputs":[{"components":[{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"uint64","name":"releaseTime","type":"uint64"},{"internalType":"bool","name":"withdrawn","type":"bool"}],"internalType":"struct PinStaking.Unstake[]","name":"unstakes","type":"tuple[]"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getStakingBalance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"getWithdrawableAmount","outputs":[{"internalType":"uint256","name":"totalWithdrawable","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"globalRewardsPerStakedToken","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"uint256","name":"","type":"uint256"}],"name":"pendingUnstakes","outputs":[{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"uint64","name":"releaseTime","type":"uint64"},{"internalType":"bool","name":"withdrawn","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"rewardsData","outputs":[{"internalType":"uint128","name":"rewardsDeposited","type":"uint128"},{"internalType":"uint128","name":"lastReleasedAmount","type":"uint128"},{"internalType":"uint64","name":"startDate","type":"uint64"},{"internalType":"uint64","name":"endDate","type":"uint64"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"stakeInfo","outputs":[{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"pendingRewards","type":"uint256"},{"internalType":"uint256","name":"updatedRewardsPerStakedToken","type":"uint256"},{"internalType":"uint256","name":"pendingUnstakesCount","type":"uint256"},{"internalType":"uint256","name":"totalRewardsClaimed","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakedToken","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalStakedTokens","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"unstake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"updateRewardsRelease","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdraw","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60a06040523480156200001157600080fd5b5060405162001e0438038062001e048339810160408190526200003491620000e7565b33806200005b57604051631e4fbdf760e01b81526000600482015260240160405180910390fd5b620000668162000079565b506001600160a01b031660805262000119565b600180546001600160a01b0319169055620000948162000097565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b600060208284031215620000fa57600080fd5b81516001600160a01b03811681146200011257600080fd5b9392505050565b608051611cb3620001516000396000818161042d0152818161096a01528181610b8201528181610f4c01526112930152611cb36000f3fe608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063bdd071fb11610097578063e30c397811610071578063e30c39781461044f578063f2fde38b14610460578063f677717514610473578063fa6eceb91461048657600080fd5b8063bdd071fb146103fb578063c01f76221461040e578063cc7a262e1461042857600080fd5b8063a694fc3a116100d3578063a694fc3a1461039d578063aaf5eb68146103b0578063b04ef9c2146103bf578063ba6fcde3146103e857600080fd5b8063715018a61461036857806379ba5097146103705780638da5cb5b1461037857600080fd5b806339ea5dd91161016657806347af43f51161014057806347af43f5146102f35780635722d512146102fc57806357e9cd601461031c578063597c265e1461032657600080fd5b806339ea5dd9146102da5780633ae73259146102e25780633ccfd60b146102eb57600080fd5b806303fb4295146101ae5780631601e641146102245780631a90385b146102895780632e17de78146102aa578063308e401e146102bf578063372500ab146102d2575b600080fd5b6002546003546101e5916001600160801b0380821692600160801b90920416906001600160401b0380821691600160401b90041684565b604080516001600160801b0395861681529490931660208501526001600160401b03918216928401929092521660608201526080015b60405180910390f35b610261610232366004611a07565b600660205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a00161021b565b61029c610297366004611a07565b61048e565b60405190815260200161021b565b6102bd6102b8366004611a22565b6104c5565b005b61029c6102cd366004611a07565b6107d3565b6102bd61089c565b61029c6109cb565b61029c60055481565b6102bd6109e8565b61029c60045481565b61030f61030a366004611a07565b610be6565b60405161021b9190611a3b565b61029c62093a8081565b610339610334366004611aa8565b610d7a565b604080516001600160801b0390941684526001600160401b03909216602084015215159082015260600161021b565b6102bd610dcd565b6102bd610de1565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161021b565b6102bd6103ab366004611a22565b610e25565b61029c670de0b6b3a764000081565b61029c6103cd366004611a07565b6001600160a01b031660009081526006602052604090205490565b61029c6103f6366004611a07565b610fa6565b6102bd610409366004611ad2565b6110dc565b610416603281565b60405160ff909116815260200161021b565b6103857f000000000000000000000000000000000000000000000000000000000000000081565b6001546001600160a01b0316610385565b6102bd61046e366004611a07565b611302565b61029c610481366004611a07565b611373565b6102bd61145d565b6000610499826107d3565b6001600160a01b0383166000908152600660205260409020600401546104bf9190611b0a565b92915050565b6003543390600160401b90046001600160401b0316156105515760006104e9611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a76400009061051e9084611b1d565b825461052a9190611b30565b6105349190611b47565b8160010160008282546105479190611b0a565b9091555050600201555b336000908152600660205260409020826105a75760405162461bcd60e51b81526020600482015260126024820152710496e76616c69643a205f616d6f756e743d360741b60448201526064015b60405180910390fd5b80548311156105f85760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e74207374616b656420616d6f756e74000000000000604482015260640161059e565b60038101546032101561064d5760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e792070656e64696e6720756e7374616b657300000000000000604482015260640161059e565b600554815484908390600090610664908490611b1d565b9091555061067490508482611b1d565b600555336000908152600760209081526040918290208251606081019093526001600160801b0387168352919081016106b062093a8042611b0a565b6001600160401b039081168252600060209283018190528454600181018655948152828120845195018054938501516040909501511515600160c01b0260ff60c01b1995909316600160801b026001600160c01b03199094166001600160801b03909616959095179290921792909216919091179091556003830180549161073783611b69565b9190505550838114801561075d575060035442600160401b9091046001600160401b0316115b1561079857600061076e600261157e565b6003805467ffffffffffffffff1916426001600160401b03161790556001600160801b0316600255505b60405184815233907f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f759060200160405180910390a250505050565b600354600090600160401b90046001600160401b03166107f557506000919050565b6001600160a01b0382166000908152600660205260408120600454600554919290911561088457600554670de0b6b3a764000061083260026115ae565b61083c9190611b30565b6108469190611b47565b6108509083611b0a565b9150670de0b6b3a764000083600201548361086b9190611b1d565b84546108779190611b30565b6108819190611b47565b90505b60018301546108939082611b0a565b95945050505050565b6003543390600160401b90046001600160401b0316156109285760006108c0611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a7640000906108f59084611b1d565b82546109019190611b30565b61090b9190611b47565b81600101600082825461091e9190611b0a565b9091555050600201555b336000908152600660205260408120600181018054908390556004909101805491928392610957908490611b0a565b9091555061099190506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633836115d6565b60405181815233907f2d5429efdeca7741a8cd94067b18d988bc4e5f1d5b8272c37b7bfc31e9bfa32c906020015b60405180910390a25050565b60006109e3600554600261163a90919063ffffffff16565b905090565b6003543390600160401b90046001600160401b031615610a74576000610a0c611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a764000090610a419084611b1d565b8254610a4d9190611b30565b610a579190611b47565b816001016000828254610a6a9190611b0a565b9091555050600201555b3360009081526007602090815260408083205460069092528220600301548291908290610aa19083611b1d565b9050805b82811015610b4657336000908152600760205260408120805483908110610ace57610ace611b82565b6000918252602090912001805490915042600160801b9091046001600160401b03161115610afc5750610b46565b805460ff60c01b1916600160c01b17815584610b1781611b69565b8254909650610b3091506001600160801b031687611b0a565b9550508080610b3e90611b69565b915050610aa5565b508315610bdf573360009081526006602052604081206003018054859290610b6f908490611b1d565b90915550610ba990506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633866115d6565b60405184815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a25b5050505050565b6001600160a01b0381166000908152600760209081526040808320546006909252822060030154606092610c1a8284611b1d565b9050816001600160401b03811115610c3457610c34611b98565b604051908082528060200260200182016040528015610c7f57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610c525790505b509350805b83811015610d7157604051806060016040528060076000896001600160a01b03166001600160a01b031681526020019081526020016000208381548110610ccd57610ccd611b82565b60009182526020808320909101546001600160801b031683526001600160a01b038a1682526007815260409091208054929091019184908110610d1257610d12611b82565b60009182526020808320909101546001600160401b03600160801b909104168352919091015285610d438484611b1d565b81518110610d5357610d53611b82565b60200260200101819052508080610d6990611b69565b915050610c84565b50505050919050565b60076020528160005260406000208181548110610d9657600080fd5b6000918252602090912001546001600160801b0381169250600160801b81046001600160401b03169150600160c01b900460ff1683565b610dd56116d5565b610ddf6000611702565b565b60015433906001600160a01b03168114610e195760405163118cdaa760e01b81526001600160a01b038216600482015260240161059e565b610e2281611702565b50565b6003543390600160401b90046001600160401b031615610eb1576000610e49611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a764000090610e7e9084611b1d565b8254610e8a9190611b30565b610e949190611b47565b816001016000828254610ea79190611b0a565b9091555050600201555b60008211610f015760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161059e565b3360009081526006602052604081208054849290610f20908490611b0a565b925050819055508160056000828254610f399190611b0a565b90915550610f7490506001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308561171b565b60405182815233907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d906020016109bf565b6001600160a01b038116600090815260076020526040812054808203610fcf5750600092915050565b6001600160a01b038316600090815260066020526040812060030154610ff59083611b1d565b9050818103611008575060009392505050565b815b818111156110d457600061101f600183611b1d565b6001600160a01b0387166000908152600760205260409020805491925042918390811061104e5761104e611b82565b600091825260209091200154600160801b90046001600160401b03161161107557506110d4565b6001600160a01b038616600090815260076020526040902080548290811061109f5761109f611b82565b6000918252602090912001546110be906001600160801b031686611b0a565b94505080806110cc90611bae565b91505061100a565b505050919050565b6110e46116d5565b600082116111345760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420696e7075743a205f616d6f756e743d300000000000000000604482015260640161059e565b60018110156111855760405162461bcd60e51b815260206004820152601e60248201527f496e76616c69643a205f706572696f64496e44617973203c2031206461790000604482015260640161059e565b61072181106111d65760405162461bcd60e51b815260206004820181905260248201527f496e76616c69643a205f706572696f64496e44617973203e2035207965617273604482015260640161059e565b600354600090600160401b90046001600160401b031615611207576111f9611461565b50611204600261157e565b90505b60006112138285611b0a565b6001600160801b0381166002556003805467ffffffffffffffff1916426001600160401b0316179055905061124b8362015180611b30565b6112559042611b0a565b600380546001600160401b0392909216600160401b026fffffffffffffffff0000000000000000199092169190911790556112bb6001600160a01b037f00000000000000000000000000000000000000000000000000000000000000001633308761171b565b60408051858152602081018390529081018490527f1ca606821992e3b34613b5b29c0bbade3a907b2969d7f9f2927f726fa4baccfb9060600160405180910390a150505050565b61130a6116d5565b600180546001600160a01b0383166001600160a01b0319909116811790915561133b6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b038116600090815260076020908152604080832054600690925282206003015482906113a69083611b1d565b9050805b828110156110d4576001600160a01b03851660009081526007602052604090208054429190839081106113df576113df611b82565b600091825260209091200154600160801b90046001600160401b0316116110d4576001600160a01b038516600090815260076020526040902080548290811061142a5761142a611b82565b600091825260209091200154611449906001600160801b031685611b0a565b93508061145581611b69565b9150506113aa565b610e225b6005546004549060008190036114ad5760035442600160401b9091046001600160401b031611156114a9576003805467ffffffffffffffff1916426001600160401b03161790555b5090565b60006114b960026115ae565b90506000826114d0670de0b6b3a764000084611b30565b6114da9190611b47565b90506114e68185611b0a565b6004819055600280549195508391601090611512908490600160801b90046001600160801b0316611bc5565b92506101000a8154816001600160801b0302191690836001600160801b031602179055507f61c641245dff9e42d8fd760e414c33027682bd7b0ceb46143a0cbc1ea71684d58285604051611570929190918252602082015260400190565b60405180910390a150505090565b805460009061159f906001600160801b03600160801b820481169116611bec565b6001600160801b031692915050565b8054600090600160801b90046001600160801b03166115cc8361175a565b6104bf9190611b1d565b6040516001600160a01b0383811660248301526044820183905261163591859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050611801565b505050565b60008160000361164c575060006104bf565b6001830154600090611671906001600160401b0380821691600160401b900416611c0c565b6001600160401b031690508060000361168e5760009150506104bf565b6116988184611b30565b84546116b5906001600160801b0316670de0b6b3a7640000611b30565b6116c3906301e13380611b30565b6116cd9190611b47565b949350505050565b6000546001600160a01b03163314610ddf5760405163118cdaa760e01b815233600482015260240161059e565b600180546001600160a01b0319169055610e2281611864565b6040516001600160a01b0384811660248301528381166044830152606482018390526117549186918216906323b872dd90608401611603565b50505050565b6001810154600090600160401b90046001600160401b03164211156117875750546001600160801b031690565b60018201546001600160401b03164210156117a457506000919050565b60018201546117c6906001600160401b0380821691600160401b900416611c0c565b60018301546001600160401b03918216916117e2911642611b1d565b83546117f791906001600160801b0316611b30565b6104bf9190611b47565b60006118166001600160a01b038416836118b4565b9050805160001415801561183b5750808060200190518101906118399190611c2c565b155b1561163557604051635274afe760e01b81526001600160a01b038416600482015260240161059e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60606118c2838360006118c9565b9392505050565b6060814710156118ee5760405163cd78605960e01b815230600482015260240161059e565b600080856001600160a01b0316848660405161190a9190611c4e565b60006040518083038185875af1925050503d8060008114611947576040519150601f19603f3d011682016040523d82523d6000602084013e61194c565b606091505b509150915061195c868383611966565b9695505050505050565b60608261197b57611976826119c2565b6118c2565b815115801561199257506001600160a01b0384163b155b156119bb57604051639996b31560e01b81526001600160a01b038516600482015260240161059e565b50806118c2565b8051156119d25780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114611a0257600080fd5b919050565b600060208284031215611a1957600080fd5b6118c2826119eb565b600060208284031215611a3457600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015611a9b57815180516001600160801b03168552868101516001600160401b03168786015285015115158585015260609093019290850190600101611a58565b5091979650505050505050565b60008060408385031215611abb57600080fd5b611ac4836119eb565b946020939093013593505050565b60008060408385031215611ae557600080fd5b50508035926020909101359150565b634e487b7160e01b600052601160045260246000fd5b808201808211156104bf576104bf611af4565b818103818111156104bf576104bf611af4565b80820281158282048414176104bf576104bf611af4565b600082611b6457634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611b7b57611b7b611af4565b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600081611bbd57611bbd611af4565b506000190190565b6001600160801b03818116838216019080821115611be557611be5611af4565b5092915050565b6001600160801b03828116828216039080821115611be557611be5611af4565b6001600160401b03828116828216039080821115611be557611be5611af4565b600060208284031215611c3e57600080fd5b815180151581146118c257600080fd5b6000825160005b81811015611c6f5760208186018101518583015201611c55565b50600092019182525091905056fea264697066735822122090c457df3c8741ce4c6b5789f7814ef3fc0b2658459a0a9520acced5b0914e6364736f6c634300081400330000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c4
Deployed Bytecode
0x608060405234801561001057600080fd5b50600436106101a95760003560e01c8063715018a6116100f9578063bdd071fb11610097578063e30c397811610071578063e30c39781461044f578063f2fde38b14610460578063f677717514610473578063fa6eceb91461048657600080fd5b8063bdd071fb146103fb578063c01f76221461040e578063cc7a262e1461042857600080fd5b8063a694fc3a116100d3578063a694fc3a1461039d578063aaf5eb68146103b0578063b04ef9c2146103bf578063ba6fcde3146103e857600080fd5b8063715018a61461036857806379ba5097146103705780638da5cb5b1461037857600080fd5b806339ea5dd91161016657806347af43f51161014057806347af43f5146102f35780635722d512146102fc57806357e9cd601461031c578063597c265e1461032657600080fd5b806339ea5dd9146102da5780633ae73259146102e25780633ccfd60b146102eb57600080fd5b806303fb4295146101ae5780631601e641146102245780631a90385b146102895780632e17de78146102aa578063308e401e146102bf578063372500ab146102d2575b600080fd5b6002546003546101e5916001600160801b0380821692600160801b90920416906001600160401b0380821691600160401b90041684565b604080516001600160801b0395861681529490931660208501526001600160401b03918216928401929092521660608201526080015b60405180910390f35b610261610232366004611a07565b600660205260009081526040902080546001820154600283015460038401546004909401549293919290919085565b604080519586526020860194909452928401919091526060830152608082015260a00161021b565b61029c610297366004611a07565b61048e565b60405190815260200161021b565b6102bd6102b8366004611a22565b6104c5565b005b61029c6102cd366004611a07565b6107d3565b6102bd61089c565b61029c6109cb565b61029c60055481565b6102bd6109e8565b61029c60045481565b61030f61030a366004611a07565b610be6565b60405161021b9190611a3b565b61029c62093a8081565b610339610334366004611aa8565b610d7a565b604080516001600160801b0390941684526001600160401b03909216602084015215159082015260600161021b565b6102bd610dcd565b6102bd610de1565b6000546001600160a01b03165b6040516001600160a01b03909116815260200161021b565b6102bd6103ab366004611a22565b610e25565b61029c670de0b6b3a764000081565b61029c6103cd366004611a07565b6001600160a01b031660009081526006602052604090205490565b61029c6103f6366004611a07565b610fa6565b6102bd610409366004611ad2565b6110dc565b610416603281565b60405160ff909116815260200161021b565b6103857f0000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c481565b6001546001600160a01b0316610385565b6102bd61046e366004611a07565b611302565b61029c610481366004611a07565b611373565b6102bd61145d565b6000610499826107d3565b6001600160a01b0383166000908152600660205260409020600401546104bf9190611b0a565b92915050565b6003543390600160401b90046001600160401b0316156105515760006104e9611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a76400009061051e9084611b1d565b825461052a9190611b30565b6105349190611b47565b8160010160008282546105479190611b0a565b9091555050600201555b336000908152600660205260409020826105a75760405162461bcd60e51b81526020600482015260126024820152710496e76616c69643a205f616d6f756e743d360741b60448201526064015b60405180910390fd5b80548311156105f85760405162461bcd60e51b815260206004820152601a60248201527f496e73756666696369656e74207374616b656420616d6f756e74000000000000604482015260640161059e565b60038101546032101561064d5760405162461bcd60e51b815260206004820152601960248201527f546f6f206d616e792070656e64696e6720756e7374616b657300000000000000604482015260640161059e565b600554815484908390600090610664908490611b1d565b9091555061067490508482611b1d565b600555336000908152600760209081526040918290208251606081019093526001600160801b0387168352919081016106b062093a8042611b0a565b6001600160401b039081168252600060209283018190528454600181018655948152828120845195018054938501516040909501511515600160c01b0260ff60c01b1995909316600160801b026001600160c01b03199094166001600160801b03909616959095179290921792909216919091179091556003830180549161073783611b69565b9190505550838114801561075d575060035442600160401b9091046001600160401b0316115b1561079857600061076e600261157e565b6003805467ffffffffffffffff1916426001600160401b03161790556001600160801b0316600255505b60405184815233907f0f5bb82176feb1b5e747e28471aa92156a04d9f3ab9f45f28e2d704232b93f759060200160405180910390a250505050565b600354600090600160401b90046001600160401b03166107f557506000919050565b6001600160a01b0382166000908152600660205260408120600454600554919290911561088457600554670de0b6b3a764000061083260026115ae565b61083c9190611b30565b6108469190611b47565b6108509083611b0a565b9150670de0b6b3a764000083600201548361086b9190611b1d565b84546108779190611b30565b6108819190611b47565b90505b60018301546108939082611b0a565b95945050505050565b6003543390600160401b90046001600160401b0316156109285760006108c0611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a7640000906108f59084611b1d565b82546109019190611b30565b61090b9190611b47565b81600101600082825461091e9190611b0a565b9091555050600201555b336000908152600660205260408120600181018054908390556004909101805491928392610957908490611b0a565b9091555061099190506001600160a01b037f0000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c41633836115d6565b60405181815233907f2d5429efdeca7741a8cd94067b18d988bc4e5f1d5b8272c37b7bfc31e9bfa32c906020015b60405180910390a25050565b60006109e3600554600261163a90919063ffffffff16565b905090565b6003543390600160401b90046001600160401b031615610a74576000610a0c611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a764000090610a419084611b1d565b8254610a4d9190611b30565b610a579190611b47565b816001016000828254610a6a9190611b0a565b9091555050600201555b3360009081526007602090815260408083205460069092528220600301548291908290610aa19083611b1d565b9050805b82811015610b4657336000908152600760205260408120805483908110610ace57610ace611b82565b6000918252602090912001805490915042600160801b9091046001600160401b03161115610afc5750610b46565b805460ff60c01b1916600160c01b17815584610b1781611b69565b8254909650610b3091506001600160801b031687611b0a565b9550508080610b3e90611b69565b915050610aa5565b508315610bdf573360009081526006602052604081206003018054859290610b6f908490611b1d565b90915550610ba990506001600160a01b037f0000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c41633866115d6565b60405184815233907f7084f5476618d8e60b11ef0d7d3f06914655adb8793e28ff7f018d4c76d505d59060200160405180910390a25b5050505050565b6001600160a01b0381166000908152600760209081526040808320546006909252822060030154606092610c1a8284611b1d565b9050816001600160401b03811115610c3457610c34611b98565b604051908082528060200260200182016040528015610c7f57816020015b6040805160608101825260008082526020808301829052928201528252600019909201910181610c525790505b509350805b83811015610d7157604051806060016040528060076000896001600160a01b03166001600160a01b031681526020019081526020016000208381548110610ccd57610ccd611b82565b60009182526020808320909101546001600160801b031683526001600160a01b038a1682526007815260409091208054929091019184908110610d1257610d12611b82565b60009182526020808320909101546001600160401b03600160801b909104168352919091015285610d438484611b1d565b81518110610d5357610d53611b82565b60200260200101819052508080610d6990611b69565b915050610c84565b50505050919050565b60076020528160005260406000208181548110610d9657600080fd5b6000918252602090912001546001600160801b0381169250600160801b81046001600160401b03169150600160c01b900460ff1683565b610dd56116d5565b610ddf6000611702565b565b60015433906001600160a01b03168114610e195760405163118cdaa760e01b81526001600160a01b038216600482015260240161059e565b610e2281611702565b50565b6003543390600160401b90046001600160401b031615610eb1576000610e49611461565b6001600160a01b0383166000908152600660205260409020600281015491925090670de0b6b3a764000090610e7e9084611b1d565b8254610e8a9190611b30565b610e949190611b47565b816001016000828254610ea79190611b0a565b9091555050600201555b60008211610f015760405162461bcd60e51b815260206004820152601d60248201527f416d6f756e74206d7573742062652067726561746572207468616e2030000000604482015260640161059e565b3360009081526006602052604081208054849290610f20908490611b0a565b925050819055508160056000828254610f399190611b0a565b90915550610f7490506001600160a01b037f0000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c41633308561171b565b60405182815233907f9e71bc8eea02a63969f509818f2dafb9254532904319f9dbda79b67bd34a5f3d906020016109bf565b6001600160a01b038116600090815260076020526040812054808203610fcf5750600092915050565b6001600160a01b038316600090815260066020526040812060030154610ff59083611b1d565b9050818103611008575060009392505050565b815b818111156110d457600061101f600183611b1d565b6001600160a01b0387166000908152600760205260409020805491925042918390811061104e5761104e611b82565b600091825260209091200154600160801b90046001600160401b03161161107557506110d4565b6001600160a01b038616600090815260076020526040902080548290811061109f5761109f611b82565b6000918252602090912001546110be906001600160801b031686611b0a565b94505080806110cc90611bae565b91505061100a565b505050919050565b6110e46116d5565b600082116111345760405162461bcd60e51b815260206004820152601860248201527f496e76616c696420696e7075743a205f616d6f756e743d300000000000000000604482015260640161059e565b60018110156111855760405162461bcd60e51b815260206004820152601e60248201527f496e76616c69643a205f706572696f64496e44617973203c2031206461790000604482015260640161059e565b61072181106111d65760405162461bcd60e51b815260206004820181905260248201527f496e76616c69643a205f706572696f64496e44617973203e2035207965617273604482015260640161059e565b600354600090600160401b90046001600160401b031615611207576111f9611461565b50611204600261157e565b90505b60006112138285611b0a565b6001600160801b0381166002556003805467ffffffffffffffff1916426001600160401b0316179055905061124b8362015180611b30565b6112559042611b0a565b600380546001600160401b0392909216600160401b026fffffffffffffffff0000000000000000199092169190911790556112bb6001600160a01b037f0000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c41633308761171b565b60408051858152602081018390529081018490527f1ca606821992e3b34613b5b29c0bbade3a907b2969d7f9f2927f726fa4baccfb9060600160405180910390a150505050565b61130a6116d5565b600180546001600160a01b0383166001600160a01b0319909116811790915561133b6000546001600160a01b031690565b6001600160a01b03167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b6001600160a01b038116600090815260076020908152604080832054600690925282206003015482906113a69083611b1d565b9050805b828110156110d4576001600160a01b03851660009081526007602052604090208054429190839081106113df576113df611b82565b600091825260209091200154600160801b90046001600160401b0316116110d4576001600160a01b038516600090815260076020526040902080548290811061142a5761142a611b82565b600091825260209091200154611449906001600160801b031685611b0a565b93508061145581611b69565b9150506113aa565b610e225b6005546004549060008190036114ad5760035442600160401b9091046001600160401b031611156114a9576003805467ffffffffffffffff1916426001600160401b03161790555b5090565b60006114b960026115ae565b90506000826114d0670de0b6b3a764000084611b30565b6114da9190611b47565b90506114e68185611b0a565b6004819055600280549195508391601090611512908490600160801b90046001600160801b0316611bc5565b92506101000a8154816001600160801b0302191690836001600160801b031602179055507f61c641245dff9e42d8fd760e414c33027682bd7b0ceb46143a0cbc1ea71684d58285604051611570929190918252602082015260400190565b60405180910390a150505090565b805460009061159f906001600160801b03600160801b820481169116611bec565b6001600160801b031692915050565b8054600090600160801b90046001600160801b03166115cc8361175a565b6104bf9190611b1d565b6040516001600160a01b0383811660248301526044820183905261163591859182169063a9059cbb906064015b604051602081830303815290604052915060e01b6020820180516001600160e01b038381831617835250505050611801565b505050565b60008160000361164c575060006104bf565b6001830154600090611671906001600160401b0380821691600160401b900416611c0c565b6001600160401b031690508060000361168e5760009150506104bf565b6116988184611b30565b84546116b5906001600160801b0316670de0b6b3a7640000611b30565b6116c3906301e13380611b30565b6116cd9190611b47565b949350505050565b6000546001600160a01b03163314610ddf5760405163118cdaa760e01b815233600482015260240161059e565b600180546001600160a01b0319169055610e2281611864565b6040516001600160a01b0384811660248301528381166044830152606482018390526117549186918216906323b872dd90608401611603565b50505050565b6001810154600090600160401b90046001600160401b03164211156117875750546001600160801b031690565b60018201546001600160401b03164210156117a457506000919050565b60018201546117c6906001600160401b0380821691600160401b900416611c0c565b60018301546001600160401b03918216916117e2911642611b1d565b83546117f791906001600160801b0316611b30565b6104bf9190611b47565b60006118166001600160a01b038416836118b4565b9050805160001415801561183b5750808060200190518101906118399190611c2c565b155b1561163557604051635274afe760e01b81526001600160a01b038416600482015260240161059e565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60606118c2838360006118c9565b9392505050565b6060814710156118ee5760405163cd78605960e01b815230600482015260240161059e565b600080856001600160a01b0316848660405161190a9190611c4e565b60006040518083038185875af1925050503d8060008114611947576040519150601f19603f3d011682016040523d82523d6000602084013e61194c565b606091505b509150915061195c868383611966565b9695505050505050565b60608261197b57611976826119c2565b6118c2565b815115801561199257506001600160a01b0384163b155b156119bb57604051639996b31560e01b81526001600160a01b038516600482015260240161059e565b50806118c2565b8051156119d25780518082602001fd5b604051630a12f52160e11b815260040160405180910390fd5b80356001600160a01b0381168114611a0257600080fd5b919050565b600060208284031215611a1957600080fd5b6118c2826119eb565b600060208284031215611a3457600080fd5b5035919050565b602080825282518282018190526000919060409081850190868401855b82811015611a9b57815180516001600160801b03168552868101516001600160401b03168786015285015115158585015260609093019290850190600101611a58565b5091979650505050505050565b60008060408385031215611abb57600080fd5b611ac4836119eb565b946020939093013593505050565b60008060408385031215611ae557600080fd5b50508035926020909101359150565b634e487b7160e01b600052601160045260246000fd5b808201808211156104bf576104bf611af4565b818103818111156104bf576104bf611af4565b80820281158282048414176104bf576104bf611af4565b600082611b6457634e487b7160e01b600052601260045260246000fd5b500490565b600060018201611b7b57611b7b611af4565b5060010190565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fd5b600081611bbd57611bbd611af4565b506000190190565b6001600160801b03818116838216019080821115611be557611be5611af4565b5092915050565b6001600160801b03828116828216039080821115611be557611be5611af4565b6001600160401b03828116828216039080821115611be557611be5611af4565b600060208284031215611c3e57600080fd5b815180151581146118c257600080fd5b6000825160005b81811015611c6f5760208186018101518583015201611c55565b50600092019182525091905056fea264697066735822122090c457df3c8741ce4c6b5789f7814ef3fc0b2658459a0a9520acced5b0914e6364736f6c63430008140033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
0000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c4
-----Decoded View---------------
Arg [0] : _stakedToken (address): 0x2e44f3f609ff5aA4819B323FD74690f07C3607c4
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 0000000000000000000000002e44f3f609ff5aa4819b323fd74690f07c3607c4
Loading...
Loading
Loading...
Loading
OVERVIEW
Staking Contract for $PINLoading...
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.