GnoErc20Vault
Inherits: VaultImmutables, Initializable, VaultAdmin, VaultVersion, VaultFee, VaultState, VaultValidators, VaultEnterExit, VaultOsToken, VaultMev, VaultToken, VaultGnoStaking, Multicall, IGnoErc20Vault
Author: StakeWise
Defines the Gnosis staking Vault with ERC-20 token
State Variables
_version
uint8 private constant _version = 3;
__gap
This empty reserved space is put in place to allow future versions to add new variables without shifting down storage in the inheritance chain. See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
uint256[50] private __gap;
Functions
constructor
Constructor
Since the immutable variable value is stored in the bytecode, its value would be shared among all proxies pointing to a given contract instead of each proxy’s storage.
Note: oz-upgrades-unsafe-allow: constructor
constructor(GnoErc20VaultConstructorArgs memory args)
VaultImmutables(args.keeper, args.vaultsRegistry)
VaultValidators(
args.depositDataRegistry,
args.validatorsRegistry,
args.validatorsWithdrawals,
args.validatorsConsolidations,
args.consolidationsChecker
)
VaultEnterExit(args.exitingAssetsClaimDelay)
VaultOsToken(args.osTokenVaultController, args.osTokenConfig, args.osTokenVaultEscrow)
VaultMev(args.sharedMevEscrow)
VaultGnoStaking(args.gnoToken, args.gnoDaiDistributor);
Parameters
Name | Type | Description |
---|---|---|
args | GnoErc20VaultConstructorArgs | The arguments for initializing the GnoErc20Vault contract |
initialize
Initializes or upgrades the GnoErc20Vault contract. Must transfer security deposit during the deployment.
function initialize(bytes calldata params) external virtual override reinitializer(_version);
Parameters
Name | Type | Description |
---|---|---|
params | bytes | The encoded parameters for initializing the GnoErc20Vault contract |
transfer
Moves amount
tokens from the caller's account to to
.
function transfer(address to, uint256 amount) public virtual override(IERC20, ERC20Upgradeable) returns (bool);
transferFrom
Moves amount
tokens from from
to to
using the allowance mechanism.
amount
is then deducted from the caller's allowance.
function transferFrom(address from, address to, uint256 amount)
public
virtual
override(IERC20, ERC20Upgradeable)
returns (bool);
enterExitQueue
Locks shares to the exit queue. The shares continue earning rewards until they will be burned by the Vault.
function enterExitQueue(uint256 shares, address receiver)
public
virtual
override(IVaultEnterExit, VaultEnterExit, VaultOsToken)
returns (uint256 positionTicket);
Parameters
Name | Type | Description |
---|---|---|
shares | uint256 | The number of shares to lock |
receiver | address | The address that will receive assets upon withdrawal |
Returns
Name | Type | Description |
---|---|---|
positionTicket | uint256 | The position ticket of the exit queue. Returns uint256 max if no ticket created. |
vaultId
Vault Unique Identifier
function vaultId() public pure virtual override(IVaultVersion, VaultVersion) returns (bytes32);
Returns
Name | Type | Description |
---|---|---|
<none> | bytes32 | The unique identifier of the Vault |
version
Version
function version() public pure virtual override(IVaultVersion, VaultVersion) returns (uint8);
Returns
Name | Type | Description |
---|---|---|
<none> | uint8 | The version of the Vault implementation contract |
_processTotalAssetsDelta
Internal function for processing rewards and penalties
function _processTotalAssetsDelta(int256 assetsDelta) internal virtual override(VaultState, VaultGnoStaking);
Parameters
Name | Type | Description |
---|---|---|
assetsDelta | int256 |
_updateExitQueue
Internal function that must be used to process exit queue
function _updateExitQueue() internal virtual override(VaultState, VaultToken) returns (uint256 burnedShares);
Returns
Name | Type | Description |
---|---|---|
burnedShares | uint256 | The total amount of burned shares |
_mintShares
Internal function for minting shares
function _mintShares(address owner, uint256 shares) internal virtual override(VaultState, VaultToken);
Parameters
Name | Type | Description |
---|---|---|
owner | address | The address of the owner to mint shares to |
shares | uint256 | The number of shares to mint |
_burnShares
Internal function for burning shares
function _burnShares(address owner, uint256 shares) internal virtual override(VaultState, VaultToken);
Parameters
Name | Type | Description |
---|---|---|
owner | address | The address of the owner to burn shares for |
shares | uint256 | The number of shares to burn |
_checkCanWithdrawValidators
Internal function for checking whether the caller can withdraw validators
function _checkCanWithdrawValidators(bytes calldata validators, bytes calldata validatorsManagerSignature)
internal
override;
Parameters
Name | Type | Description |
---|---|---|
validators | bytes | The concatenated validators data |
validatorsManagerSignature | bytes | The optional signature from the validators manager |
_withdrawValidator
Internal function for withdrawing validator
function _withdrawValidator(bytes calldata validator)
internal
override(VaultValidators, VaultGnoStaking)
returns (bytes calldata publicKey, uint256 withdrawnAmount, uint256 feePaid);
Parameters
Name | Type | Description |
---|---|---|
validator | bytes | The validator withdrawal data |
Returns
Name | Type | Description |
---|---|---|
publicKey | bytes | The public key of the withdrawn validator |
withdrawnAmount | uint256 | The amount of assets that was withdrawn |
feePaid | uint256 | The amount of fee that was paid |
__GnoErc20Vault_upgrade
Upgrades the GnoErc20Vault contract
function __GnoErc20Vault_upgrade() internal;
__GnoErc20Vault_init
Initializes the GnoErc20Vault contract
function __GnoErc20Vault_init(address admin, address ownMevEscrow, GnoErc20VaultInitParams memory params)
internal
onlyInitializing;
Parameters
Name | Type | Description |
---|---|---|
admin | address | The address of the admin of the Vault |
ownMevEscrow | address | The address of the MEV escrow owned by the Vault. Zero address if shared MEV escrow is used. |
params | GnoErc20VaultInitParams | The decoded parameters for initializing the GnoErc20Vault contract |