IVaultEthStaking
Inherits: IVaultState, IVaultValidators, IVaultEnterExit, IVaultMev
Author: StakeWise
Defines the interface for the VaultEthStaking contract
Functions
deposit
Deposit ETH to the Vault
function deposit(address receiver, address referrer) external payable returns (uint256 shares);
Parameters
Name | Type | Description |
---|---|---|
receiver | address | The address that will receive Vault's shares |
referrer | address | The address of the referrer. Set to zero address if not used. |
Returns
Name | Type | Description |
---|---|---|
shares | uint256 | The number of shares minted |
receiveFromMevEscrow
Used by MEV escrow to transfer ETH.
function receiveFromMevEscrow() external payable;
updateStateAndDeposit
Updates Vault state and deposits ETH to the Vault
function updateStateAndDeposit(address receiver, address referrer, IKeeperRewards.HarvestParams calldata harvestParams)
external
payable
returns (uint256 shares);
Parameters
Name | Type | Description |
---|---|---|
receiver | address | The address that will receive Vault's shares |
referrer | address | The address of the referrer. Set to zero address if not used. |
harvestParams | IKeeperRewards.HarvestParams | The parameters for harvesting Keeper rewards |
Returns
Name | Type | Description |
---|---|---|
shares | uint256 | The number of shares minted |