Merge pull request #835 from intelliot/xrpl-classic-address

Update terminology: XRPL Classic Address
This commit is contained in:
Rome Reginelli
2020-05-08 01:45:26 -07:00
committed by GitHub
2 changed files with 2 additions and 2 deletions

View File

@@ -27,7 +27,7 @@ const pubkey_outer_hash = crypto.createHash('ripemd160');
pubkey_outer_hash.update(pubkey_inner_hash.digest());
const account_id = pubkey_outer_hash.digest();
// Prefix the Account ID with the type prefix for "Ripple Address", then
// Prefix the Account ID with the type prefix for an XRPL Classic Address, then
// calculate a checksum as the first 4 bytes of the SHA-256 of the SHA-256
// of the Account ID
const address_type_prefix = Buffer.from([0x00]);

View File

@@ -10,7 +10,7 @@
<p>This is a debug tool for printing raw information about an account, a transaction (by hash) or a ledger (by sequence number).</p>
<form id="account-entry">
<fieldset><input id="target" class="input-xxlarge" required="" type="text" placeholder="Ripple address or transaction ID" />
<fieldset><input id="target" class="input-xxlarge" required="" type="text" placeholder="XRPL classic address or transaction ID" />
<span class="help-block"><small>Try an account like <em>r9kiSEUEw6iSCNksDVKf9k3AyxjW3r1qPf</em>.</small></span>
<button class="btn btn-primary">Get info</button></fieldset>
</form>