mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-21 12:15:50 +00:00
Interactive tutorials: more consistent style Interactive tutorials: Use new generics for send-xrp, use-tickets Interactive tutorials: clean up now-unused code Interactive tutorials: progress & debugging of errors Interactive: Require Destination Tags; and related - Validate addresses in Transaction Sender and warn on Mainnet X-address - Option to load destination address from query param in Tx Sender - Some more/updated helpers in interactive tutorial JS Interactive tutorials: fix JA version Interactive tutorials: readme, include code filter (incomplete) Interactive tutorials: improvements for consistency Interactive Tutorials: finish readme Interactive tutorials: fix syntax errors
16 lines
988 B
Markdown
16 lines
988 B
Markdown
{% if use_network is undefined or use_network == "Testnet" %}
|
|
{% set use_network = "Testnet" %}
|
|
{% set faucet_url = "https://faucet.altnet.rippletest.net/accounts" %}
|
|
{% elif use_network == "Devnet" %}
|
|
{% set faucet_url = "https://faucet.devnet.rippletest.net/accounts" %}
|
|
{# No faucet for Mainnet! #}
|
|
{% endif %}
|
|
|
|
{{ start_step("Generate") }}
|
|
<button id="generate-creds-button" class="btn btn-primary" data-fauceturl="{{faucet_url}}">{{use_network}}の暗号鍵を作成する</button>
|
|
<div class="loader collapse"><img class="throbber" src="assets/img/xrp-loader-96.png">暗号鍵を作成しています…</div>
|
|
<div class="output-area"></div>
|
|
{{ end_step() }}
|
|
|
|
**注意:** Rippleは[TestnetとDevnet](parallel-networks.html)をテストの目的でのみ運用しており、その状態とすべての残高を定期的にリセットしています。予防措置として、Testnet、DevnetとMainnetで同じアドレスを使用**しない**ことをお勧めします。
|