# get\_deposit\_count

Read the current validator deposit count from the deposit contract.

## Signatures

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

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

## Parameters

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

## Returns

Deposit count as Python `int`.

## Example

```python
count = w3.seismic.get_deposit_count()
print(count)
```

## Implementation detail

SDK decodes bytes `[64:72]` as little-endian `uint64`.

## See Also

* [get\_deposit\_root](/clients/python/namespaces/methods/get-deposit-root.md) — Read the deposit Merkle root
* [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-count.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.
