Ledger Objects: reuse intro, port tweaks to JA target.

This commit is contained in:
mDuo13
2020-10-29 13:48:24 -07:00
parent 67e13dec7c
commit 6d64b40827
7 changed files with 59 additions and 29 deletions

View File

@@ -0,0 +1,3 @@
各[]レジャー](ledgers.html)の状態ツリーは**レジャーオブジェクト**のセットで構成されており、それらが総合して共有レジャーのすべての設定、残高、関係を表します。
rippledサーバーが互いに通信するために使用する[ピアプロトコル](peer-protocol.html)では、レジャーオブジェクトは生[バイナリーフォーマット](serialization.html)で表されます。rippled APIでは、レジャーオブジェクトはJSONオブジェクトとして表されます。

View 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:

View File

@@ -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) }}

View File

@@ -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) }}

View File

@@ -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' %}

View File

@@ -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' %}