Add 'click to reveal' feature, improve description
This commit is contained in:
parent
2acabd66de
commit
925280cc01
3 changed files with 37 additions and 18 deletions
25
README.md
25
README.md
|
@ -14,36 +14,41 @@ Just type [`git.io/veth`](https://git.io/veth) to use it ⚡️
|
|||
|
||||
First of all, visit [`git.io/veth`](https://git.io/veth)
|
||||
|
||||
Enter the prefix of your choice, then click 'generate' to start.
|
||||
Enter the prefix of your choice below, then click 'generate' to start. You browser is going to generate a ton of random
|
||||
addresses until one of them starts with your prefix.
|
||||
|
||||
You browser is going to generate a ton of random addresses until one of them starts with your prefix.
|
||||
Once an address is found, you can reveal the private key, or click the 'save' button to download a password-encrypted keystore file.
|
||||
|
||||
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters from A to F.
|
||||
You can increase the number of working threads to reach higher speeds, or decrease it if you computer struggles.
|
||||
|
||||
You can increase the number of working threads to reach higher speeds, or decrease it if you computer struggles.
|
||||
|
||||
## Security
|
||||
|
||||
As explained above, everything is computed in your browser. Nothing ever leaves your machine, or even your browser tab.
|
||||
|
||||
You can download the latest build of Vantiy-ETH from Github and use it completely offline.
|
||||
Once the web page is loaded, you can turn off the internet and continue playing.
|
||||
|
||||
You can also download the latest build of Vanity-ETH [here](https://github.com/bokub/vanity-eth/wiki/Download-Vanity-ETH)
|
||||
and use it completely offline.
|
||||
|
||||
Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate Ethereum addresses.
|
||||
|
||||
The keystore file is encrypted with a AES-128-CTR cipher using the BKDF2-SHA256 derivation function with 65536 hashing rounds.
|
||||
|
||||
|
||||
## Performance
|
||||
|
||||
For some reason, the performance of Vanity-ETH can vary a lot from a browser to another.
|
||||
|
||||
|
||||
Right now, Chrome seems to be the one providing the best results.
|
||||
|
||||
|
||||
## Offline usage
|
||||
## Compatibility
|
||||
|
||||
Vanity-ETH works perfectly offline! Once the web page is loaded, you can turn off the internet and continue playing.
|
||||
|
||||
You can also download the latest build of Vanity-ETH, check out the [wiki page](https://github.com/bokub/vanity-eth/wiki/Download-Vanity-ETH)
|
||||
All addresses generated with Vanity-ETH are ERC-20 compatible.
|
||||
|
||||
The keystore file is 100% compatible with MyEtherWallet, MetaMask, Mist, and geth.
|
||||
|
||||
|
||||
## Local development
|
||||
|
||||
|
|
|
@ -5,31 +5,37 @@
|
|||
</p>
|
||||
<h2>Usage</h2>
|
||||
<p>
|
||||
Enter the prefix of your choice below, then click 'generate' to start.<br>
|
||||
You browser is going to generate a ton of random addresses until one of them starts with your
|
||||
prefix.<br>
|
||||
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters
|
||||
from A to F.<br>
|
||||
Enter the prefix of your choice below, then click 'generate' to start. You browser is going to generate a
|
||||
ton of random addresses until one of them starts with your prefix.<br>
|
||||
Once an address is found, you can reveal the private key, or click the 'save' button to download
|
||||
a password-encrypted keystore file.<br>
|
||||
You can increase the number of working threads to reach higher speeds, or decrease it if you computer
|
||||
struggles.<br>
|
||||
|
||||
</p>
|
||||
<h2>Security</h2>
|
||||
<p>
|
||||
As explained above, everything is computed in your browser. Nothing ever leaves your machine, or
|
||||
even your browser tab.<br>
|
||||
Vanity-ETH works perfectly offline! Once the web page is loaded, you can turn off the internet and continue
|
||||
Once the web page is loaded, you can turn off the internet and continue
|
||||
playing.<br>
|
||||
You can also download the latest build of Vanity-ETH on
|
||||
<a href="https://github.com/bokub/vanity-eth/wiki/download-Vanity-ETH" target="_blank">Github</a> and use it
|
||||
completely offline.<br>
|
||||
Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate
|
||||
Ethereum addresses.
|
||||
Ethereum addresses.<br>
|
||||
The keystore file is encrypted with a AES-128-CTR cipher using the BKDF2-SHA256 derivation function with 65536 hashing rounds.
|
||||
</p>
|
||||
<h2>Performance</h2>
|
||||
<p>
|
||||
For some reason, the performance of Vanity-ETH can vary a lot from a browser to another.<br>
|
||||
Right now, Chrome seems to be the one providing the best results.
|
||||
</p>
|
||||
<h2>Compatibility</h2>
|
||||
<p>
|
||||
All addresses generated with Vanity-ETH are ERC-20 compatible.<br>
|
||||
The keystore file is 100% compatible with MyEtherWallet, MetaMask, Mist, and geth.
|
||||
</p>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
|
|
|
@ -4,7 +4,9 @@
|
|||
<div class="float-left" id="identicon"></div>
|
||||
<div class="col">
|
||||
<div>Address: <span class="output" v-text="address"></span></div>
|
||||
<div>Private key: <span class="output" v-text="privateKey"></span></div>
|
||||
<div>Private key:
|
||||
<span class="output" v-if="privateKey" v-text="reveal ? privateKey : 'Click to reveal'" @click="reveal = true"></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-12">
|
||||
<button data-remodal-target="modal" class="save button-large" :disabled="!privateKey">
|
||||
|
@ -23,8 +25,14 @@
|
|||
address: String,
|
||||
privateKey: String
|
||||
},
|
||||
data: function () {
|
||||
return {
|
||||
reveal: false,
|
||||
}
|
||||
},
|
||||
watch: {
|
||||
address(addr) {
|
||||
this.reveal = false;
|
||||
const id = document.getElementById('identicon');
|
||||
id.innerHTML = '';
|
||||
if (addr) {
|
||||
|
|
Loading…
Add table
Reference in a new issue