Skip to main content

VaultValidators

Git Source

Inherits: VaultImmutables, Initializable, ReentrancyGuardUpgradeable, VaultAdmin, VaultState, IVaultValidators

Author: StakeWise

Defines the validators functionality for the Vault

State Variables

_validatorsManagerTypeHash

bytes32 private constant _validatorsManagerTypeHash =
keccak256("VaultValidators(bytes32 validatorsRegistryRoot,bytes validators)");

_validatorV1DepositLength

uint256 internal constant _validatorV1DepositLength = 176;

_validatorV2DepositLength

uint256 internal constant _validatorV2DepositLength = 184;

_validatorWithdrawalLength

uint256 private constant _validatorWithdrawalLength = 56;

_validatorConsolidationLength

uint256 private constant _validatorConsolidationLength = 96;

_depositDataRegistry

Note: oz-upgrades-unsafe-allow: state-variable-immutable

address private immutable _depositDataRegistry;

_initialChainId

Note: oz-upgrades-unsafe-allow: state-variable-immutable

uint256 private immutable _initialChainId;

_validatorsRegistry

Note: oz-upgrades-unsafe-allow: state-variable-immutable

address internal immutable _validatorsRegistry;

_validatorsWithdrawals

Note: oz-upgrades-unsafe-allow: state-variable-immutable

address private immutable _validatorsWithdrawals;

_validatorsConsolidations

Note: oz-upgrades-unsafe-allow: state-variable-immutable

address private immutable _validatorsConsolidations;

_consolidationsChecker

Note: oz-upgrades-unsafe-allow: state-variable-immutable

address private immutable _consolidationsChecker;

__deprecated__validatorsRoot

deprecated. Deposit data management is moved to DepositDataRegistry contract

bytes32 private __deprecated__validatorsRoot;

__deprecated__validatorIndex

deprecated. Deposit data management is moved to DepositDataRegistry contract

uint256 private __deprecated__validatorIndex;

_validatorsManager

address private _validatorsManager;

_initialDomainSeparator

bytes32 private _initialDomainSeparator;

trackedValidators

Function for checking if the validator is tracked in the contract

mapping(bytes32 publicKeyHash => bool isRegistered) public override trackedValidators;

validatorsManagerNonce

The nonce for the validators manager used for signing

uint256 public override validatorsManagerNonce;

__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[47] 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(
address depositDataRegistry,
address validatorsRegistry,
address validatorsWithdrawals,
address validatorsConsolidations,
address consolidationsChecker
);

Parameters

NameTypeDescription
depositDataRegistryaddressThe address of the deposit data registry 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 verifying consolidation approvals

validatorsManager

The Vault validators manager address

function validatorsManager() public view override returns (address);

Returns

NameTypeDescription
<none>addressThe address that can register validators

registerValidators

Function for registering single or multiple validators

function registerValidators(
IKeeperValidators.ApprovalParams calldata keeperParams,
bytes calldata validatorsManagerSignature
) external override;

Parameters

NameTypeDescription
keeperParamsIKeeperValidators.ApprovalParamsThe parameters for getting approval from Keeper oracles
validatorsManagerSignaturebytesThe optional signature from the validators manager

fundValidators

Function for funding single or multiple existing validators

function fundValidators(bytes calldata validators, bytes calldata validatorsManagerSignature) external override;

Parameters

NameTypeDescription
validatorsbytesThe concatenated validators data
validatorsManagerSignaturebytesThe optional signature from the validators manager

withdrawValidators

Function for withdrawing single or multiple validators

function withdrawValidators(bytes calldata validators, bytes calldata validatorsManagerSignature)
external
payable
override
nonReentrant;

Parameters

NameTypeDescription
validatorsbytesThe concatenated validators data
validatorsManagerSignaturebytesThe optional signature from the validators manager

consolidateValidators

Function for consolidating single or multiple validators

function consolidateValidators(
bytes calldata validators,
bytes calldata validatorsManagerSignature,
bytes calldata oracleSignatures
) external payable override;

Parameters

NameTypeDescription
validatorsbytesThe concatenated validators data
validatorsManagerSignaturebytesThe optional signature from the validators manager
oracleSignaturesbytesThe optional signatures from the oracles

_processConsolidation

Internal function to process validator consolidations

function _processConsolidation(bytes calldata validators, uint256 validatorsCount, bytes calldata oracleSignatures)
private;

