IConsensusLayerDepositManagerV1
Alluvial Finance Inc.
Consensys Layer Deposit Manager Interface (v1)
This interface exposes methods to handle the interactions with the official deposit contract
Methods
depositToConsensusLayerWithDepositRoot
Deposits current balance to the Consensus Layer by batches of 32 ETH
Parameters
_maxCount
uint256
The maximum amount of validator keys to fund
_depositRoot
bytes32
The root of the deposit tree
getBalanceToDeposit
Returns the amount of ETH not yet committed for deposit
Returns
_0
uint256
The amount of ETH not yet committed for deposit
getCommittedBalance
Returns the amount of ETH committed for deposit
Returns
_0
uint256
The amount of ETH committed for deposit
getDepositedValidatorCount
Get the deposited validator count (the count of deposits made by the contract)
Returns
_0
uint256
The deposited validator count
getKeeper
Get the keeper address
Returns
_0
address
The keeper address
getWithdrawalCredentials
Retrieve the withdrawal credentials
Returns
_0
bytes32
The withdrawal credentials
Events
SetDepositContractAddress
The stored deposit contract address changed
Parameters
depositContract indexed
address
Address of the deposit contract
SetDepositedValidatorCount
Emitted when the deposited validator count is updated
Parameters
oldDepositedValidatorCount
uint256
The old deposited validator count value
newDepositedValidatorCount
uint256
The new deposited validator count value
SetWithdrawalCredentials
The stored withdrawal credentials changed
Parameters
withdrawalCredentials
bytes32
The withdrawal credentials to use for deposits
Errors
ErrorOnDeposit
An error occured during the deposit
InconsistentPublicKeys
The length of the BLS Public key is invalid during deposit
InconsistentSignatures
The length of the BLS Signature is invalid during deposit
InvalidDepositRoot
Invalid deposit root
InvalidPublicKeyCount
The received count of public keys to deposit is invalid
InvalidSignatureCount
The received count of signatures to deposit is invalid
InvalidWithdrawalCredentials
The withdrawal credentials value is null
NoAvailableValidatorKeys
The internal key retrieval returned no keys
NotEnoughFunds
Not enough funds to deposit one validator
OnlyKeeper
Last updated