46 lines
No EOL
1.8 KiB
Vue
46 lines
No EOL
1.8 KiB
Vue
<template>
|
|
<div class="panel">
|
|
<p>
|
|
Vanity-ETH is a browser-based tool to generate vanity Ethereum 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>
|
|
</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
|
|
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.
|
|
</p>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {}
|
|
</script>
|
|
|
|
<style lang="sass" scoped>
|
|
@import "../css/variables"
|
|
p
|
|
margin: 15px 0 20px
|
|
color: $grey-text
|
|
</style> |