Skip to main content

IEthVault

Git Source

Inherits: IVaultAdmin, IVaultVersion, IVaultFee, IVaultState, IVaultValidators, IVaultEnterExit, IVaultOsToken, IVaultMev, IVaultEthStaking, IMulticall

Author: StakeWise

Defines the interface for the EthVault contract

Functions

initialize

Initializes or upgrades the EthVault contract. Must transfer security deposit during the deployment.

function initialize(bytes calldata params) external payable;

Parameters

NameTypeDescription
paramsbytesThe encoded parameters for initializing the EthVault contract

depositAndMintOsToken

Deposits assets to the vault and mints OsToken shares to the receiver

function depositAndMintOsToken(address receiver, uint256 osTokenShares, address referrer)
external
payable
returns (uint256);

Parameters

NameTypeDescription
receiveraddressThe address to receive the OsToken
osTokenSharesuint256The amount of OsToken shares to mint. If set to type(uint256).max, max OsToken shares will be minted.
referreraddressThe address of the referrer

Returns

NameTypeDescription
<none>uint256The amount of OsToken assets minted

updateStateAndDepositAndMintOsToken

Updates the state, deposits assets to the vault and mints OsToken shares to the receiver

function updateStateAndDepositAndMintOsToken(
address receiver,
uint256 osTokenShares,
address referrer,
IKeeperRewards.HarvestParams calldata harvestParams
) external payable returns (uint256);

Parameters

NameTypeDescription
receiveraddressThe address to receive the OsToken
osTokenSharesuint256The amount of OsToken shares to mint. If set to type(uint256).max, max OsToken shares will be minted.
referreraddressThe address of the referrer
harvestParamsIKeeperRewards.HarvestParamsThe parameters for the harvest

Returns

NameTypeDescription
<none>uint256The amount of OsToken assets minted

Structs

EthVaultConstructorArgs

Struct for deploying the EthVault contract

struct EthVaultConstructorArgs {
address keeper;
address vaultsRegistry;
address validatorsRegistry;
address validatorsWithdrawals;
address validatorsConsolidations;
address consolidationsChecker;
address osTokenVaultController;
address osTokenConfig;
address osTokenVaultEscrow;
address sharedMevEscrow;
address depositDataRegistry;
uint64 exitingAssetsClaimDelay;
}

Properties

NameTypeDescription
keeperaddressThe address of the Keeper contract
vaultsRegistryaddressThe address of the VaultsRegistry contract
validatorsRegistryaddressThe contract address used for registering validators in beacon chain
validatorsWithdrawalsaddressThe contract address used for withdrawing validators in beacon chain
validatorsConsolidationsaddressThe contract address used for consolidating validators in beacon chain
consolidationsCheckeraddressThe contract address used for checking consolidations
osTokenVaultControlleraddressThe address of the OsTokenVaultController contract
osTokenConfigaddressThe address of the OsTokenConfig contract
osTokenVaultEscrowaddressThe address of the OsTokenVaultEscrow contract
sharedMevEscrowaddressThe address of the shared MEV escrow
depositDataRegistryaddressThe address of the DepositDataRegistry contract
exitingAssetsClaimDelayuint64The delay after which the assets can be claimed after exiting from staking

EthVaultInitParams

Struct for initializing the EthVault contract

struct EthVaultInitParams {
uint256 capacity;
uint16 feePercent;
string metadataIpfsHash;
}

Properties

NameTypeDescription
capacityuint256The Vault stops accepting deposits after exceeding the capacity
feePercentuint16The fee percent that is charged by the Vault
metadataIpfsHashstringThe IPFS hash of the Vault's metadata file