get_deposit_count
Read deposit count from deposit contract
Last updated
Read deposit count from deposit contract
Read the current validator deposit count from the deposit contract.
# sync
w3.seismic.get_deposit_count(*, address: str = DEPOSIT_CONTRACT_ADDRESS) -> int
# async
await w3.seismic.get_deposit_count(*, address: str = DEPOSIT_CONTRACT_ADDRESS) -> intaddress: deposit contract address (defaults to DEPOSIT_CONTRACT_ADDRESS)
Deposit count as Python int.
count = w3.seismic.get_deposit_count()
print(count)SDK decodes bytes [64:72] as little-endian uint64.
get_deposit_root — Read the deposit Merkle root
deposit — Submit a validator deposit
Last updated

