# Accessing the Ledger: Contract Entries

## Stellar's ledger

The ledger is the *continuous state* of the Stellar Network. It's made up of the data stored in the Network which can be updated: that's why it's defined as continuous. Nevertheless, when accessing the ledger we access its final state, which is its current state.

Those data are saved on the leger as ledger entries and can be accounts, balances, allowances, *contract data* (related to Soroban) etc. An example of accessing data on the ledger could be accessing the balance of a certain address in a certain liquidity pool.&#x20;

## Accessing the Ledger with Zephyr

Zephyr programs have access to all contract data on the ledger and to many Stellar Classic entries (those are being progressively added). This means that it's possible to access the network's current state for the required entries at any time during the program's execution.


---

# 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.mercurydata.app/zephyr-full-customization/general-concepts/accessing-the-ledger-contract-entries.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.
