Skip to main content

IEthFoxVault

Git Source

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

Author: StakeWise

Defines the interface for the EthFoxVault contract

Functions

initialize

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

function initialize(bytes calldata params) external payable;

Parameters

NameTypeDescription
paramsbytesThe encoded parameters for initializing the EthFoxVault contract

ejectUser

Ejects user from the Vault. Can only be called by the blocklist manager. The ejected user will be added to the blocklist and all his shares will be sent to the exit queue.

function ejectUser(address user) external;

Parameters

NameTypeDescription
useraddressThe address of the user to eject

Events

UserEjected

Event emitted when a user is ejected from the Vault

event UserEjected(address user, uint256 shares);

Parameters

NameTypeDescription
useraddressThe address of the user
sharesuint256The amount of shares ejected

EthFoxVaultCreated

Event emitted on EthFoxVault creation

event EthFoxVaultCreated(
address admin, address ownMevEscrow, uint256 capacity, uint16 feePercent, string metadataIpfsHash
);

Parameters

NameTypeDescription
adminaddressThe address of the Vault admin
ownMevEscrowaddressThe address of the MEV escrow contract
capacityuint256The capacity of the Vault
feePercentuint16The fee percent of the Vault
metadataIpfsHashstringThe IPFS hash of the Vault metadata

Structs

EthFoxVaultInitParams

Struct for initializing the EthFoxVault contract

struct EthFoxVaultInitParams {
address admin;
address ownMevEscrow;
uint256 capacity;
uint16 feePercent;
string metadataIpfsHash;
}

Properties

NameTypeDescription
adminaddressThe address of the Vault admin
ownMevEscrowaddressThe address of the MEV escrow contract
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