IGnoVault
Inherits: IVaultAdmin, IVaultVersion, IVaultFee, IVaultState, IVaultValidators, IVaultEnterExit, IVaultOsToken, IVaultMev, IVaultGnoStaking, IMulticall
Author: StakeWise
Defines the interface for the GnoVault contract
Functions
initialize
Initializes or upgrades the GnoVault contract. Must transfer security deposit during the deployment.
function initialize(bytes calldata params) external;
Parameters
Name | Type | Description |
---|---|---|
params | bytes | The encoded parameters for initializing the GnoVault contract |
Structs
GnoVaultConstructorArgs
Struct for initializing the GnoVault contract
struct GnoVaultConstructorArgs {
address keeper;
address vaultsRegistry;
address validatorsRegistry;
address validatorsWithdrawals;
address validatorsConsolidations;
address consolidationsChecker;
address osTokenVaultController;
address osTokenConfig;
address osTokenVaultEscrow;
address sharedMevEscrow;
address depositDataRegistry;
address gnoToken;
address gnoDaiDistributor;
uint256 exitingAssetsClaimDelay;
}
Properties
Name | Type | Description |
---|---|---|
keeper | address | The address of the Keeper contract |
vaultsRegistry | address | The address of the VaultsRegistry contract |
validatorsRegistry | address | The contract address used for registering validators in beacon chain |
validatorsWithdrawals | address | The contract address used for withdrawing validators in beacon chain |
validatorsConsolidations | address | The contract address used for consolidating validators in beacon chain |
consolidationsChecker | address | The contract address used for checking consolidations |
osTokenVaultController | address | The address of the OsTokenVaultController contract |
osTokenConfig | address | The address of the OsTokenConfig contract |
osTokenVaultEscrow | address | The address of the OsTokenVaultEscrow contract |
sharedMevEscrow | address | The address of the shared MEV escrow |
depositDataRegistry | address | The address of the DepositDataRegistry contract |
gnoToken | address | The address of the GNO token |
gnoDaiDistributor | address | The address of the GnoDaiDistributor contract |
exitingAssetsClaimDelay | uint256 | The delay after which the assets can be claimed after exiting from staking |
GnoVaultInitParams
Struct for initializing the GnoVault contract
struct GnoVaultInitParams {
uint256 capacity;
uint16 feePercent;
string metadataIpfsHash;
}
Properties
Name | Type | Description |
---|---|---|
capacity | uint256 | The Vault stops accepting deposits after exceeding the capacity |
feePercent | uint16 | The fee percent that is charged by the Vault |
metadataIpfsHash | string | The IPFS hash of the Vault's metadata file |