mirror of
https://github.com/OneKeyHQ/bip39.git
synced 2026-04-07 03:12:14 +00:00
Compare commits
5 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
de71c22328 | ||
|
|
8fd86ecbe0 | ||
|
|
20181be9a0 | ||
|
|
a9bf4823c7 | ||
|
|
52e8f25e11 |
@@ -1,3 +1,11 @@
|
||||
# 0.5.6
|
||||
|
||||
* Add warning to not share info from the page
|
||||
|
||||
# 0.5.5
|
||||
|
||||
* Fix BIP85 bug when pressing enter
|
||||
|
||||
# 0.5.4
|
||||
|
||||
* Add Particl network
|
||||
|
||||
@@ -15,7 +15,7 @@
|
||||
<div class="container">
|
||||
|
||||
<h1 class="text-center">Mnemonic Code Converter</h1>
|
||||
<p class="version">v0.5.4</p>
|
||||
<p class="version">v0.5.6</p>
|
||||
<hr>
|
||||
<div class="row">
|
||||
<div class="col-md-12">
|
||||
@@ -29,6 +29,15 @@
|
||||
For more info see the
|
||||
<a href="https://github.com/bitcoin/bips/blob/master/bip-0039.mediawiki" target="_blank">BIP39 spec</a>.
|
||||
</p>
|
||||
|
||||
<p>
|
||||
<span class="text-danger">
|
||||
If you share the information generated by this page with anyone, they can steal your assets.
|
||||
Anyone asking you to share your your secret recovery phrase or BIP 32 root key is a scammer.
|
||||
Do NOT copy & paste information from this page or send it to anyone offering to help you on Twitter, Discord, Telegram, Etherscan, or Line.
|
||||
<strong>They will steal your coins.</strong>
|
||||
</span>
|
||||
</p>
|
||||
</div>
|
||||
</div>
|
||||
<div class="form-group generate-container">
|
||||
|
||||
@@ -607,6 +607,14 @@
|
||||
if (isUsingOwnEntropy()) {
|
||||
return;
|
||||
}
|
||||
// Pressing enter on BIP85 index field triggers generate click event.
|
||||
// See https://github.com/iancoleman/bip39/issues/634
|
||||
// To cancel the incorrect generation process, stop here if generate is
|
||||
// not focused.
|
||||
var buttonIsFocused = DOM.generate[0].contains(document.activeElement);
|
||||
if (!buttonIsFocused) {
|
||||
return;
|
||||
}
|
||||
clearDisplay();
|
||||
showPending();
|
||||
setTimeout(function() {
|
||||
|
||||
Reference in New Issue
Block a user