-
Notifications
You must be signed in to change notification settings - Fork 1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[JA] translate xchanbridge transactions
- Loading branch information
Showing
17 changed files
with
717 additions
and
107 deletions.
There are no files selected for viewing
66 changes: 66 additions & 0 deletions
66
...nt/@i18n/ja/references/protocol/transactions/types/xchainaccountcreatecommit.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,66 @@ | ||
--- | ||
html: xchainaccountcreatecommit.html | ||
parent: transaction-types.html | ||
blurb: ブリッジが接続するチェーンの一つでアカウントを作成します。このアカウントがそのチェーンのブリッジの入り口となります。 | ||
labels: | ||
- 相互運用性 | ||
status: not_enabled | ||
--- | ||
# XChainAccountCreateCommit | ||
[[ソース]](https://github.com/XRPLF/rippled/blob/master/src/ripple/protocol/impl/TxFormats.cpp#L466-L474 "ソース") | ||
|
||
_([XChainBridge Amendment][] :not_enabled: が必要です)_ | ||
|
||
このトランザクションはXRP-XRPブリッジにのみ使用できます。 | ||
|
||
`XChainAccountCreateCommit`トランザクションは、発行チェーンにトランザクションを送信するために、Witnessサーバ用の新しいアカウントを作成します。 | ||
|
||
**注意:** このトランザクションは、Witnessの証明書が送信先チェーンに確実に送信される場合にのみ実行されるべきです。署名が送信されない場合、証明書が受信されるまでアカウント作成はブロックされます。XRP-XRPブリッジでこのトランザクションを無効にするには、ブリッジの`MinAccountCreateAmount`フィールドを省略します。 | ||
|
||
|
||
## XChainAccountCreateCommit JSONの例 | ||
|
||
```json | ||
{ | ||
"Account": "rwEqJ2UaQHe7jihxGqmx6J4xdbGiiyMaGa", | ||
"Destination": "rD323VyRjgzzhY4bFpo44rmyh2neB5d8Mo", | ||
"TransactionType": "XChainAccountCreateCommit", | ||
"Amount": "20000000", | ||
"SignatureReward": "100", | ||
"XChainBridge": { | ||
"LockingChainDoor": "rMAXACCrp3Y8PpswXcg3bKggHX76V3F8M4", | ||
"LockingChainIssue": { | ||
"currency": "XRP" | ||
}, | ||
"IssuingChainDoor": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh", | ||
"IssuingChainIssue": { | ||
"currency": "XRP" | ||
} | ||
} | ||
} | ||
``` | ||
|
||
|
||
## XChainAccountCreateCommitのフィールド | ||
|
||
| フィールド | JSONの型 | [内部の型][] | 必須? | 説明 | | ||
|:------------------|:-------------|:--------------|:-----| :-----------| | ||
| `Amount` | [通貨額][] | Amount | はい | アカウント作成に使用するXRP単位の金額。これは`Bridge`レジャーオブジェクトで指定されている`MinAccountCreateAmount`以上でなければなりません。 | | ||
| `Destination` | 文字列 | Account | はい | 送信先チェーンの送信先アカウント。 | | ||
| `SignatureReward` | [通貨額][] | Amount | いいえ | 署名を提供したWitnessサーバへの報酬として使用する金額。これは`Bridge`レジャーオブジェクトの金額と一致しなければなりません。 | | ||
| `XChainBridge` | XChainBridge | XChain_Bridge | はい | アカウントを作成するブリッジ。 | | ||
|
||
|
||
### XChainBridgeのフィールド | ||
|
||
| フィールド | JSONの型 | [内部の型][] | 必須? | 説明 | | ||
|:--------------------|:---------|:-----------|:------|:----| | ||
| `IssuingChainDoor` | 文字列 | Account | はい | 発行チェーンのドアアカウント。XRP-XRPブリッジの場合、これはジェネシスアカウント(ネットワークが最初に開始されたときに作成されるアカウントで、すべてのXRPを含む)でなければなりません。 | | ||
| `IssuingChainIssue` | Issue | Issue | はい | 発行チェーン上で作成され、バーンされる資産。IOU-IOUブリッジの場合、供給量の問題を避けるため、資産の発行者は発行チェーンのドアアカウントでなければなりません。 | | ||
| `LockingChainDoor` | 文字列 | Account | はい | ロックチェーンのドアアカウント。 | | ||
| `LockingChainIssue` | Issue | Issue | はい | ロックチェーンでロック、アンロックされる資産。 | | ||
|
||
<!--{# common link defs #}--> | ||
{% include '_snippets/rippled-api-links.md' %} | ||
{% include '_snippets/tx-type-links.md' %} | ||
{% include '_snippets/rippled_versions.md' %} |
83 changes: 83 additions & 0 deletions
83
.../ja/references/protocol/transactions/types/xchainaddaccountcreateattestation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,83 @@ | ||
--- | ||
html: xchainaddaccountcreateattestation.html | ||
parent: transaction-types.html | ||
blurb: XChainAddAccountCreateAttestationトランザクションは他のチェーンでXChainAccountCreateCommitトランザクションが発生した証明をWitnessサーバから提示します。 | ||
labels: | ||
- 相互運用性 | ||
status: not_enabled | ||
--- | ||
# XChainAddAccountCreateAttestation | ||
[[ソース]](https://github.com/XRPLF/rippled/blob/master/src/ripple/protocol/impl/TxFormats.cpp#L447-L464 "ソース") | ||
|
||
_([XChainBridge Amendment][] :not_enabled: が必要です)_ | ||
|
||
`XChainAddAccountCreateAttestation`トランザクションは、`XChainAccountCreateCommit`トランザクションがもう一方のチェーンで発生したというWitnessサーバからの証明を提示します。 | ||
|
||
この署名は署名が提供された時点のドアの署名者リストにある鍵の一つでなければなりません。署名が提出されてから定足数に達するまでの間に署名者リストが変更された場合、新しい署名セットが使用され、現在収集されている署名の一部が削除される可能性があります。 | ||
|
||
どのアカウントでも署名を提出することができます。 | ||
|
||
**注記:** 報酬は現在のリストにある鍵を持っているアカウントにのみ送られます。署名者の定足数は`SignatureReward`に一致する必要があります。より大きな報酬を得ようとして、一つのWitnessサーバがこの値に不正な値を指定することはできません。 | ||
|
||
|
||
## XChainAddAccountCreateAttestation JSONの例 | ||
|
||
```json | ||
{ | ||
"Account": "rDr5okqGKmMpn44Bbhe5WAfDQx8e9XquEv", | ||
"TransactionType": "XChainAddAccountCreateAttestation", | ||
"OtherChainSource": "rUzB7yg1LcFa7m3q1hfrjr5w53vcWzNh3U", | ||
"Destination": "rJMfWNVbyjcCtds8kpoEjEbYQ41J5B6MUd", | ||
"Amount": "2000000000", | ||
"PublicKey": "EDF7C3F9C80C102AF6D241752B37356E91ED454F26A35C567CF6F8477960F66614", | ||
"Signature": "F95675BA8FDA21030DE1B687937A79E8491CE51832D6BEEBC071484FA5AF5B8A0E9AFF11A4AA46F09ECFFB04C6A8DAE8284AF3ED8128C7D0046D842448478500", | ||
"WasLockingChainSend": 1, | ||
"AttestationRewardAccount": "rpFp36UHW6FpEcZjZqq5jSJWY6UCj3k4Es", | ||
"AttestationSignerAccount": "rpWLegmW9WrFBzHUj7brhQNZzrxgLj9oxw", | ||
"XChainAccountCreateCount": "2", | ||
"SignatureReward": "204", | ||
"XChainBridge": { | ||
"LockingChainDoor": "r3nCVTbZGGYoWvZ58BcxDmiMUU7ChMa1eC", | ||
"LockingChainIssue": { | ||
"currency": "XRP" | ||
}, | ||
"IssuingChainDoor": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh", | ||
"IssuingChainIssue": { | ||
"currency": "XRP" | ||
} | ||
}, | ||
"Fee": "20" | ||
} | ||
``` | ||
|
||
|
||
## XChainAddAccountCreateAttestationのフィールド | ||
|
||
| フィールド | JSONの型 | [内部の型][] | 必須? | 説明 | | ||
|:---------------------------|:-------------|:--------------|:------|:----| | ||
| `Amount` | [通貨額][] | Amount | はい | `XChainAccountCreateCommit`トランザクションが送信元チェーンでCommitした金額。 | | ||
| `AttestationRewardAccount` | 文字列 | Account | はい | この署名者の`SignatureReward`を受け取るアカウント。 | | ||
| `AttestationSignerAccount` | 文字列 | Account | はい | ドアアカウントの署名者リストにある、トランザクションに署名したアカウント。 | | ||
| `Destination` | 文字列 | Account | はい | 送信先チェーン上の資金の送金先アカウント。 | | ||
| `OtherChainSource` | 文字列 | Account | はい | 証明に紐づくイベントをトリガーした`XChainAccountCreateCommit`トランザクションを送信した送信元チェーン上のアカウント。 | | ||
| `PublicKey` | 文字列 | Blob | はい | 署名の検証に使用する公開鍵。 | | ||
| `Signature` | 文字列 | Blob | はい | もう一方のチェーン上のイベントを証明する署名。 | | ||
| `SignatureReward` | [通貨額][] | Amount | はい | `XChainAccountCreateCommit`トランザクションで支払われた署名の報酬。 | | ||
| `WasLockingChainSend` | 数値 | UInt8 | はい | イベントが発生したチェーンを表す真偽値。 | | ||
| `XChainAccountCreateCount` | 文字列 | UInt64 | はい | 請求(Claim)が処理される順序を表すカウンタ。 | | ||
| `XChainBridge` | XChainBridge | XChain_Bridge | はい | 証明に紐づくブリッジ。 | | ||
|
||
|
||
### XChainBridgeのフィールド | ||
|
||
| フィールド | JSONの型 | [内部の型][] | 必須? | 説明 | | ||
|:--------------------|:---------|:-----------|:------|:----| | ||
| `IssuingChainDoor` | 文字列 | Account | はい | 発行チェーンのドアアカウント。XRP-XRPブリッジの場合、これはジェネシスアカウント(ネットワークが最初に開始されたときに作成されるアカウントで、すべてのXRPを含む)でなければなりません。 | | ||
| `IssuingChainIssue` | Issue | Issue | はい | 発行チェーン上で作成され、バーンされる資産。IOU-IOUブリッジの場合、供給量の問題を避けるため、資産の発行者は発行チェーンのドアアカウントでなければなりません。 | | ||
| `LockingChainDoor` | 文字列 | Account | はい | ロックチェーンのドアアカウント。 | | ||
| `LockingChainIssue` | Issue | Issue | はい | ロックチェーンでロック、アンロックされる資産。 | | ||
|
||
<!--{# common link defs #}--> | ||
{% include '_snippets/rippled-api-links.md' %} | ||
{% include '_snippets/tx-type-links.md' %} | ||
{% include '_snippets/rippled_versions.md' %} |
103 changes: 103 additions & 0 deletions
103
...nt/@i18n/ja/references/protocol/transactions/types/xchainaddclaimattestation.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,103 @@ | ||
--- | ||
html: xchainaddclaimattestation.html | ||
parent: transaction-types.html | ||
blurb: 送信元チェーンで発生したイベントを、送信先チェーンに証明(アテスト)します。 | ||
labels: | ||
- 相互運用性 | ||
status: not_enabled | ||
--- | ||
# XChainAddClaimAttestation | ||
[[ソース]](https://github.com/XRPLF/rippled/blob/master/src/ripple/protocol/impl/TxFormats.cpp#L429-L445 "ソース") | ||
|
||
_([XChainBridge Amendment][] :not_enabled: が必要です)_ | ||
|
||
`XChainAddClaimAttestation`トランザクションは`XChainCommit`トランザクションを証明するWitnessサーバの署名を提供します。 | ||
|
||
この署名は、署名が提出された時点のドアの署名者リストにある鍵の一つでなければなりません。ただし、署名が提出されてから定足数に達するまでの間に署名者リストが変更された場合は、新しい署名セットが使用され、現在収集されている署名の一部が削除されることがあります。 | ||
|
||
どのアカウントでも署名を提出できます。 | ||
|
||
**注記:** 報酬は現在のリストにある鍵を持っているアカウントにのみ送られます。署名者の定足数は`SignatureReward`に一致する必要があります。より大きな報酬を得ようとして、一つのWitnessサーバがこの値に不正な値を指定することはできません。 | ||
|
||
|
||
## XChainAddClaimAttestation JSONの例 | ||
|
||
```json | ||
{ | ||
"TransactionType": "XChainAddClaimAttestation", | ||
"Account": "rHb9CJAWyB4rj91VRWn96DkukG4bwdtyTh", | ||
"XChainAttestationBatch": { | ||
"XChainBridge": { | ||
"IssuingChainDoor": "rKeSSvHvaMZJp9ykaxutVwkhZgWuWMLnQt", | ||
"IssuingChainIssue": { | ||
"currency": "XRP" | ||
}, | ||
"LockingChainDoor": "rJvExveLEL4jNDEeLKCVdxaSCN9cEBnEQC", | ||
"LockingChainIssue": { | ||
"currency": "XRP" | ||
} | ||
}, | ||
"XChainClaimAttestationBatch" : [ | ||
{ | ||
"XChainClaimAttestationBatchElement" : { | ||
"Account" : "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx", | ||
"Amount" : "100000000", | ||
"AttestationSignerAccount" : "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx", | ||
"Destination" : "r9A8UyNpW3X46FUc6P7JZqgn6WgAPjBwPg", | ||
"PublicKey" : "03DAB289CA36FF377F3F4304C7A7203FDE5EDCBFC209F430F6A4355361425526D0", | ||
"Signature" : "616263", | ||
"WasLockingChainSend" : 1, | ||
"XChainClaimID" : "0000000000000000" | ||
} | ||
} | ||
], | ||
"XChainCreateAccountAttestationBatch": [ | ||
{ | ||
"XChainCreateAccountAttestationBatchElement": { | ||
"Account": "rnJmYAiqEVngtnb5ckRroXLtCbWC7CRUBx", | ||
"Amount": "1000000000", | ||
"AttestationSignerAccount": "rEziJZmeZzsJvGVUmpUTey7qxQLKYxaK9f", | ||
"Destination": "rKT9gDkaedAosiHyHZTjyZs2HvXpzuiGmC", | ||
"PublicKey": "03ADB44CA8E56F78A0096825E5667C450ABD5C24C34E027BC1AAF7E5BD114CB5B5", | ||
"Signature": "3044022036C8B90F85E8073C465F00625248A72D4714600F98EBBADBAD3B7ED226109A3A02204C5A0AE12D169CF790F66541F3DB59C289E0D9CA7511FDFE352BB601F667A26", | ||
"SignatureReward": "1000000", | ||
"WasLockingChainSend": 1, | ||
"XChainAccountCreateCount": "0000000000000001" | ||
} | ||
} | ||
] | ||
} | ||
} | ||
``` | ||
|
||
|
||
## XChainAddClaimAttestationのフィールド | ||
|
||
| フィールド | JSONの型 | [内部の型][] | 必須? | 説明 | | ||
|:---------------------------|:-------------|:--------------|:------|-----| | ||
| `Amount` | [通貨額][] | Amount | はい | `XChainCommit`トランザクションが送信元チェーンでCommitした金額。 | | ||
| `AttestationRewardAccount` | 文字列 | Account | はい | この署名者の`SignatureReward`を受け取るアカウント。 | | ||
| `AttestationSignerAccount` | 文字列 | Account | はい | ドアアカウントの署名者リストにある、トランザクションに署名したアカウント。 | | ||
| `Destination` | 文字列 | Account | いいえ | 送信先チェーン上の資金の送金先アカウント。 (`XChainCommit` トランザクションから取得)。 | | ||
| `OtherChainSource` | 文字列 | Account | はい | 証明に紐づくイベントをトリガーした`XChainCommit`トランザクションを送信した送信元チェーン上のアカウント。 | | ||
| `PublicKey` | 文字列 | Blob | はい | 署名の検証に使用する公開鍵。 | | ||
| `Signature` | 文字列 | Blob | はい | もう一方のチェーン上のイベントを証明する署名。 | | ||
| `WasLockingChainSend` | 数値 | UInt8 | はい | イベントが発生したチェーンを表す真偽値。 | | ||
| `XChainBridge` | XChainBridge | XChain_Bridge | はい | 資金の移動に使用するブリッジ。 | | ||
| `XChainClaimID` | 文字列 | UInt64 | はい | `XChainCommit` トランザクションに含まれる、送金に紐づく`XChainClaimID`。 | | ||
|
||
|
||
### XChainBridgeのフィールド | ||
|
||
| フィールド | JSONの型 | [内部の型][] | 必須? | 説明 | | ||
|:--------------------|:---------|:-----------|:------|:----| | ||
| `IssuingChainDoor` | 文字列 | Account | はい | 発行チェーンのドアアカウント。XRP-XRPブリッジの場合、これはジェネシスアカウント(ネットワークが最初に開始されたときに作成されるアカウントで、すべてのXRPを含む)でなければなりません。 | | ||
| `IssuingChainIssue` | Issue | Issue | はい | 発行チェーン上で作成され、バーンされる資産。IOU-IOUブリッジの場合、供給量の問題を避けるため、資産の発行者は発行チェーンのドアアカウントでなければなりません。 | | ||
| `LockingChainDoor` | 文字列 | Account | はい | ロックチェーンのドアアカウント。 | | ||
| `LockingChainIssue` | Issue | Issue | はい | ロックチェーンでロック、アンロックされる資産。 | | ||
|
||
|
||
<!--{# common link defs #}--> | ||
{% include '_snippets/rippled-api-links.md' %} | ||
{% include '_snippets/tx-type-links.md' %} | ||
{% include '_snippets/rippled_versions.md' %} |
Oops, something went wrong.