# LidoTransfer

This table records transfers of Lido shares between addresses. It captures details like the sender and recipient addresses, the number of shares transferred, the balances before and after the transfer, and the total pooled Ether and shares.

### Schema

<table><thead><tr><th width="274">Data Fields</th><th>Description</th></tr></thead><tbody><tr><td>id</td><td>A unique identifier for the transfer.</td></tr><tr><td>from</td><td>The address that sent the Lido shares.</td></tr><tr><td>to</td><td>The address that received the Lido shares.</td></tr><tr><td>value</td><td>The number of Lido shares transferred (same as <code>value</code>).</td></tr><tr><td>shares</td><td>The <code>from</code> address's Lido shares balance before the transfer.</td></tr><tr><td>shares_before_decrease</td><td>The <code>from</code> address's Lido shares balance before the transfer.</td></tr><tr><td>shares_after_decrease</td><td>The <code>from</code> address's Lido shares balance before the transfer.</td></tr><tr><td>shares_before_increase</td><td>The <code>to</code> address's Lido shares balance before the transfer.</td></tr><tr><td>shares_after_increase</td><td>The <code>to</code> address's Lido shares balance after the transfer.</td></tr><tr><td>total_pooled_ether</td><td>The total amount of Ether pooled by Lido.</td></tr><tr><td>total_shares</td><td>The total number of Lido shares in circulation.</td></tr><tr><td>balance_after_decrease</td><td>The <code>from</code> address's Ether balance after the transfer.</td></tr><tr><td>balance_after_increase</td><td>The <code>to</code> address's Ether balance after the transfer.</td></tr><tr><td>block_timestamp</td><td>The timestamp of the block in which the transfer occurred.</td></tr><tr><td>transaction_hash</td><td>The hash of the transaction that included the transfer.</td></tr><tr><td>transaction_index</td><td>The index of the transaction within the block.</td></tr><tr><td>log_index</td><td>The index of the log entry for the transfer event within the transaction.</td></tr></tbody></table>


---

# 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.blockflow.network/use-cases/lido-finance/databases/lidotransfer.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.
