Skip to main content

ValidatorsChecker

Git Source

Inherits: IValidatorsChecker

Author: StakeWise

Defines the functionality for: checking validators manager signature checking deposit data root

State Variables

_registerValidatorsTypeHash

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

_validatorsRegistry

IValidatorsRegistry private immutable _validatorsRegistry;

_keeper

IKeeper private immutable _keeper;

_vaultsRegistry

IVaultsRegistry private immutable _vaultsRegistry;

_depositDataRegistry

IDepositDataRegistry private immutable _depositDataRegistry;

Functions

constructor

Constructor

constructor(address validatorsRegistry, address keeper, address vaultsRegistry, address depositDataRegistry);

Parameters

NameTypeDescription
validatorsRegistryaddressThe address of the beacon chain validators registry contract
keeperaddressThe address of the Keeper contract
vaultsRegistryaddressThe address of the VaultsRegistry contract
depositDataRegistryaddressThe address of the DepositDataRegistry contract

checkValidatorsManagerSignature

Function for checking validators manager signature

function checkValidatorsManagerSignature(
address vault,
bytes32 validatorsRegistryRoot,
bytes calldata validators,
bytes calldata signature
) external view override returns (uint256 blockNumber, Status status);

Parameters

NameTypeDescription
vaultaddressThe address of the vault
validatorsRegistryRootbytes32The validators registry root
validatorsbytesThe concatenation of the validators' public key, deposit signature, deposit root
signaturebytesThe validators manager signature

Returns

NameTypeDescription
blockNumberuint256Current block number
statusStatusThe status of the verification

checkDepositDataRoot

Function for checking deposit data root

function checkDepositDataRoot(DepositDataRootCheckParams calldata params)
external
view
override
returns (uint256 blockNumber, Status status);

Parameters

NameTypeDescription
paramsDepositDataRootCheckParamsThe parameters for checking deposit data root

Returns

NameTypeDescription
blockNumberuint256Current block number
statusStatusThe status of the verification

_getValidatorsManagerMessageHash

Get the hash to be signed by the validators manager

function _getValidatorsManagerMessageHash(address vault, bytes32 validatorsRegistryRoot, bytes calldata validators)
private
view
returns (bytes32);

Parameters

NameTypeDescription
vaultaddressThe address of the vault
validatorsRegistryRootbytes32The validators registry root
validatorsbytesThe concatenation of the validators' public key, deposit signature, deposit root

Returns

NameTypeDescription
<none>bytes32The hash to be signed by the validators manager

_computeVaultValidatorsDomain

Computes the hash of the EIP712 typed data for the vault

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

function _computeVaultValidatorsDomain(address vault) private view returns (bytes32);

Returns

NameTypeDescription
<none>bytes32The hash of the EIP712 typed data

_depositAmount

Get the amount of assets required for validator deposit

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

Returns

NameTypeDescription
<none>uint256The amount of assets required for deposit