From 11d73c4a72a9b08d70a1529e95de75b48620f46b Mon Sep 17 00:00:00 2001
From: JST5000 3. Display an Account
Open your wallet app and provide a Secret (seed) value from an already-funded address, such as one you got from the Testnet Faucet.
Send at least the base reserve (currently 10 XRP) to the brand-new classic address you generated in the Python interpreter.
diff --git a/pr-preview/jm-faucets/code-samples.html b/pr-preview/jm-faucets/code-samples.html index f6cd7052a1a..20e4246c6e9 100644 --- a/pr-preview/jm-faucets/code-samples.html +++ b/pr-preview/jm-faucets/code-samples.html @@ -3439,21 +3439,21 @@Get credentials and test-XRP for XRP Ledger Testnet or Devnet.
diff --git a/pr-preview/jm-faucets/docs.html b/pr-preview/jm-faucets/docs.html index e0d792e89b3..32f2c664b39 100644 --- a/pr-preview/jm-faucets/docs.html +++ b/pr-preview/jm-faucets/docs.html @@ -552,7 +552,7 @@Use these web-based tools to assist during all stages of development, from getting your first payment to testing your implementation for best practices.
Get credentials and test-XRP for XRP Ledger Testnet or Devnet.
@@ -586,7 +586,7 @@Send at least the base reserve (currently 10 XRP) to the brand-new classic address you generated in the Python interpreter.
diff --git a/pr-preview/jm-faucets/ja/code-samples.html b/pr-preview/jm-faucets/ja/code-samples.html index 8d9d4315de4..86a50164276 100644 --- a/pr-preview/jm-faucets/ja/code-samples.html +++ b/pr-preview/jm-faucets/ja/code-samples.html @@ -3435,21 +3435,21 @@rippled.cfg
ファイルで以下の手順に従います。a. Testnetに接続するには、以下のセクションのコメントを解除し、次のように追加します。
+a. Testnetに接続するには、以下のセクションのコメントを解除し、次のように追加します。
[ips]
s.altnet.rippletest.net 51235
b. Devnetに接続するには、以下のセクションのコメントを解除し、次のように追加します。
+b. Devnetに接続するには、以下のセクションのコメントを解除し、次のように追加します。
[ips]
s.devnet.rippletest.net 51235
Get credentials and test-XRP for XRP Ledger Testnet or Devnet.
diff --git a/pr-preview/jm-faucets/ja/docs.html b/pr-preview/jm-faucets/ja/docs.html index 62695a2c6c4..45066a61e28 100644 --- a/pr-preview/jm-faucets/ja/docs.html +++ b/pr-preview/jm-faucets/ja/docs.html @@ -553,7 +553,7 @@これらのウェブベースのツールを使用して、最初の支払いからベストプラクティスのための実装テストまで、開発のすべてのステージをサポートします。
XRP Ledger TestnetまたはDevnetでアカウントとテスト用XRPを取得しましょう
@@ -587,7 +587,7 @@条件付き決済は、2017-03-31以降XRP Ledgerコンセンサスプロトコルに対する「Escrow」Amendmentにより利用可能になりました。同機能の以前のバージョンは、2016年に「Suspended Payments」(SusPay)という名称でXRP Ledger Testnetで利用可能になりました。
+条件付き決済は、2017-03-31以降XRP Ledgerコンセンサスプロトコルに対する「Escrow」Amendmentにより利用可能になりました。同機能の以前のバージョンは、2016年に「Suspended Payments」(SusPay)という名称でXRP Ledger Testnetで利用可能になりました。
スタンドアロンモードでのテストの際には、Amendmentのステータスに関係なく、Escrow機能をローカルで強制的に有効にできます。次のスタンザをrippled.cfg
に追加してください。
[features]
Escrow
diff --git a/pr-preview/jm-faucets/ja/get-started-using-java.html b/pr-preview/jm-faucets/ja/get-started-using-java.html
index f4627246931..669dc19aa7d 100644
--- a/pr-preview/jm-faucets/ja/get-started-using-java.html
+++ b/pr-preview/jm-faucets/ja/get-started-using-java.html
@@ -313,7 +313,7 @@ Learning Goals
上記の例では、Test Net上にあるRippleの公開APIサーバーの1つに対して、安全な接続(wss://
)を開きます。代わりにデフォルトの構成を使用してローカルで運用しているrippled
サーバーに接続するには、最初の行に以下を使用して、ローカルのポート6006で 安全ではない 接続(ws://
)を開きます。
上記の例では、Test Net上にあるRippleの公開APIサーバーの1つに対して、安全な接続(wss://
)を開きます。代わりにデフォルトの構成を使用してローカルで運用しているrippled
サーバーに接続するには、最初の行に以下を使用して、ローカルのポート6006で 安全ではない 接続(ws://
)を開きます。
const socket = new WebSocket('ws://localhost:6006')
ヒント: デフォルトでは、ローカルrippled
サーバーに接続することで、インターネット上の公開サーバーに接続する際に使用できるパブリックメソッド以外に、すべての管理メソッドと、server_infoなどの一部の応答に含まれる管理者専用データを利用できます。
オンラインマシンから、ステップ1でメモしたアカウントアドレス に十分なXRPを送金します。詳細は、アカウントの作成を参照してください。
-ヒント: テストの目的で、Testnet Faucetを使用して、テスト用のXRPが入った新しいアカウントを取得できます。そのアカウントを使用して、オフラインで生成されたアドレスに資金を供給します。
+ヒント: テストの目的で、Testnet Faucetを使用して、テスト用のXRPが入った新しいアカウントを取得できます。そのアカウントを使用して、オフラインで生成されたアドレスに資金を供給します。
前のステップからのトランザクションがコンセンサスにより検証されたら、アカウントが作成されたことになります。オンラインマシンから、account_infoメソッドを使用して、アカウントのステータスを確認します。応答に"validated": true
が含まれていることを確認し、この結果が最終的なものであることを確認します。
結果のaccount_data
のSequence
フィールドにある、アカウントのシーケンス番号をメモします。この後のステップでアカウントのトランザクションに署名するために、このシーケンス番号を把握しておく必要があります。