mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-20 19:55:54 +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
28 lines
975 B
Markdown
28 lines
975 B
Markdown
{% if use_network is undefined or use_network == "Testnet" %}
|
|
{% set explorer_url = "https://testnet.xrpl.org" %}
|
|
{% elif use_network == "Devnet" %}
|
|
{% set explorer_url = "https://devnet.xrpl.org" %}
|
|
{% elif use_network == "Mainnet" %}
|
|
{% set explorer_url = "https://livenet.xrpl.org" %}
|
|
{% endif %}
|
|
|
|
<table class="wait-step" data-explorerurl="{{explorer_url}}">
|
|
<tr>
|
|
<th>トランザクションのID:</th>
|
|
<td class="waiting-for-tx">(無)</td>
|
|
<tr>
|
|
<th>最新の検証レジャーインデックス:</th>
|
|
<td class="validated-ledger-version">接続されていません</td>
|
|
</tr>
|
|
<tr>
|
|
<th>送信時のレジャーインデックス:</th>
|
|
<td class="earliest-ledger-version">(まだ送信されません)</td>
|
|
</tr>
|
|
<tr>
|
|
<th>トランザクションの<code>LastLedgerSequence</code>:</th>
|
|
<td class="lastledgersequence">(準備されません)</td>
|
|
</tr>
|
|
<tr class="tx-validation-status">
|
|
</tr>
|
|
</table>
|