Parameters

NameTypeDescription
validatorsbytesThe concatenated validators data
validatorsCountuint256The number of validators to consolidate
oracleSignaturesbytesThe optional signatures from the oracles

setValidatorsManager

Function for updating the validators manager. Can only be called by the admin. Default is the DepositDataRegistry contract.

function setValidatorsManager(address validatorsManager_) external override;

Parameters

NameTypeDescription
validatorsManager_address

_registerValidator

Internal function for registering validator

function _registerValidator(bytes calldata validator, bool isTopUp, bool isV1Validator)
internal
virtual
returns (uint256 depositAmount);

Parameters

NameTypeDescription
validatorbytesThe validator registration data
isTopUpboolWhether the registration is a balance top-up
isV1ValidatorboolWhether the validator is V1 or V2

Returns

NameTypeDescription
depositAmountuint256The amount of assets that was deposited

_withdrawValidator

Internal function for withdrawing validator

function _withdrawValidator(bytes calldata validator)
internal
virtual
returns (bytes calldata publicKey, uint256 withdrawnAmount, uint256 feePaid);

Parameters

NameTypeDescription
validatorbytesThe validator withdrawal data

Returns

NameTypeDescription
publicKeybytesThe public key of the withdrawn validator
withdrawnAmountuint256The amount of assets that was withdrawn
feePaiduint256The amount of fee that was paid

_consolidateValidator

Internal function for consolidating validators

function _consolidateValidator(bytes calldata validator)
private
returns (bytes calldata fromPublicKey, bytes calldata toPublicKey, uint256 feePaid);

Parameters

NameTypeDescription
validatorbytes

_validatorMinEffectiveBalance

Internal function for fetching validator minimum effective balance

function _validatorMinEffectiveBalance() internal pure virtual returns (uint256);

Returns

NameTypeDescription
<none>uint256The minimum effective balance for the validator

_validatorMaxEffectiveBalance

Internal function for fetching validator maximum effective balance

function _validatorMaxEffectiveBalance() internal pure virtual returns (uint256);

Returns

NameTypeDescription
<none>uint256The maximum effective balance for the validator

_registerValidators

Internal function for registering validators

function _registerValidators(
bytes calldata validators,
bytes32 nonce,
bytes calldata validatorsManagerSignature,
bool isTopUp
) private;

Parameters

NameTypeDescription
validatorsbytesThe concatenated validators data
noncebytes32The nonce of the signature
validatorsManagerSignaturebytesThe optional signature from the validators manager
isTopUpboolWhether the registration is a balance top-up

_checkCanWithdrawValidators

Internal function for checking whether the caller can withdraw validators

function _checkCanWithdrawValidators(bytes calldata validators, bytes calldata validatorsManagerSignature)
internal
virtual;

Parameters

NameTypeDescription
validatorsbytesThe concatenated validators data
validatorsManagerSignaturebytesThe optional signature from the validators manager

_isValidatorsManager

Internal function for checking whether the caller is the validators manager. If the valid signature is provided, update the nonce.

function _isValidatorsManager(bytes calldata validators, bytes32 nonce, bytes calldata validatorsManagerSignature)
internal
returns (bool);

Parameters

NameTypeDescription
validatorsbytesThe concatenated validators data
noncebytes32The nonce of the signature
validatorsManagerSignaturebytesThe optional signature from the validators manager

Returns

NameTypeDescription
<none>booltrue if the caller is the validators manager

_getValidatorsManagerSigningMessage

Get the message to be signed by the validators manager

function _getValidatorsManagerSigningMessage(bytes32 nonce, bytes calldata validators) private view returns (bytes32);

Parameters

NameTypeDescription
noncebytes32The nonce of the message
validatorsbytesThe concatenated validators data

Returns

NameTypeDescription
<none>bytes32The message to be signed

_computeVaultValidatorsDomain

Computes the hash of the EIP712 typed data

This function is used to compute the hash of the EIP712 typed data

function _computeVaultValidatorsDomain() private view returns (bytes32);

Returns

NameTypeDescription
<none>bytes32The hash of the EIP712 typed data

__VaultValidators_upgrade

Upgrades the VaultValidators contract

function __VaultValidators_upgrade() internal onlyInitializing;

__VaultValidators_init

Initializes the VaultValidators contract

NB! This initializer must be called after VaultState initializer

function __VaultValidators_init() internal onlyInitializing;