mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 03:35:51 +00:00
Ledger Objects: reuse intro, port tweaks to JA target.
This commit is contained in:
3
content/_snippets/ledger-objects-intro.ja.md
Normal file
3
content/_snippets/ledger-objects-intro.ja.md
Normal file
@@ -0,0 +1,3 @@
|
||||
各[]レジャー](ledgers.html)の状態ツリーは**レジャーオブジェクト**のセットで構成されており、それらが総合して共有レジャーのすべての設定、残高、関係を表します。
|
||||
|
||||
rippledサーバーが互いに通信するために使用する[ピアプロトコル](peer-protocol.html)では、レジャーオブジェクトは生[バイナリーフォーマット](serialization.html)で表されます。rippled APIでは、レジャーオブジェクトはJSONオブジェクトとして表されます。
|
||||
5
content/_snippets/ledger-objects-intro.md
Normal file
5
content/_snippets/ledger-objects-intro.md
Normal file
@@ -0,0 +1,5 @@
|
||||
Each [ledger version](ledgers.html)'s state data is a set of **ledger objects**, sometimes called _ledger entries_, which collectively represent all settings, balances, and relationships at a given point in time. To store or retrieve an object in the state data, the protocol uses that object's unique **[Ledger Object ID](ledger-object-ids.html)**.
|
||||
|
||||
In the [peer protocol](peer-protocol.html), ledger objects have a [canonical binary format](serialization.html). In `rippled` APIs, ledger objects are represented as JSON objects.
|
||||
|
||||
A ledger object's data fields depend on the type of object; the XRP Ledger supports the following types:
|
||||
@@ -0,0 +1,23 @@
|
||||
---
|
||||
html: ledger-data-formats.html
|
||||
funnel: Build
|
||||
doc_type: References
|
||||
supercategory: rippled API
|
||||
category: Ledger Data Formats
|
||||
blurb: XRP Ledgerの共有状態を構成する個別のデータオブジェクトについて説明します。
|
||||
---
|
||||
# レジャーのデータ型
|
||||
|
||||
XRP Ledgerに各レジャーバージョンは3つの要素で構成されています:
|
||||
|
||||
* **[レジャーヘッダー](ledger-header.html)**: このレジャーに関してメタデータです。
|
||||
* **[トランザクションセット](transaction-formats.html)**: このレジャーの作成時に、直前のレジャーに適用されたトランザクション。
|
||||
* **[状態データ](ledger-object-types.html)**: このバージョンのレジャーの設定、残高、オブジェクトを含むすべてのレジャーオブジェクト。
|
||||
|
||||
|
||||
## 状態データ
|
||||
|
||||
{% include '_snippets/ledger-objects-intro.ja.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) }}
|
||||
@@ -16,9 +16,7 @@ Each [ledger version](ledgers.html) in the XRP Ledger is made up of three parts:
|
||||
|
||||
## State Data
|
||||
|
||||
The ledger's state data consists of objects, or _ledger entries_, stored in a trie format. To store or retrieve an object in the state data, the protocol uses that object's unique **[Ledger Object ID](ledger-object-ids.html)**.
|
||||
|
||||
A ledger object's data fields depend on the type of object; the XRP Ledger supports the following types:
|
||||
{% 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) }}
|
||||
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
html: ledger-object-types.html
|
||||
funnel: Build
|
||||
doc_type: References
|
||||
supercategory: rippled API
|
||||
category: Ledger Data Formats
|
||||
subcategory: Ledger Object Types
|
||||
template: template-landing-children.html
|
||||
---
|
||||
# レジャーオブジェクトのタイプ
|
||||
|
||||
{% include '_snippets/ledger-objects-intro.ja.md' %}
|
||||
@@ -0,0 +1,12 @@
|
||||
---
|
||||
html: ledger-object-types.html
|
||||
funnel: Build
|
||||
doc_type: References
|
||||
supercategory: rippled API
|
||||
category: Ledger Data Formats
|
||||
subcategory: Ledger Object Types
|
||||
template: template-landing-children.html
|
||||
---
|
||||
# Ledger Object Types
|
||||
|
||||
{% include '_snippets/ledger-objects-intro.md' %}
|
||||
Reference in New Issue
Block a user