GnoVaultFactory
Inherits: IGnoVaultFactory
Author: StakeWise
Factory for deploying Gnosis staking Vaults
State Variables
_securityDeposit
uint256 private constant _securityDeposit = 1e9;
_vaultsRegistry
IVaultsRegistry internal immutable _vaultsRegistry;
_gnoToken
IERC20 internal immutable _gnoToken;
implementation
The address of the Vault implementation contract used for proxy creation
address public immutable override implementation;
ownMevEscrow
The address of the own MEV escrow contract used for Vault creation
address public override ownMevEscrow;
vaultAdmin
The address of the Vault admin used for Vault creation
address public override vaultAdmin;
Functions
constructor
Constructor
constructor(address _implementation, IVaultsRegistry vaultsRegistry, address gnoToken);
Parameters
Name | Type | Description |
---|---|---|
_implementation | address | The implementation address of Vault |
vaultsRegistry | IVaultsRegistry | The address of the VaultsRegistry contract |
gnoToken | address | The address of the GNO token |
createVault
Create Vault. Must transfer security deposit together with a call.
function createVault(bytes calldata params, bool isOwnMevEscrow) external override returns (address vault);
Parameters
Name | Type | Description |
---|---|---|
params | bytes | The encoded parameters for initializing the Vault contract |
isOwnMevEscrow | bool | Whether to deploy own escrow contract or connect to a smoothing pool for priority fees and MEV rewards |
Returns
Name | Type | Description |
---|---|---|
vault | address | The address of the created Vault |