move vanillae ts over here

This commit is contained in:
2023-04-21 18:30:37 -06:00
parent abcd435d01
commit 261846aa7e
31 changed files with 0 additions and 0 deletions
+37
View File
@@ -0,0 +1,37 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Vanillae Tests</title>
</head>
<body>
<h1>Base58 Encode/Decode Tests</h1>
<p>Current case: <span id="b58-current-case"></span></p>
<p>Total cases: <span id="b58-total-cases"></span></p>
<button id="b58-go">Go!</button>
<h5>Failed case log:</h5>
<pre id="b58-assershins"></pre>
<h1>Base64 Encode/Decode Tests</h1>
<p>Current case: <span id="b64-current-case"></span></p>
<p>Total cases: <span id="b64-total-cases"></span></p>
<button id="b64-go">Go!</button>
<h5>Failed case log:</h5>
<pre id="b64-assershins"></pre>
<h1>RLP Encode/Decode Tests</h1>
<p>Current case: <span id="rlp-current-case"></span></p>
<p>Total cases: <span id="rlp-total-cases"></span></p>
<button id="rlp-go">Go!</button>
<h5>Failed case log:</h5>
<pre id="rlp-assershins"></pre>
<h1>Tx Decoding</h1>
<input style="width: 800px;" type="text" id="tx-stuff" value="tx_+FgMAaEByWN+RgDnqzvC5n/GQOgjdkRE9DBV2l1VeKSaN1r6GNyhAXtm5sMFBwg25Ol5IFI9w+pZy7/YbFi6BwPqi80KuKdsCoYPJvVhyAAACYdoYWluYW5hA7ZC1w=="></input>
<button id="tx-go">Go!</button>
<script type="module" src="dist/test.js"></script>
</body>
</html>