Skip to main content

IEthVaultFactory

Git Source

Author: StakeWise

Defines the interface for the ETH Vault Factory contract

Functions

implementation

The address of the Vault implementation contract used for proxy creation

function implementation() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the Vault implementation contract

ownMevEscrow

The address of the own MEV escrow contract used for Vault creation

function ownMevEscrow() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the MEV escrow contract

vaultAdmin

The address of the Vault admin used for Vault creation

function vaultAdmin() external view returns (address);

Returns

NameTypeDescription
<none>addressThe address of the Vault admin

createVault

Create Vault. Must transfer security deposit together with a call.

function createVault(bytes calldata params, bool isOwnMevEscrow) external payable returns (address vault);

Parameters

NameTypeDescription
paramsbytesThe encoded parameters for initializing the Vault contract
isOwnMevEscrowboolWhether to deploy own escrow contract or connect to a smoothing pool for priority fees and MEV rewards

Returns

NameTypeDescription
vaultaddressThe address of the created Vault

Events

VaultCreated

Event emitted on a Vault creation

event VaultCreated(address indexed admin, address indexed vault, address ownMevEscrow, bytes params);

Parameters

NameTypeDescription
adminaddressThe address of the Vault admin
vaultaddressThe address of the created Vault
ownMevEscrowaddressThe address of the own MEV escrow contract. Zero address if shared MEV escrow is used.
paramsbytesThe encoded parameters for initializing the Vault contract