mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 20:25:51 +00:00
22 lines
938 B
Markdown
22 lines
938 B
Markdown
---
|
|
html: ledger-data-formats.html
|
|
parent: protocol-reference.html
|
|
blurb: Learn about individual data objects that comprise the XRP Ledger's shared state.
|
|
labels:
|
|
- Data Retention
|
|
---
|
|
# Ledger Data Formats
|
|
|
|
Each [ledger version](ledgers.html) in the XRP Ledger is made up of three parts:
|
|
|
|
- **[Ledger Header](ledger-header.html)**: Metadata about this ledger version itself.
|
|
- **[Transaction Set](transaction-formats.html)**: All the transactions that were executed to create this ledger version.
|
|
- **[State Data](ledger-object-types.html)**: The complete record of objects representing accounts, settings, and balances as of this ledger version. (This is also called the "account state".)
|
|
|
|
## State Data
|
|
|
|
{% include '_snippets/ledger-objects-intro.md' %}
|
|
|
|
{% from '_snippets/macros/page-children.md' import page_children with context %}
|
|
{{ page_children(pages|selectattr("html", "eq", "ledger-object-types.html")|first, 1, 1, True) }}
|