# get\_deposit\_root

Read the current deposit Merkle root from the deposit contract.

## Signatures

```python
# sync
w3.seismic.get_deposit_root(*, address: str = DEPOSIT_CONTRACT_ADDRESS) -> bytes

# async
await w3.seismic.get_deposit_root(*, address: str = DEPOSIT_CONTRACT_ADDRESS) -> bytes
```

## Parameters

* `address`: deposit contract address (defaults to `DEPOSIT_CONTRACT_ADDRESS`)

## Returns

32-byte root as `bytes`.

## Example

```python
root = w3.seismic.get_deposit_root()
print(root.hex())
```

## See Also

* [get\_deposit\_count](/clients/python/namespaces/methods/get-deposit-count.md) — Read the total deposit count
* [deposit](/clients/python/namespaces/methods/deposit.md) — Submit a validator deposit


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.seismic.systems/clients/python/namespaces/methods/get-deposit-root.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
