Files
xrpl-dev-portal/tool/template-validator-domain-verifier.html
2020-06-23 13:03:50 -07:00

34 lines
1.4 KiB
HTML

{% extends "template-base.html" %}
{% block main %}
<section class="container-fluid p-3">
<h1>{% trans %}Domain Verification Checker{% endtrans %}</h1>
<p>{% trans %}This tool allows you to verify that <a href="xrp-ledger-toml.html#domain-verification">domain verification</a> is properly configured.{% endtrans %}</p>
<p>{% trans %}Enter the manifest found in your validator-keys.json file. Do not confuse this with your validator's secret key.{% endtrans %}</p>
<p>{% trans %}To do this with the validator-keys-tool use the following command:{% endtrans %}</p>
<pre><code>$ validator-keys show_manifest hex</code></pre>
<form id="manifest-entry">
<div class="input-group">
<input id="manifest" type="text" class="form-control" required
placeholder="{% trans %}Your Manifest Here{% endtrans %}"
pattern="[0-9A-Fa-f]+"><br>
<button class="btn btn-primary form-control">Check Domain Verification</button>
</div><!--/.input-group-->
</form>
<div id="result">
<h5 class='result-title'>{% trans %}Result{% endtrans %}</h5>
<ul id="log">
</ul>
</div>
</section>
{% endblock %}
{% block endbody %}
<script type='text/javascript' src='assets/vendor/iarna-toml-parse.js'></script>
<script type='text/javascript' src='assets/js/domain-verifier-bundle.js'></script>
<script type="application/javascript">
gtag('config', 'UA-157720658-3', {'content_group1': 'API Tools'});
</script>
{% endblock %}