More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 22,805 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Deposit To Lido | 18444808 | 425 days ago | IN | 0.018 ETH | 0.00165171 | ||||
Deposit To Lido | 18358209 | 437 days ago | IN | 0.014 ETH | 0.0008293 | ||||
Deposit To Lido | 18358152 | 437 days ago | IN | 0.012 ETH | 0.00088912 | ||||
Deposit To Lido | 18358021 | 437 days ago | IN | 0.015 ETH | 0.00094328 | ||||
Deposit To Lido | 18357962 | 437 days ago | IN | 0.017 ETH | 0.00088852 | ||||
Deposit To Lido | 18357895 | 437 days ago | IN | 0.013 ETH | 0.00094531 | ||||
Deposit To Lido | 18357828 | 437 days ago | IN | 0.011 ETH | 0.00088445 | ||||
Deposit To Lido | 18357768 | 437 days ago | IN | 0.014 ETH | 0.0011125 | ||||
Deposit To Lido | 18357711 | 437 days ago | IN | 0.01 ETH | 0.00078906 | ||||
Deposit To Lido | 18357644 | 437 days ago | IN | 0.013 ETH | 0.00077948 | ||||
Deposit To Lido | 18357583 | 437 days ago | IN | 0.017 ETH | 0.00129511 | ||||
Deposit To Lido | 18357507 | 437 days ago | IN | 0.013 ETH | 0.00072139 | ||||
Deposit To Lido | 18357449 | 437 days ago | IN | 0.015 ETH | 0.00093536 | ||||
Deposit To Lido | 18357385 | 437 days ago | IN | 0.019 ETH | 0.00083796 | ||||
Deposit To Lido | 18357243 | 437 days ago | IN | 0.014 ETH | 0.00083282 | ||||
Deposit To Lido | 18357168 | 437 days ago | IN | 0.014 ETH | 0.00089185 | ||||
Deposit To Lido | 18357109 | 437 days ago | IN | 0.017 ETH | 0.00079156 | ||||
Deposit To Lido | 18357047 | 437 days ago | IN | 0.018 ETH | 0.00073382 | ||||
Deposit To Lido | 18356973 | 437 days ago | IN | 0.016 ETH | 0.00079015 | ||||
Deposit To Lido | 18356908 | 437 days ago | IN | 0.017 ETH | 0.00129557 | ||||
Deposit To Lido | 18356777 | 437 days ago | IN | 0.01 ETH | 0.00078391 | ||||
Deposit To Lido | 18356709 | 437 days ago | IN | 0.011 ETH | 0.00104912 | ||||
Deposit To Lido | 18356641 | 437 days ago | IN | 0.013 ETH | 0.00119832 | ||||
Deposit To Lido | 18356572 | 437 days ago | IN | 0.019 ETH | 0.00164671 | ||||
Deposit To Lido | 18356504 | 437 days ago | IN | 0.019 ETH | 0.00069131 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
18444808 | 425 days ago | 0.018 ETH | ||||
18358209 | 437 days ago | 0.014 ETH | ||||
18358152 | 437 days ago | 0.012 ETH | ||||
18358021 | 437 days ago | 0.015 ETH | ||||
18357962 | 437 days ago | 0.017 ETH | ||||
18357895 | 437 days ago | 0.013 ETH | ||||
18357828 | 437 days ago | 0.011 ETH | ||||
18357768 | 437 days ago | 0.014 ETH | ||||
18357711 | 437 days ago | 0.01 ETH | ||||
18357644 | 437 days ago | 0.013 ETH | ||||
18357583 | 437 days ago | 0.017 ETH | ||||
18357507 | 437 days ago | 0.013 ETH | ||||
18357449 | 437 days ago | 0.015 ETH | ||||
18357385 | 437 days ago | 0.019 ETH | ||||
18357243 | 437 days ago | 0.014 ETH | ||||
18357168 | 437 days ago | 0.014 ETH | ||||
18357109 | 437 days ago | 0.017 ETH | ||||
18357047 | 437 days ago | 0.018 ETH | ||||
18356973 | 437 days ago | 0.016 ETH | ||||
18356908 | 437 days ago | 0.017 ETH | ||||
18356777 | 437 days ago | 0.01 ETH | ||||
18356709 | 437 days ago | 0.011 ETH | ||||
18356641 | 437 days ago | 0.013 ETH | ||||
18356572 | 437 days ago | 0.019 ETH | ||||
18356504 | 437 days ago | 0.019 ETH |
Loading...
Loading
Contract Name:
StakingAggregator
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
Yes with 999999 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: NONE pragma solidity 0.8.17; import "../interfaces/RocketStorage.sol"; import "../interfaces/RocketDepositPool.sol"; import "../interfaces/RocketTokenRETH.sol"; import "../interfaces/RocketDAOProtocolSettingsDepositInterface.sol"; import "../interfaces/RocketVault.sol"; import "../interfaces/ILido.sol"; import "@openzeppelin/contracts/access/Ownable2Step.sol"; import "@openzeppelin/contracts/security/ReentrancyGuard.sol"; import "@openzeppelin/contracts/security/Pausable.sol"; import "@openzeppelin/contracts/utils/Address.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /// @title A staking aggregation contract for RocketPool and Lido /// @author Jack Clancy - Consensys contract StakingAggregator is Ownable2Step, ReentrancyGuard, Pausable { using Address for address payable; RocketStorageInterface immutable rocketStorage; LidoInterface public immutable lidoProxyAddress; address public immutable lidoReferralAddress; uint256 public fee; // fee in 1/10th of bps uint256 public constant MAX_FEE = 2000; // maxFee in 1/10th of bps - 2% or 200bps uint256 public constant FEE_BASE = 100000; address payable public feesRecipient; constructor( address _owner, address _lidoReferralAddress, RocketStorageInterface _rocketStorageAddress, LidoInterface _lidoProxyAddress, uint256 _fee, address payable _feesRecipient ) { _transferOwnership(_owner); lidoReferralAddress = _lidoReferralAddress; rocketStorage = _rocketStorageAddress; lidoProxyAddress = _lidoProxyAddress; fee = _fee; feesRecipient = _feesRecipient; } error TransferFailed(address recipient, uint256 amount); error NoTokensMinted(address recipient); error FeeTooHigh(uint256 fee); error ContractNotFound(); error InvalidFeesRecipient(address attemptedRecipient); error IncompatibleFeeRate(uint256 contractRate, uint256 permittedRate); event FeeUpdated(uint256 _newFee); event FeesRecipientUpdated(address recipient); /// @notice Deposits ETH to Lido and forwards minted stETH to caller function depositToLido(uint256 maxFeeRate) external payable nonReentrant whenNotPaused { // Check that user has allowed the fee rate if (maxFeeRate < fee) revert IncompatibleFeeRate(fee, maxFeeRate); // Forward deposit minus fee to Lido & get amount of stETH uint256 sharesMinted = lidoProxyAddress.submit{value: msg.value - ((msg.value * fee) / FEE_BASE)}( lidoReferralAddress ); if (sharesMinted == 0) revert NoTokensMinted(msg.sender); // Forward minted stETH back to user if (lidoProxyAddress.transferShares(msg.sender, sharesMinted) == 0) revert TransferFailed(msg.sender, sharesMinted); // Withdraw fee if (address(this).balance != 0) feesRecipient.sendValue(address(this).balance); } /// @notice Deposits ETH to RocketPool and forwards minted rETH to caller function depositToRP(uint256 maxFeeRate) external payable nonReentrant whenNotPaused { // Check that user has allowed the fee rate if (maxFeeRate < fee) revert IncompatibleFeeRate(fee, maxFeeRate); // Load contracts address rocketDepositPoolAddress = getContractAddress( "rocketDepositPool" ); RocketDepositPoolInterface rocketDepositPool = RocketDepositPoolInterface( rocketDepositPoolAddress ); address rocketTokenRETHAddress = getContractAddress("rocketTokenRETH"); RocketTokenRETHInterface rocketTokenRETH = RocketTokenRETHInterface( rocketTokenRETHAddress ); // Forward deposit minus fee to RP & get amount of rETH minted uint256 rethBalance1 = rocketTokenRETH.balanceOf(address(this)); rocketDepositPool.deposit{value: msg.value - ((msg.value * fee) / FEE_BASE)}(); uint256 rethBalance2 = rocketTokenRETH.balanceOf(address(this)); if (rethBalance2 <= rethBalance1) revert NoTokensMinted(msg.sender); uint256 rethMinted = rethBalance2 - rethBalance1; // Forward minted rETH back to user if (!rocketTokenRETH.transfer(msg.sender, rethMinted)) revert TransferFailed(msg.sender, rethMinted); // Withdraw fee if (address(this).balance != 0) feesRecipient.sendValue(address(this).balance); } /// @notice Updates the fee for staking transactions /// @dev Fee is in 0.1bp increments. i.e. fee = 10 is setting to 1bp /// @param _newFee The new fee for future transactions function updateFee(uint256 _newFee) external onlyOwner { if (_newFee > MAX_FEE) revert FeeTooHigh(_newFee); fee = _newFee; emit FeeUpdated(_newFee); } /// @notice Updates the recipient of the fees collected by the contract /// @param _newFeesRecipent The recipient of future fees function updateFeesRecipient(address payable _newFeesRecipent) external onlyOwner { if (_newFeesRecipent == address(0)) revert InvalidFeesRecipient(_newFeesRecipent); feesRecipient = _newFeesRecipent; emit FeesRecipientUpdated(_newFeesRecipent); } /// @notice Returns several RocketPool constants that the FE needs /// @dev Deposit fee in wei. Number needs to be divided by 1e18 to get in percentage function fetchRPConstants() external view returns (uint256[4] memory) { address rocketTokenRETHAddress = getContractAddress("rocketTokenRETH"); address rocketDAOSettingsAddress = getContractAddress( "rocketDAOProtocolSettingsDeposit" ); address rocketVaultAddress = getContractAddress("rocketVault"); RocketDAOProtocolSettingsDepositInterface rocketDAOProtocolSettingsDeposit = RocketDAOProtocolSettingsDepositInterface( rocketDAOSettingsAddress ); RocketVaultInterface rocketVault = RocketVaultInterface( rocketVaultAddress ); RocketTokenRETHInterface rocketTokenRETH = RocketTokenRETHInterface( rocketTokenRETHAddress ); uint256 currentDeposits = rocketVault.balanceOf("rocketDepositPool"); uint256 depositFee = rocketDAOProtocolSettingsDeposit.getDepositFee(); uint256 depositPoolCap = rocketDAOProtocolSettingsDeposit .getMaximumDepositPoolSize(); uint256 exchangeRate = rocketTokenRETH.getExchangeRate(); return [currentDeposits, depositFee, depositPoolCap, exchangeRate]; } function pause() external onlyOwner { _pause(); } function unpause() external onlyOwner { _unpause(); } /// @dev Get the address of a RocketPool network contract by name function getContractAddress(string memory _contractName) internal view returns (address) { address contractAddress = rocketStorage.getAddress( keccak256(abi.encodePacked("contract.address", _contractName)) ); if (contractAddress == address(0)) revert ContractNotFound(); return contractAddress; } /// @notice Recovers arbitrary ERC-20 tokens in case any mistakenly get sent to contract /// @param tokenAddress address of the token to be sent /// @param tokenAmount amount of token to be sent /// @param recipient recipient of tokens function recoverERC20(address tokenAddress, uint256 tokenAmount, address recipient) public virtual onlyOwner { IERC20(tokenAddress).transfer(recipient, tokenAmount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (access/Ownable2Step.sol) pragma solidity ^0.8.0; import "./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. * * By default, the owner account will be the one that deploys the contract. 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() external { address sender = _msgSender(); require(pendingOwner() == sender, "Ownable2Step: caller is not the new owner"); _transferOwnership(sender); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (security/Pausable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { _requireNotPaused(); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { _requirePaused(); _; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Throws if the contract is paused. */ function _requireNotPaused() internal view virtual { require(!paused(), "Pausable: paused"); } /** * @dev Throws if the contract is not paused. */ function _requirePaused() internal view virtual { require(paused(), "Pausable: not paused"); } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (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() { _nonReentrantBefore(); _; _nonReentrantAfter(); } function _nonReentrantBefore() private { // On the first call to nonReentrant, _status will be _NOT_ENTERED require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; } function _nonReentrantAfter() private { // 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 (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol) pragma solidity ^0.8.0; import "../ERC20.sol"; import "../../../utils/Context.sol"; /** * @dev Extension of {ERC20} that allows token holders to destroy both their own * tokens and those that they have an allowance for, in a way that can be * recognized off-chain (via event analysis). */ abstract contract ERC20Burnable is Context, ERC20 { /** * @dev Destroys `amount` tokens from the caller. * * See {ERC20-_burn}. */ function burn(uint256 amount) public virtual { _burn(_msgSender(), amount); } /** * @dev Destroys `amount` tokens from `account`, deducting from the caller's * allowance. * * See {ERC20-_burn} and {ERC20-allowance}. * * Requirements: * * - the caller must have allowance for ``accounts``'s tokens of at least * `amount`. */ function burnFrom(address account, uint256 amount) public virtual { _spendAllowance(account, _msgSender(), amount); _burn(account, amount); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/Address.sol) pragma solidity ^0.8.1; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== * * [IMPORTANT] * ==== * You shouldn't rely on `isContract` to protect against flash loan attacks! * * Preventing calls from contracts is highly discouraged. It breaks composability, breaks support for smart wallets * like Gnosis Safe, and does not provide security since it can be circumvented by calling from a contract * constructor. * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize/address.code.length, which returns 0 // for contracts in construction, since the code is only stored at the end // of the constructor execution. return account.code.length > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); (bool success, ) = recipient.call{value: amount}(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain `call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value ) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue( address target, bytes memory data, uint256 value, string memory errorMessage ) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); (bool success, bytes memory returndata) = target.call{value: value}(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall( address target, bytes memory data, string memory errorMessage ) internal view returns (bytes memory) { (bool success, bytes memory returndata) = target.staticcall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall( address target, bytes memory data, string memory errorMessage ) internal returns (bytes memory) { (bool success, bytes memory returndata) = target.delegatecall(data); return verifyCallResultFromTarget(target, success, returndata, errorMessage); } /** * @dev Tool to verify that a low level call to smart-contract was successful, and revert (either by bubbling * the revert reason or using the provided one) in case of unsuccessful call or if target was not a contract. * * _Available since v4.8._ */ function verifyCallResultFromTarget( address target, bool success, bytes memory returndata, string memory errorMessage ) internal view returns (bytes memory) { if (success) { if (returndata.length == 0) { // only check isContract if the call was successful and the return data is empty // otherwise we already know that it was a contract require(isContract(target), "Address: call to non-contract"); } return returndata; } else { _revert(returndata, errorMessage); } } /** * @dev Tool to verify that a low level call was successful, and revert if it wasn't, either by bubbling the * revert reason or using the provided one. * * _Available since v4.3._ */ function verifyCallResult( bool success, bytes memory returndata, string memory errorMessage ) internal pure returns (bytes memory) { if (success) { return returndata; } else { _revert(returndata, errorMessage); } } function _revert(bytes memory returndata, string memory errorMessage) private pure { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly /// @solidity memory-safe-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
pragma solidity >0.4.24 <0.9.0; // SPDX-License-Identifier: GPL-3.0 import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; /** * @title Liquid staking pool * * For the high-level description of the pool operation please refer to the paper. * Pool manages withdrawal keys and fees. It receives ether submitted by users on the ETH 1 side * and stakes it via the deposit_contract.sol contract. It doesn't hold ether on it's balance, * only a small portion (buffer) of it. * It also mints new tokens for rewards generated at the ETH 2.0 side. * * At the moment withdrawals are not possible in the beacon chain and there's no workaround. * Pool will be upgraded to an actual implementation when withdrawals are enabled * (Phase 1.5 or 2 of Eth2 launch, likely late 2022 or 2023). */ interface LidoInterface is IERC20 { function totalSupply() external view returns (uint256); function getTotalShares() external view returns (uint256); /** * @notice Stop pool routine operations */ function stop() external; /** * @notice Resume pool routine operations */ function resume() external; /** * @notice Stops accepting new Ether to the protocol * * @dev While accepting new Ether is stopped, calls to the `submit` function, * as well as to the default payable function, will revert. * * Emits `StakingPaused` event. */ function pauseStaking() external; /** * @notice Resumes accepting new Ether to the protocol (if `pauseStaking` was called previously) * NB: Staking could be rate-limited by imposing a limit on the stake amount * at each moment in time, see `setStakingLimit()` and `removeStakingLimit()` * * @dev Preserves staking limit if it was set previously * * Emits `StakingResumed` event */ function resumeStaking() external; /** * @notice Sets the staking rate limit * * @dev Reverts if: * - `_maxStakeLimit` == 0 * - `_maxStakeLimit` >= 2^96 * - `_maxStakeLimit` < `_stakeLimitIncreasePerBlock` * - `_maxStakeLimit` / `_stakeLimitIncreasePerBlock` >= 2^32 (only if `_stakeLimitIncreasePerBlock` != 0) * * Emits `StakingLimitSet` event * * @param _maxStakeLimit max stake limit value * @param _stakeLimitIncreasePerBlock stake limit increase per single block */ function setStakingLimit( uint256 _maxStakeLimit, uint256 _stakeLimitIncreasePerBlock ) external; /** * @notice Removes the staking rate limit * * Emits `StakingLimitRemoved` event */ function removeStakingLimit() external; /** * @notice Check staking state: whether it's paused or not */ function isStakingPaused() external view returns (bool); /** * @notice Returns how much Ether can be staked in the current block * @dev Special return values: * - 2^256 - 1 if staking is unlimited; * - 0 if staking is paused or if limit is exhausted. */ function getCurrentStakeLimit() external view returns (uint256); /** * @notice Returns full info about current stake limit params and state * @dev Might be used for the advanced integration requests. * @return isStakingPaused staking pause state (equivalent to return of isStakingPaused()) * @return isStakingLimitSet whether the stake limit is set * @return currentStakeLimit current stake limit (equivalent to return of getCurrentStakeLimit()) * @return maxStakeLimit max stake limit * @return maxStakeLimitGrowthBlocks blocks needed to restore max stake limit from the fully exhausted state * @return prevStakeLimit previously reached stake limit * @return prevStakeBlockNumber previously seen block number */ function getStakeLimitFullInfo() external view returns ( bool isStakingPaused, bool isStakingLimitSet, uint256 currentStakeLimit, uint256 maxStakeLimit, uint256 maxStakeLimitGrowthBlocks, uint256 prevStakeLimit, uint256 prevStakeBlockNumber ); event Stopped(); event Resumed(); event StakingPaused(); event StakingResumed(); event StakingLimitSet( uint256 maxStakeLimit, uint256 stakeLimitIncreasePerBlock ); event StakingLimitRemoved(); /** * @notice Set Lido protocol contracts (oracle, treasury, insurance fund). * @param _oracle oracle contract * @param _treasury treasury contract * @param _insuranceFund insurance fund contract */ function setProtocolContracts( address _oracle, address _treasury, address _insuranceFund ) external; event ProtocolContactsSet( address oracle, address treasury, address insuranceFund ); /** * @notice Set fee rate to `_feeBasisPoints` basis points. * The fees are accrued when: * - oracles report staking results (beacon chain balance increase) * - validators gain execution layer rewards (priority fees and MEV) * @param _feeBasisPoints Fee rate, in basis points */ function setFee(uint16 _feeBasisPoints) external; /** * @notice Set fee distribution * @param _treasuryFeeBasisPoints basis points go to the treasury, * @param _insuranceFeeBasisPoints basis points go to the insurance fund, * @param _operatorsFeeBasisPoints basis points go to node operators. * @dev The sum has to be 10 000. */ function setFeeDistribution( uint16 _treasuryFeeBasisPoints, uint16 _insuranceFeeBasisPoints, uint16 _operatorsFeeBasisPoints ) external; /** * @notice Returns staking rewards fee rate */ function getFee() external view returns (uint16 feeBasisPoints); /** * @notice Returns fee distribution proportion */ function getFeeDistribution() external view returns ( uint16 treasuryFeeBasisPoints, uint16 insuranceFeeBasisPoints, uint16 operatorsFeeBasisPoints ); event FeeSet(uint16 feeBasisPoints); event FeeDistributionSet( uint16 treasuryFeeBasisPoints, uint16 insuranceFeeBasisPoints, uint16 operatorsFeeBasisPoints ); /** * @notice A payable function supposed to be called only by LidoExecutionLayerRewardsVault contract * @dev We need a dedicated function because funds received by the default payable function * are treated as a user deposit */ function receiveELRewards() external payable; // The amount of ETH withdrawn from LidoExecutionLayerRewardsVault contract to Lido contract event ELRewardsReceived(uint256 amount); /** * @dev Sets limit on amount of ETH to withdraw from execution layer rewards vault per LidoOracle report * @param _limitPoints limit in basis points to amount of ETH to withdraw per LidoOracle report */ function setELRewardsWithdrawalLimit(uint16 _limitPoints) external; // Percent in basis points of total pooled ether allowed to withdraw from LidoExecutionLayerRewardsVault per LidoOracle report event ELRewardsWithdrawalLimitSet(uint256 limitPoints); /** * @notice Set credentials to withdraw ETH on ETH 2.0 side after the phase 2 is launched to `_withdrawalCredentials` * @dev Note that setWithdrawalCredentials discards all unused signing keys as the signatures are invalidated. * @param _withdrawalCredentials withdrawal credentials field as defined in the Ethereum PoS consensus specs */ function setWithdrawalCredentials(bytes32 _withdrawalCredentials) external; /** * @notice Returns current credentials to withdraw ETH on ETH 2.0 side after the phase 2 is launched */ function getWithdrawalCredentials() external view returns (bytes memory); event WithdrawalCredentialsSet(bytes32 withdrawalCredentials); /** * @dev Sets the address of LidoExecutionLayerRewardsVault contract * @param _executionLayerRewardsVault Execution layer rewards vault contract address */ function setELRewardsVault(address _executionLayerRewardsVault) external; // The `executionLayerRewardsVault` was set as the execution layer rewards vault for Lido event ELRewardsVaultSet(address executionLayerRewardsVault); /** * @notice Ether on the ETH 2.0 side reported by the oracle * @param _epoch Epoch id * @param _eth2balance Balance in wei on the ETH 2.0 side */ function handleOracleReport(uint256 _epoch, uint256 _eth2balance) external; // User functions /** * @notice Adds eth to the pool * @return StETH Amount of StETH generated */ function submit(address _referral) external payable returns (uint256 StETH); // Records a deposit made by a user event Submitted(address indexed sender, uint256 amount, address referral); // The `amount` of ether was sent to the deposit_contract.deposit function event Unbuffered(uint256 amount); // Requested withdrawal of `etherAmount` to `pubkeyHash` on the ETH 2.0 side, `tokenAmount` burned by `sender`, // `sentFromBuffer` was sent on the current Ethereum side. event Withdrawal( address indexed sender, uint256 tokenAmount, uint256 sentFromBuffer, bytes32 indexed pubkeyHash, uint256 etherAmount ); // Info functions /** * @notice Gets the amount of Ether controlled by the system */ function getTotalPooledEther() external view returns (uint256); /** * @notice Moves `_sharesAmount` token shares from the caller's account to the `_recipient` account. * * @return amount of transferred tokens. * Emits a `TransferShares` event. * Emits a `Transfer` event. * * Requirements: * * - `_recipient` cannot be the zero address. * - the caller must have at least `_sharesAmount` shares. * - the contract must not be paused. * * @dev The `_sharesAmount` argument is the amount of shares, not tokens. */ function transferShares(address _recipient, uint256 _sharesAmount) external returns (uint256); /** * @return the amount of Ether that corresponds to `_sharesAmount` token shares. */ function getPooledEthByShares(uint256 _sharesAmount) external view returns (uint256); /** * @notice Gets the amount of Ether temporary buffered on this contract balance */ function getBufferedEther() external view returns (uint256); /** * @notice Returns the key values related to Beacon-side * @return depositedValidators - number of deposited validators * @return beaconValidators - number of Lido's validators visible in the Beacon state, reported by oracles * @return beaconBalance - total amount of Beacon-side Ether (sum of all the balances of Lido validators) */ function getBeaconStat() external view returns ( uint256 depositedValidators, uint256 beaconValidators, uint256 beaconBalance ); }
pragma solidity >0.5.0 <0.9.0; // SPDX-License-Identifier: GPL-3.0-only interface RocketDAOProtocolSettingsDepositInterface { function getDepositEnabled() external view returns (bool); function getAssignDepositsEnabled() external view returns (bool); function getMinimumDeposit() external view returns (uint256); function getMaximumDepositPoolSize() external view returns (uint256); function getMaximumDepositAssignments() external view returns (uint256); function getDepositFee() external view returns (uint256); }
pragma solidity >0.5.0 <0.9.0; // SPDX-License-Identifier: GPL-3.0-only interface RocketDepositPoolInterface { function getBalance() external view returns (uint256); function getExcessBalance() external view returns (uint256); function deposit() external payable; function recycleDissolvedDeposit() external payable; function recycleExcessCollateral() external payable; function recycleLiquidatedStake() external payable; function assignDeposits() external; function withdrawExcessBalance(uint256 _amount) external; }
pragma solidity >0.5.0 <0.9.0; // SPDX-License-Identifier: GPL-3.0-only interface RocketStorageInterface { // Deploy status function getDeployedStatus() external view returns (bool); // Guardian function getGuardian() external view returns (address); function setGuardian(address _newAddress) external; function confirmGuardian() external; // Getters function getAddress(bytes32 _key) external view returns (address); function getUint(bytes32 _key) external view returns (uint256); function getString(bytes32 _key) external view returns (string memory); function getBytes(bytes32 _key) external view returns (bytes memory); function getBool(bytes32 _key) external view returns (bool); function getInt(bytes32 _key) external view returns (int256); function getBytes32(bytes32 _key) external view returns (bytes32); // Setters function setAddress(bytes32 _key, address _value) external; function setUint(bytes32 _key, uint256 _value) external; function setString(bytes32 _key, string calldata _value) external; function setBytes(bytes32 _key, bytes calldata _value) external; function setBool(bytes32 _key, bool _value) external; function setInt(bytes32 _key, int256 _value) external; function setBytes32(bytes32 _key, bytes32 _value) external; // Deleters function deleteAddress(bytes32 _key) external; function deleteUint(bytes32 _key) external; function deleteString(bytes32 _key) external; function deleteBytes(bytes32 _key) external; function deleteBool(bytes32 _key) external; function deleteInt(bytes32 _key) external; function deleteBytes32(bytes32 _key) external; // Arithmetic function addUint(bytes32 _key, uint256 _amount) external; function subUint(bytes32 _key, uint256 _amount) external; // Protected storage function getNodeWithdrawalAddress(address _nodeAddress) external view returns (address); function getNodePendingWithdrawalAddress(address _nodeAddress) external view returns (address); function setWithdrawalAddress( address _nodeAddress, address _newWithdrawalAddress, bool _confirm ) external; function confirmWithdrawalAddress(address _nodeAddress) external; }
pragma solidity >0.5.0 <0.9.0; // SPDX-License-Identifier: GPL-3.0-only import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; interface RocketTokenRETHInterface is IERC20 { function getEthValue(uint256 _rethAmount) external view returns (uint256); function getRethValue(uint256 _ethAmount) external view returns (uint256); function getExchangeRate() external view returns (uint256); function getTotalCollateral() external view returns (uint256); function getCollateralRate() external view returns (uint256); function depositExcess() external payable; function depositExcessCollateral() external; function mint(uint256 _ethAmount, address _to) external; function burn(uint256 _rethAmount) external; }
pragma solidity >0.5.0 <0.9.0; // SPDX-License-Identifier: GPL-3.0-only import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; import "@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol"; interface RocketVaultInterface { function balanceOf(string memory _networkContractName) external view returns (uint256); function depositEther() external payable; function withdrawEther(uint256 _amount) external; function depositToken( string memory _networkContractName, IERC20 _tokenAddress, uint256 _amount ) external; function withdrawToken( address _withdrawalAddress, IERC20 _tokenAddress, uint256 _amount ) external; function balanceOfToken( string memory _networkContractName, IERC20 _tokenAddress ) external view returns (uint256); function transferToken( string memory _networkContractName, IERC20 _tokenAddress, uint256 _amount ) external; function burnToken(ERC20Burnable _tokenAddress, uint256 _amount) external; }
{ "optimizer": { "enabled": true, "runs": 999999 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"_lidoReferralAddress","type":"address"},{"internalType":"contract RocketStorageInterface","name":"_rocketStorageAddress","type":"address"},{"internalType":"contract LidoInterface","name":"_lidoProxyAddress","type":"address"},{"internalType":"uint256","name":"_fee","type":"uint256"},{"internalType":"address payable","name":"_feesRecipient","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ContractNotFound","type":"error"},{"inputs":[{"internalType":"uint256","name":"fee","type":"uint256"}],"name":"FeeTooHigh","type":"error"},{"inputs":[{"internalType":"uint256","name":"contractRate","type":"uint256"},{"internalType":"uint256","name":"permittedRate","type":"uint256"}],"name":"IncompatibleFeeRate","type":"error"},{"inputs":[{"internalType":"address","name":"attemptedRecipient","type":"address"}],"name":"InvalidFeesRecipient","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"}],"name":"NoTokensMinted","type":"error"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"TransferFailed","type":"error"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"FeeUpdated","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"recipient","type":"address"}],"name":"FeesRecipientUpdated","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":false,"internalType":"address","name":"account","type":"address"}],"name":"Paused","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"account","type":"address"}],"name":"Unpaused","type":"event"},{"inputs":[],"name":"FEE_BASE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"MAX_FEE","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"acceptOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxFeeRate","type":"uint256"}],"name":"depositToLido","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxFeeRate","type":"uint256"}],"name":"depositToRP","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feesRecipient","outputs":[{"internalType":"address payable","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fetchRPConstants","outputs":[{"internalType":"uint256[4]","name":"","type":"uint256[4]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lidoProxyAddress","outputs":[{"internalType":"contract LidoInterface","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"lidoReferralAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"paused","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pendingOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"},{"internalType":"uint256","name":"tokenAmount","type":"uint256"},{"internalType":"address","name":"recipient","type":"address"}],"name":"recoverERC20","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"unpause","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newFee","type":"uint256"}],"name":"updateFee","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address payable","name":"_newFeesRecipent","type":"address"}],"name":"updateFeesRecipient","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
60e06040523480156200001157600080fd5b5060405162001ba938038062001ba9833981016040819052620000349162000122565b6200003f3362000092565b60016002556003805460ff19169055620000598662000092565b6001600160a01b0394851660c05292841660805290831660a052600455600580546001600160a01b0319169190921617905550620001aa565b600180546001600160a01b0319169055620000b981620000bc602090811b6200118e17901c565b50565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b0381168114620000b957600080fd5b60008060008060008060c087890312156200013c57600080fd5b865162000149816200010c565b60208801519096506200015c816200010c565b60408801519095506200016f816200010c565b606088015190945062000182816200010c565b608088015160a089015191945092506200019c816200010c565b809150509295509295509295565b60805160a05160c0516119ba620001ef6000396000818161026c015261091501526000818161031e0152818161087201526109f30152600061120801526119ba6000f3fe60806040526004361061015f5760003560e01c80639012c4a8116100c0578063ddca3f4311610074578063ecefc70511610059578063ecefc705146103c5578063f2fde38b146103dc578063fa4bbb71146103fc57600080fd5b8063ddca3f4314610384578063e30c39781461039a57600080fd5b8063b3d71c1d116100a5578063b3d71c1d1461030c578063b51609b414610340578063bc063e1a1461036057600080fd5b80639012c4a8146102cc578063a5bb12bf146102ec57600080fd5b806379ba509711610117578063897c10fc116100fc578063897c10fc1461025a5780638a99b4f21461028e5780638da5cb5b146102a157600080fd5b806379ba5097146102305780638456cb591461024557600080fd5b80635c975abb116101485780635c975abb146101a6578063702acfa8146101c9578063715018a61461021b57600080fd5b806317532c3a146101645780633f4ba83a1461018f575b600080fd5b34801561017057600080fd5b5061017961040f565b604051610186919061176e565b60405180910390f35b34801561019b57600080fd5b506101a4610729565b005b3480156101b257600080fd5b5060035460ff166040519015158152602001610186565b3480156101d557600080fd5b506005546101f69073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b34801561022757600080fd5b506101a461073b565b34801561023c57600080fd5b506101a461074d565b34801561025157600080fd5b506101a4610807565b34801561026657600080fd5b506101f67f000000000000000000000000000000000000000000000000000000000000000081565b6101a461029c36600461179f565b610817565b3480156102ad57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166101f6565b3480156102d857600080fd5b506101a46102e736600461179f565b610aeb565b3480156102f857600080fd5b506101a46103073660046117da565b610b6e565b34801561031857600080fd5b506101f67f000000000000000000000000000000000000000000000000000000000000000081565b34801561034c57600080fd5b506101a461035b3660046117fe565b610c4e565b34801561036c57600080fd5b506103766107d081565b604051908152602001610186565b34801561039057600080fd5b5061037660045481565b3480156103a657600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff166101f6565b3480156103d157600080fd5b50610376620186a081565b3480156103e857600080fd5b506101a46103f73660046117da565b610cf5565b6101a461040a36600461179f565b610da5565b610417611750565b60006104576040518060400160405280600f81526020017f726f636b6574546f6b656e524554480000000000000000000000000000000000815250611203565b905060006104996040518060400160405280602081526020017f726f636b657444414f50726f746f636f6c53657474696e67734465706f736974815250611203565b905060006104db6040518060400160405280600b81526020017f726f636b65745661756c74000000000000000000000000000000000000000000815250611203565b6040517f35ee5f8700000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f726f636b65744465706f736974506f6f6c000000000000000000000000000000604482015290915082908290859060009073ffffffffffffffffffffffffffffffffffffffff8416906335ee5f8790606401602060405180830381865afa15801561057f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a39190611840565b905060008473ffffffffffffffffffffffffffffffffffffffff16630de705b56040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106169190611840565b905060008573ffffffffffffffffffffffffffffffffffffffff1663fd6ce89e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106899190611840565b905060008473ffffffffffffffffffffffffffffffffffffffff1663e6aa216c6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fc9190611840565b60408051608081018252958652602086019490945292840191909152506060820152979650505050505050565b61073161131d565b61073961139e565b565b61074361131d565b610739600061141b565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146107fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108048161141b565b50565b61080f61131d565b61073961144c565b61081f6114a7565b610827611518565b60045481101561086e57600480546040517fd11d00a900000000000000000000000000000000000000000000000000000000815291820152602481018290526044016107f2565b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663a1903eab620186a0600454346108be9190611888565b6108c8919061189f565b6108d290346118da565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000000000000000000000000000000000000000000016600482015260240160206040518083038185885af115801561095b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109809190611840565b9050806000036109be576040517fbea597640000000000000000000000000000000000000000000000000000000081523360048201526024016107f2565b6040517f8fcb4e5b000000000000000000000000000000000000000000000000000000008152336004820152602481018290527f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1690638fcb4e5b906044016020604051808303816000875af1158015610a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a759190611840565b600003610ab7576040517f1c43b976000000000000000000000000000000000000000000000000000000008152336004820152602481018290526044016107f2565b4715610ae057600554610ae09073ffffffffffffffffffffffffffffffffffffffff1647611585565b506108046001600255565b610af361131d565b6107d0811115610b32576040517f7b931420000000000000000000000000000000000000000000000000000000008152600481018290526024016107f2565b60048190556040518181527f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c76906020015b60405180910390a150565b610b7661131d565b73ffffffffffffffffffffffffffffffffffffffff8116610bdb576040517f526de70300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016107f2565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ffaf2c808ea9fbd677a60ee2a7d7ccf31390032b2e3d48df66db9e880aea9271390602001610b63565b610c5661131d565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610ccb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cef91906118ed565b50505050565b610cfd61131d565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610d6060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610dad6114a7565b610db5611518565b600454811015610dfc57600480546040517fd11d00a900000000000000000000000000000000000000000000000000000000815291820152602481018290526044016107f2565b6000610e3c6040518060400160405280601181526020017f726f636b65744465706f736974506f6f6c000000000000000000000000000000815250611203565b905060008190506000610e836040518060400160405280600f81526020017f726f636b6574546f6b656e524554480000000000000000000000000000000000815250611203565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152909150819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f199190611840565b90508373ffffffffffffffffffffffffffffffffffffffff1663d0e30db0620186a060045434610f499190611888565b610f53919061189f565b610f5d90346118da565b6040518263ffffffff1660e01b81526004016000604051808303818588803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b50506040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000935073ffffffffffffffffffffffffffffffffffffffff861692506370a082319150602401602060405180830381865afa15801561100e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110329190611840565b905081811161106f576040517fbea597640000000000000000000000000000000000000000000000000000000081523360048201526024016107f2565b600061107b83836118da565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff85169063a9059cbb906044016020604051808303816000875af11580156110f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111591906118ed565b611154576040517f1c43b976000000000000000000000000000000000000000000000000000000008152336004820152602481018290526044016107f2565b471561117d5760055461117d9073ffffffffffffffffffffffffffffffffffffffff1647611585565b505050505050506108046001600255565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000807f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff166321f8a72184604051602001611253919061190f565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b815260040161128791815260200190565b602060405180830381865afa1580156112a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c89190611967565b905073ffffffffffffffffffffffffffffffffffffffff8116611317576040517fed59262400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107f2565b6113a66116e4565b600380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556108048161118e565b611454611518565b600380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113f13390565b6002805403611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107f2565b60028055565b60035460ff1615610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107f2565b804710156115ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107f2565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611649576040519150601f19603f3d011682016040523d82523d6000602084013e61164e565b606091505b50509050806116df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107f2565b505050565b60035460ff16610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107f2565b60405180608001604052806004906020820280368337509192915050565b60808101818360005b6004811015611796578151835260209283019290910190600101611777565b50505092915050565b6000602082840312156117b157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461080457600080fd5b6000602082840312156117ec57600080fd5b81356117f7816117b8565b9392505050565b60008060006060848603121561181357600080fd5b833561181e816117b8565b9250602084013591506040840135611835816117b8565b809150509250925092565b60006020828403121561185257600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761131757611317611859565b6000826118d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8181038181111561131757611317611859565b6000602082840312156118ff57600080fd5b815180151581146117f757600080fd5b7f636f6e74726163742e616464726573730000000000000000000000000000000081526000825160005b818110156119565760208186018101516010868401015201611939565b506000920160100191825250919050565b60006020828403121561197957600080fd5b81516117f7816117b856fea26469706673582212204e7530a6c75d31f98763763b3cc464d278091f2d783a29e74d55ae30e5be07f264736f6c6343000811003300000000000000000000000027c5706cc6deed9e0cb86f1238cc2fb5c7eb0bb4000000000000000000000000fe2da24c0d0ecdcc4753ef7d1ed637b75b7b6c470000000000000000000000001d8f8f00cfa6758d7be78336684788fb0ee0fa46000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019f12865164d69dea7fa65d3033a73ef93afe52e
Deployed Bytecode
0x60806040526004361061015f5760003560e01c80639012c4a8116100c0578063ddca3f4311610074578063ecefc70511610059578063ecefc705146103c5578063f2fde38b146103dc578063fa4bbb71146103fc57600080fd5b8063ddca3f4314610384578063e30c39781461039a57600080fd5b8063b3d71c1d116100a5578063b3d71c1d1461030c578063b51609b414610340578063bc063e1a1461036057600080fd5b80639012c4a8146102cc578063a5bb12bf146102ec57600080fd5b806379ba509711610117578063897c10fc116100fc578063897c10fc1461025a5780638a99b4f21461028e5780638da5cb5b146102a157600080fd5b806379ba5097146102305780638456cb591461024557600080fd5b80635c975abb116101485780635c975abb146101a6578063702acfa8146101c9578063715018a61461021b57600080fd5b806317532c3a146101645780633f4ba83a1461018f575b600080fd5b34801561017057600080fd5b5061017961040f565b604051610186919061176e565b60405180910390f35b34801561019b57600080fd5b506101a4610729565b005b3480156101b257600080fd5b5060035460ff166040519015158152602001610186565b3480156101d557600080fd5b506005546101f69073ffffffffffffffffffffffffffffffffffffffff1681565b60405173ffffffffffffffffffffffffffffffffffffffff9091168152602001610186565b34801561022757600080fd5b506101a461073b565b34801561023c57600080fd5b506101a461074d565b34801561025157600080fd5b506101a4610807565b34801561026657600080fd5b506101f67f000000000000000000000000fe2da24c0d0ecdcc4753ef7d1ed637b75b7b6c4781565b6101a461029c36600461179f565b610817565b3480156102ad57600080fd5b5060005473ffffffffffffffffffffffffffffffffffffffff166101f6565b3480156102d857600080fd5b506101a46102e736600461179f565b610aeb565b3480156102f857600080fd5b506101a46103073660046117da565b610b6e565b34801561031857600080fd5b506101f67f000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe8481565b34801561034c57600080fd5b506101a461035b3660046117fe565b610c4e565b34801561036c57600080fd5b506103766107d081565b604051908152602001610186565b34801561039057600080fd5b5061037660045481565b3480156103a657600080fd5b5060015473ffffffffffffffffffffffffffffffffffffffff166101f6565b3480156103d157600080fd5b50610376620186a081565b3480156103e857600080fd5b506101a46103f73660046117da565b610cf5565b6101a461040a36600461179f565b610da5565b610417611750565b60006104576040518060400160405280600f81526020017f726f636b6574546f6b656e524554480000000000000000000000000000000000815250611203565b905060006104996040518060400160405280602081526020017f726f636b657444414f50726f746f636f6c53657474696e67734465706f736974815250611203565b905060006104db6040518060400160405280600b81526020017f726f636b65745661756c74000000000000000000000000000000000000000000815250611203565b6040517f35ee5f8700000000000000000000000000000000000000000000000000000000815260206004820152601160248201527f726f636b65744465706f736974506f6f6c000000000000000000000000000000604482015290915082908290859060009073ffffffffffffffffffffffffffffffffffffffff8416906335ee5f8790606401602060405180830381865afa15801561057f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906105a39190611840565b905060008473ffffffffffffffffffffffffffffffffffffffff16630de705b56040518163ffffffff1660e01b8152600401602060405180830381865afa1580156105f2573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106169190611840565b905060008573ffffffffffffffffffffffffffffffffffffffff1663fd6ce89e6040518163ffffffff1660e01b8152600401602060405180830381865afa158015610665573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106899190611840565b905060008473ffffffffffffffffffffffffffffffffffffffff1663e6aa216c6040518163ffffffff1660e01b8152600401602060405180830381865afa1580156106d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106fc9190611840565b60408051608081018252958652602086019490945292840191909152506060820152979650505050505050565b61073161131d565b61073961139e565b565b61074361131d565b610739600061141b565b600154339073ffffffffffffffffffffffffffffffffffffffff1681146107fb576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152602960248201527f4f776e61626c6532537465703a2063616c6c6572206973206e6f74207468652060448201527f6e6577206f776e6572000000000000000000000000000000000000000000000060648201526084015b60405180910390fd5b6108048161141b565b50565b61080f61131d565b61073961144c565b61081f6114a7565b610827611518565b60045481101561086e57600480546040517fd11d00a900000000000000000000000000000000000000000000000000000000815291820152602481018290526044016107f2565b60007f000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe8473ffffffffffffffffffffffffffffffffffffffff1663a1903eab620186a0600454346108be9190611888565b6108c8919061189f565b6108d290346118da565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e084901b16815273ffffffffffffffffffffffffffffffffffffffff7f000000000000000000000000fe2da24c0d0ecdcc4753ef7d1ed637b75b7b6c4716600482015260240160206040518083038185885af115801561095b573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906109809190611840565b9050806000036109be576040517fbea597640000000000000000000000000000000000000000000000000000000081523360048201526024016107f2565b6040517f8fcb4e5b000000000000000000000000000000000000000000000000000000008152336004820152602481018290527f000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe8473ffffffffffffffffffffffffffffffffffffffff1690638fcb4e5b906044016020604051808303816000875af1158015610a51573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610a759190611840565b600003610ab7576040517f1c43b976000000000000000000000000000000000000000000000000000000008152336004820152602481018290526044016107f2565b4715610ae057600554610ae09073ffffffffffffffffffffffffffffffffffffffff1647611585565b506108046001600255565b610af361131d565b6107d0811115610b32576040517f7b931420000000000000000000000000000000000000000000000000000000008152600481018290526024016107f2565b60048190556040518181527f8c4d35e54a3f2ef1134138fd8ea3daee6a3c89e10d2665996babdf70261e2c76906020015b60405180910390a150565b610b7661131d565b73ffffffffffffffffffffffffffffffffffffffff8116610bdb576040517f526de70300000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff821660048201526024016107f2565b600580547fffffffffffffffffffffffff00000000000000000000000000000000000000001673ffffffffffffffffffffffffffffffffffffffff83169081179091556040519081527ffaf2c808ea9fbd677a60ee2a7d7ccf31390032b2e3d48df66db9e880aea9271390602001610b63565b610c5661131d565b6040517fa9059cbb00000000000000000000000000000000000000000000000000000000815273ffffffffffffffffffffffffffffffffffffffff82811660048301526024820184905284169063a9059cbb906044016020604051808303816000875af1158015610ccb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cef91906118ed565b50505050565b610cfd61131d565b6001805473ffffffffffffffffffffffffffffffffffffffff83167fffffffffffffffffffffffff00000000000000000000000000000000000000009091168117909155610d6060005473ffffffffffffffffffffffffffffffffffffffff1690565b73ffffffffffffffffffffffffffffffffffffffff167f38d16b8cac22d99fc7c124b9cd0de2d3fa1faef420bfe791d8c362d765e2270060405160405180910390a350565b610dad6114a7565b610db5611518565b600454811015610dfc57600480546040517fd11d00a900000000000000000000000000000000000000000000000000000000815291820152602481018290526044016107f2565b6000610e3c6040518060400160405280601181526020017f726f636b65744465706f736974506f6f6c000000000000000000000000000000815250611203565b905060008190506000610e836040518060400160405280600f81526020017f726f636b6574546f6b656e524554480000000000000000000000000000000000815250611203565b6040517f70a08231000000000000000000000000000000000000000000000000000000008152306004820152909150819060009073ffffffffffffffffffffffffffffffffffffffff8316906370a0823190602401602060405180830381865afa158015610ef5573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f199190611840565b90508373ffffffffffffffffffffffffffffffffffffffff1663d0e30db0620186a060045434610f499190611888565b610f53919061189f565b610f5d90346118da565b6040518263ffffffff1660e01b81526004016000604051808303818588803b158015610f8857600080fd5b505af1158015610f9c573d6000803e3d6000fd5b50506040517f70a082310000000000000000000000000000000000000000000000000000000081523060048201526000935073ffffffffffffffffffffffffffffffffffffffff861692506370a082319150602401602060405180830381865afa15801561100e573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906110329190611840565b905081811161106f576040517fbea597640000000000000000000000000000000000000000000000000000000081523360048201526024016107f2565b600061107b83836118da565b6040517fa9059cbb0000000000000000000000000000000000000000000000000000000081523360048201526024810182905290915073ffffffffffffffffffffffffffffffffffffffff85169063a9059cbb906044016020604051808303816000875af11580156110f1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061111591906118ed565b611154576040517f1c43b976000000000000000000000000000000000000000000000000000000008152336004820152602481018290526044016107f2565b471561117d5760055461117d9073ffffffffffffffffffffffffffffffffffffffff1647611585565b505050505050506108046001600255565b6000805473ffffffffffffffffffffffffffffffffffffffff8381167fffffffffffffffffffffffff0000000000000000000000000000000000000000831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6000807f0000000000000000000000001d8f8f00cfa6758d7be78336684788fb0ee0fa4673ffffffffffffffffffffffffffffffffffffffff166321f8a72184604051602001611253919061190f565b604051602081830303815290604052805190602001206040518263ffffffff1660e01b815260040161128791815260200190565b602060405180830381865afa1580156112a4573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112c89190611967565b905073ffffffffffffffffffffffffffffffffffffffff8116611317576040517fed59262400000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b92915050565b60005473ffffffffffffffffffffffffffffffffffffffff163314610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064016107f2565b6113a66116e4565b600380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001690557f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa335b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390a1565b600180547fffffffffffffffffffffffff00000000000000000000000000000000000000001690556108048161118e565b611454611518565b600380547fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff001660011790557f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586113f13390565b6002805403611512576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601f60248201527f5265656e7472616e637947756172643a207265656e7472616e742063616c6c0060448201526064016107f2565b60028055565b60035460ff1615610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601060248201527f5061757361626c653a207061757365640000000000000000000000000000000060448201526064016107f2565b804710156115ef576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601d60248201527f416464726573733a20696e73756666696369656e742062616c616e636500000060448201526064016107f2565b60008273ffffffffffffffffffffffffffffffffffffffff168260405160006040518083038185875af1925050503d8060008114611649576040519150601f19603f3d011682016040523d82523d6000602084013e61164e565b606091505b50509050806116df576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152603a60248201527f416464726573733a20756e61626c6520746f2073656e642076616c75652c207260448201527f6563697069656e74206d6179206861766520726576657274656400000000000060648201526084016107f2565b505050565b60035460ff16610739576040517f08c379a000000000000000000000000000000000000000000000000000000000815260206004820152601460248201527f5061757361626c653a206e6f742070617573656400000000000000000000000060448201526064016107f2565b60405180608001604052806004906020820280368337509192915050565b60808101818360005b6004811015611796578151835260209283019290910190600101611777565b50505092915050565b6000602082840312156117b157600080fd5b5035919050565b73ffffffffffffffffffffffffffffffffffffffff8116811461080457600080fd5b6000602082840312156117ec57600080fd5b81356117f7816117b8565b9392505050565b60008060006060848603121561181357600080fd5b833561181e816117b8565b9250602084013591506040840135611835816117b8565b809150509250925092565b60006020828403121561185257600080fd5b5051919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b808202811582820484141761131757611317611859565b6000826118d5577f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b500490565b8181038181111561131757611317611859565b6000602082840312156118ff57600080fd5b815180151581146117f757600080fd5b7f636f6e74726163742e616464726573730000000000000000000000000000000081526000825160005b818110156119565760208186018101516010868401015201611939565b506000920160100191825250919050565b60006020828403121561197957600080fd5b81516117f7816117b856fea26469706673582212204e7530a6c75d31f98763763b3cc464d278091f2d783a29e74d55ae30e5be07f264736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000027c5706cc6deed9e0cb86f1238cc2fb5c7eb0bb4000000000000000000000000fe2da24c0d0ecdcc4753ef7d1ed637b75b7b6c470000000000000000000000001d8f8f00cfa6758d7be78336684788fb0ee0fa46000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84000000000000000000000000000000000000000000000000000000000000000000000000000000000000000019f12865164d69dea7fa65d3033a73ef93afe52e
-----Decoded View---------------
Arg [0] : _owner (address): 0x27c5706cC6DEED9E0Cb86f1238Cc2FB5C7eb0Bb4
Arg [1] : _lidoReferralAddress (address): 0xfe2da24c0D0ECdcC4753ef7D1eD637b75B7B6C47
Arg [2] : _rocketStorageAddress (address): 0x1d8f8f00cfa6758d7bE78336684788Fb0ee0Fa46
Arg [3] : _lidoProxyAddress (address): 0xae7ab96520DE3A18E5e111B5EaAb095312D7fE84
Arg [4] : _fee (uint256): 0
Arg [5] : _feesRecipient (address): 0x19F12865164d69DeA7FA65d3033A73ef93afE52E
-----Encoded View---------------
6 Constructor Arguments found :
Arg [0] : 00000000000000000000000027c5706cc6deed9e0cb86f1238cc2fb5c7eb0bb4
Arg [1] : 000000000000000000000000fe2da24c0d0ecdcc4753ef7d1ed637b75b7b6c47
Arg [2] : 0000000000000000000000001d8f8f00cfa6758d7be78336684788fb0ee0fa46
Arg [3] : 000000000000000000000000ae7ab96520de3a18e5e111b5eaab095312d7fe84
Arg [4] : 0000000000000000000000000000000000000000000000000000000000000000
Arg [5] : 00000000000000000000000019f12865164d69dea7fa65d3033a73ef93afe52e
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.