Files
xrpl-dev-portal/tool/template-validator-domain-verifier.html
mbhandary 711513b5ab Validator Domain Verifier tool
Complted and tested toml parsing and domain verification

Edited HTML for more clarity

Included source for domain-verifier-bundle.js

Added build instructions and source for domain-verifier-bundle.js

Updated and separated build instructions

Minified domain-verifier-bundle.js using webpack

Updated build instructions with webpack and added extra manifest checks

Added query parameter to request, made relative url change, and added attestation check

Added newline to html

validator-domain-verifier-tool: use <pre>
2020-03-03 14:21:35 -08:00

34 lines
1.3 KiB
HTML

{% extends "template-base.html" %}
{% block main %}
<section class="container-fluid p-3">
<h1>Domain Verification Checker</h1>
<p>This tool allows you to verify that <a href="xrp-ledger-toml.html#domain-verification">domain verification</a> is properly configured. </p>
<p>Enter the manifest found in your validator-keys.json file. Do not confuse this with your validator's secret key.</p>
<p>To do this with the validator-keys-tool use the following command:</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="Your Manifest Here"
pattern="[0-9A-F]+"><br>
<button class="btn btn-primary form-control">Check Domain Verification</button>
</div><!--/.input-group-->
</form>
<div id="result">
<h5 class='result-title'>Result</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('set', {'content_group1': 'API Tools'});
</script>
{% endblock %}