Compare commits

...

3 Commits
0.4.1 ... 0.4.2

Author SHA1 Message Date
Ian Coleman
90f7a5ec93 Release v0.4.2 2020-02-07 21:26:43 +11:00
Ian Coleman
dd496c82c1 Fix ethereum private key format 2020-02-07 21:25:57 +11:00
Ian Coleman
1dafc30db4 Test pubkey and privkey for all coins 2020-02-07 20:59:19 +11:00
4 changed files with 561 additions and 15 deletions

View File

@@ -1,3 +1,7 @@
# 0.4.2
* Fix ethereum private key format
# 0.4.1
* Fix no loading on chrome with third-party cookies blocked

View File

@@ -15,7 +15,7 @@
<div class="container">
<h1 class="text-center">Mnemonic Code Converter</h1>
<p class="version">v0.4.1</p>
<p class="version">v0.4.2</p>
<hr>
<div class="row">
<div class="col-md-12">

View File

@@ -1134,8 +1134,10 @@
var hexAddress = addressBuffer.toString('hex');
var checksumAddress = libs.ethUtil.toChecksumAddress(hexAddress);
address = libs.ethUtil.addHexPrefix(checksumAddress);
privkey = libs.ethUtil.addHexPrefix(privkey);
pubkey = libs.ethUtil.addHexPrefix(pubkey);
if (hasPrivkey) {
privkey = libs.ethUtil.bufferToHex(keyPair.d.toBuffer());
}
}
// Stellar is different

File diff suppressed because it is too large Load Diff