Skip to main content

IGnoValidatorsRegistry

Git Source

Inherits: IValidatorsRegistry

Author: Gnosis

This is the Gnosis validators deposit contract interface. See https://github.com/gnosischain/deposit-contract/blob/master/contracts/SBCDepositContract.sol.

Functions

withdrawableAmount

The amount of GNO that is withdrawable by the address

function withdrawableAmount(address _address) external view returns (uint256);

deposit

Submit a Phase 0 DepositData object.

function deposit(
bytes memory pubkey,
bytes memory withdrawal_credentials,
bytes memory signature,
bytes32 deposit_data_root,
uint256 stake_amount
) external;

Parameters

NameTypeDescription
pubkeybytesA BLS12-381 public key.
withdrawal_credentialsbytesCommitment to a public key for withdrawals.
signaturebytesA BLS12-381 signature.
deposit_data_rootbytes32The SHA-256 hash of the SSZ-encoded DepositData object.
stake_amountuint256The amount of GNO to stake. Used as a protection against malformed input.

batchDeposit

Submit multiple Phase 0 DepositData objects.

function batchDeposit(
bytes calldata pubkeys,
bytes calldata withdrawal_credentials,
bytes calldata signatures,
bytes32[] calldata deposit_data_roots
) external;

Parameters

NameTypeDescription
pubkeysbytesConcatenated array of BLS12-381 public keys.
withdrawal_credentialsbytesCommitment to a public key for withdrawals.
signaturesbytesConcatenated array of BLS12-381 signatures.
deposit_data_rootsbytes32[]Array of SHA-256 hashes of the SSZ-encoded DepositData objects.

claimWithdrawal

Claim withdrawal amount for an address.

function claimWithdrawal(address _address) external;

Parameters

NameTypeDescription
_addressaddressAddress to transfer withdrawable tokens.