Improve project description

This commit is contained in:
Boris Kubiak 2018-02-17 20:41:54 +01:00
parent 2fa8c01f6d
commit 6e82b4fa3b
3 changed files with 23 additions and 20 deletions

View file

@ -16,17 +16,11 @@ First of all, visit [`git.io/veth`](https://git.io/veth)
Enter the prefix of your choice, then click 'generate' to start.
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters from A to F.
You can increase the number of threads allocated to address generation to be faster, or decrease it if you computer struggles.
## How it works
You browser is going to generate a ton of random addresses until one of them starts with your prefix.
Everything is computed by your browser, so you should notice a better speed on a powerful computer.
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.
## Security
@ -37,6 +31,13 @@ You can download the latest build of Vantiy-ETH from Github and use it completel
Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate Ethereum addresses.
## 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
Vanity-ETH works perfectly offline! Once the web page is loaded, you can turn off the internet and continue playing.

View file

@ -5,8 +5,11 @@
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<meta name="google-site-verification" content="AP7ip-eAPj3abUpEkg2_RJsN3o-kUWd83TwIrxfyDCQ" />
<meta name="google-site-verification" content="AP7ip-eAPj3abUpEkg2_RJsN3o-kUWd83TwIrxfyDCQ"/>
<title>Vanity ETH</title>
<meta name="description"
content="Vanity-ETH is a browser-based tool to generate Ethereum vanity addresses. Use the power of your browser to generate a custom ETH vanity address!">
<link rel="stylesheet" href="dist/style.css">
</head>
<body>

View file

@ -1,23 +1,17 @@
<template>
<div class="panel">
<p>
Vanity-ETH is a browser-based tool to generate vanity Ethereum addresses.
Vanity-ETH is a browser-based tool to generate Ethereum vanity addresses.
</p>
<h2>Usage</h2>
<p>
Enter the prefix of your choice below, then click 'generate' to start.<br>
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters
from A to F.<br>
You can increase the number of threads allocated to address generation to be faster, or decrease
it
if you computer struggles.<br>
</p>
<h2>How it works</h2>
<p>
You browser is going to generate a ton of random addresses until one of them starts with your
prefix.<br>
Everything is computed by your browser, so you should notice a better speed on a powerful
computer.<br>
Ethereum addresses are hexadecimal, which means your prefix can only contain numbers and letters
from A to F.<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>
@ -31,6 +25,11 @@
Vanity-ETH uses a cryptographically secure pseudorandom number generator (CSPRNG) to generate
Ethereum addresses.
</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>
</div>
</template>