New references landing

This commit is contained in:
mDuo13
2021-06-30 13:24:57 -07:00
parent 521d4073a9
commit e38d7c6300
20 changed files with 3185 additions and 97 deletions

View File

@@ -1,6 +1,6 @@
---
html: base58-encodings.html
parent: protocol-reference.html
parent: basic-data-types.html
blurb: 暗号鍵と関連データをbase58形式で表すフォーマットです。
---
# base58エンコード

View File

@@ -1,6 +1,6 @@
---
html: base58-encodings.html
parent: protocol-reference.html
parent: basic-data-types.html
blurb: Formats for representing cryptographic keys and related data in base58 format.
---
# base58 Encodings

View File

@@ -1,6 +1,6 @@
---
html: currency-formats.html
parent: protocol-reference.html
parent: basic-data-types.html
blurb: 通貨番号の精度と範囲、カスタム通貨コードのフォーマットです。
labels:
- XRP

View File

@@ -1,6 +1,6 @@
---
html: currency-formats.html
parent: protocol-reference.html
parent: basic-data-types.html
blurb: Precision and range for currency numbers, plus formats of custom currency codes.
label:
- XRP

View File

@@ -1,22 +0,0 @@
---
html: modifying-the-ledger.html
parent: protocol-reference.html
blurb: トランザクションだけがレジャーを変更できる理由とその方法です。
labels:
- ブロックチェーン
---
# レジャーの変更
XRP Ledgerに対する変更はすべて、トランザクションの結果として行われます。XRP Ledgerの内容を変更できるAPIメソッドは、トランザクションを送信するコマンドだけです。Ledgerの内容が変更されても、その変更が永続的に適用されるのは、トランザクションが[コンセンサスプロセス](consensus.html)により承認されている場合に限られます。その他のほとんどのパブリックメソッドでは、異なる方法でXRP Ledgerに表示されるデータを閲覧し、サーバーの状態に関する情報を要求します。
トランザクション送信コマンド:
- [submitメソッド][]
- [submit_multisignedメソッド][]
送信可能なさまざまなトランザクションについての詳細は、[トランザクションフォーマット](transaction-formats.html)を参照してください。
<!--{# common link defs #}-->
{% include '_snippets/rippled-api-links.md' %}
{% include '_snippets/tx-type-links.md' %}
{% include '_snippets/rippled_versions.md' %}

View File

@@ -1,15 +0,0 @@
---
html: modifying-the-ledger.html
parent: protocol-reference.html
blurb: Why and how only transactions can modify the ledger.
labels:
- Blockchain
---
# Modifying the Ledger
All changes to the XRP Ledger happen as the result of [transactions](transaction-formats.html), and all changes apply permanently _only_ if the transactions are approved by the [consensus process](consensus.html). No matter what interface you use to access the XRP Ledger, no API method ever change the contents of the XRP Ledger, except by submitting a transaction.
<!--{# common link defs #}-->
{% include '_snippets/rippled-api-links.md' %}
{% include '_snippets/tx-type-links.md' %}
{% include '_snippets/rippled_versions.md' %}

View File

@@ -5,6 +5,13 @@ blurb: XRP Ledgerトランザクションやその他のオブジェクトの場
labels:
- アカウント
- トランザクション送信
curated_anchors:
- name: サンプルコード
anchor: "#サンプルコード"
- name: フィールドの正規順序
anchor: "#フィールドの正規順序"
- name: タイプリスト
anchor: "#タイプリスト"
---
# シリアル化フォーマット
[[ソース]](https://github.com/ripple/rippled/blob/develop/src/ripple/protocol/impl/STObject.cpp#L696-L718 "Source")

View File

@@ -5,6 +5,13 @@ blurb: Conversion between JSON and canonical binary format for XRP Ledger transa
labels:
- Blockchain
- Transaction Sending
curated_anchors:
- name: Sample Code
anchor: "#sample-code"
- name: Canonical Field Order
anchor: "#canonical-field-order"
- name: Type List
anchor: "#type-list"
---
# Serialization Format
[[Source]](https://github.com/ripple/rippled/blob/develop/src/ripple/protocol/impl/STObject.cpp#L696-L718 "Source")

View File

@@ -1,7 +1,7 @@
---
html: transaction-formats.html
parent: protocol-reference.html
blurb: Transactions are the only way to modify the XRP Ledger. Get details about their required format.
blurb: Definitions for all the protocol's transaction types and their results.
template: pagetype-category.html.jinja
---
# Transaction Reference