Files
xrpl-dev-portal/tool/template-test-net.html
mDuo13 6d91616a62 Improve & refactor interactive tutorial code
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
2021-03-24 13:59:22 -07:00

76 lines
2.9 KiB
HTML

{% extends "template-base.html" %}
{% block bodyclasses %}page-test-net{% endblock %}
{% block right_sidebar %}
<div class="card">
<div class="card-header">
<h4>Testnet Servers</h4>
</div>
<div class="card-body">
<h4>WebSocket and RippleAPI</h4>
<div class="multicode" id="code-0">
<ul class="codetabs">
<li><a href="#code-0-0">Testnet</a></li>
<li><a href="#code-0-1">Devnet</a></li>
</ul>
<div class="code_sample" id="code-0-0">
<pre><code>wss://s.altnet.rippletest.net:51233</code></pre>
</div>
<div class="code_sample" id="code-0-1">
<pre><code>wss://s.devnet.rippletest.net:51233</code></pre>
</div>
</div>
<h4 id="json-rpc">JSON-RPC</h4>
<div class="multicode" id="code-1">
<ul class="codetabs">
<li><a href="#code-1-0">Testnet</a></li>
<li><a href="#code-1-1">Devnet</a></li>
</ul>
<div class="code_sample" id="code-1-0">
<pre><code>https://s.altnet.rippletest.net:51234</code></pre>
</div>
<div class="code_sample" id="code-1-1">
<pre><code>https://s.devnet.rippletest.net:51234</code></pre>
</div>
</div>
</div>
</div>
{% endblock %}
{% block main %}
<section class="container-fluid pt-3 p-md-3">
<h1>XRP Faucets</h1>
<div class="content">
<p>Ripple runs these <a href="parallel-networks.html">parallel XRP Ledger test networks</a>, the Testnet and Devnet, to provide a testing platform for any software products built on the XRP Ledger without using real funds.</p>
<p>These funds are intended for <strong>testing</strong> only. The Testnet ledger and balances will be reset approximately every 90 days, or when otherwise necessary. Devnet funds may be reset without warning as needed.</p>
<p>Testnet and Devnet balances are separate. As a precaution, do not use the Testnet or Devnet credentials on the Mainnet.</p>
<div class="btn-toolbar" role="toolbar" aria-label="Button">
<button id="testnet-creds-button" class="btn btn-primary mr-2">Generate Testnet credentials</button>
<button id="devnet-creds-button" class="btn btn-primary">Generate Devnet credentials</button>
</div><!--/.btn-toolbar-->
<div id='your-credentials'></div>
<div id='loader' style="display: none;"><img class="throbber" src="assets/img/xrp-loader-96.png"> Generating Keys...</div>
<div id='address'></div>
<div id='secret'></div>
<div id='balance'></div>
</div>
</section>
{% endblock %}
{% block endbody %}
<script type='text/javascript' src='assets/js/test-net.js'></script>
<script src="assets/js/multicodetab.js"></script>
<script type="application/javascript">
$(document).ready(function() {
$(".multicode").minitabs();
});
</script>
<script type="application/javascript">
gtag('config', 'UA-157720658-3', {'content_group1': 'API Tools'});
</script>
{% endblock %}