Skip to main content

IVaultEthStaking

Git Source

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

NameTypeDescription
receiveraddressThe address that will receive Vault's shares
referreraddressThe address of the referrer. Set to zero address if not used.

Returns

NameTypeDescription
sharesuint256The 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

NameTypeDescription
receiveraddressThe address that will receive Vault's shares
referreraddressThe address of the referrer. Set to zero address if not used.
harvestParamsIKeeperRewards.HarvestParamsThe parameters for harvesting Keeper rewards

Returns

NameTypeDescription
sharesuint256The number of shares minted