From a1a9c82094ef43e39bc2bffee26c9bdd4ca1e72b Mon Sep 17 00:00:00 2001 From: tequ Date: Tue, 7 Mar 2023 16:40:31 +0900 Subject: [PATCH] [JA] UNLModify --- .../pseudo-transaction-types/unlmodify.ja.md | 45 +++++++++++++++++++ dactyl-config.yml | 4 +- 2 files changed, 48 insertions(+), 1 deletion(-) create mode 100644 content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md diff --git a/content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md b/content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md new file mode 100644 index 0000000000..e75fb8c899 --- /dev/null +++ b/content/references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md @@ -0,0 +1,45 @@ +--- +html: unlmodify.html +parent: pseudo-transaction-types.html +blurb: 現在オフラインとみなされている信頼できるバリデーターのリストを変更します。 +labels: + - ブロックチェーン +--- +# UNLModify + +_([NegativeUNL amendment][]によって追加されました)_ + +`UNLModify`[疑似トランザクション](pseudo-transaction-types.html)は[Negative UNL](negative-unl.html)の変更を示し、信頼できるバリデータがオフラインになったかオンラインに戻ってきたことを示します。 + +**注記:** 擬似トランザクションを送信することはできませんが、台帳を処理する際に擬似トランザクションを発見することがあります。 + +## {{currentpage.name}} JSONの例 + +```json +{ + "Account": "", + "Fee": "0", + "LedgerSequence": 1600000, + "Sequence": 0, + "SigningPubKey": "", + "TransactionType": "UNLModify", + "UNLModifyDisabling": 1, + "UNLModifyValidator": "ED6629D456285AE3613B285F65BBFF168D695BA3921F309949AFCD2CA7AFEC16FE", +} +``` + +{% include '_snippets/pseudo-tx-fields-intro.md' %} + + +| 名前 | JSONの型 | [内部の型][] | 説明 | +|:---------------------|:--------|:------------------|:----------------------| +| `TransactionType` | 文字列 | UInt16 | `0x0066`は文字列`UNLModify`にマッピングされ、このオブジェクトが`UNLModify`擬似トランザクションであることを表します。 | +| `LedgerSequence` | 数値 | UInt32 | この擬似トランザクションが出現する[レジャーインデックス][]です。これは、この擬似トランザクションを、同じ変更の他の出現と区別するものです。 | +| `UNLModifyDisabling` | 数値 | UInt8 | `1`の場合、この変更はネガティブUNLにバリデーターを追加することを意味します。0` の場合、この変更はネガティブ UNL からバリデータを削除することを意味します。(これらの値以外は使用できません) | +| `UNLModifyValidator` | 文字列 | Blob | 追加または削除するバリデータであり、そのマスター公開鍵で識別されます。 | + + + +{% include '_snippets/rippled-api-links.md' %} +{% include '_snippets/tx-type-links.md' %} +{% include '_snippets/rippled_versions.md' %} diff --git a/dactyl-config.yml b/dactyl-config.yml index aa9baee657..2e4d8cea59 100644 --- a/dactyl-config.yml +++ b/dactyl-config.yml @@ -2774,10 +2774,12 @@ pages: targets: - ja - # TODO: translate - md: references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.md targets: - en + + - md: references/protocol-reference/transactions/pseudo-transaction-types/unlmodify.ja.md + targets: - ja - md: references/protocol-reference/transactions/transaction-results/transaction-results.md