# 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>
