Skip to main content

IGnoErc20Vault

Git Source

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

Author: StakeWise

Defines the interface for the GnoErc20Vault contract

Functions

initialize

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

function initialize(bytes calldata params) external;

Parameters

NameTypeDescription
paramsbytesThe encoded parameters for initializing the GnoErc20Vault contract

Structs

GnoErc20VaultConstructorArgs

Struct for initializing the GnoErc20Vault contract

struct GnoErc20VaultConstructorArgs {
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

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
gnoTokenaddressThe address of the GNO token
gnoDaiDistributoraddressThe address of the GnoDaiDistributor contract
exitingAssetsClaimDelayuint256The delay after which the assets can be claimed after exiting from staking

GnoErc20VaultInitParams

Struct for initializing the GnoErc20Vault contract

struct GnoErc20VaultInitParams {
uint256 capacity;
uint16 feePercent;
string name;
string symbol;
string metadataIpfsHash;
}

Properties

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