get_deposit_root
Read deposit Merkle root from deposit contract
Last updated
Read deposit Merkle root from deposit contract
Read the current deposit Merkle root from the deposit contract.
# sync
w3.seismic.get_deposit_root(*, address: str = DEPOSIT_CONTRACT_ADDRESS) -> bytes
# async
await w3.seismic.get_deposit_root(*, address: str = DEPOSIT_CONTRACT_ADDRESS) -> bytesaddress: deposit contract address (defaults to DEPOSIT_CONTRACT_ADDRESS)
32-byte root as bytes.
root = w3.seismic.get_deposit_root()
print(root.hex())get_deposit_count — Read the total deposit count
deposit — Submit a validator deposit
Last updated

