102 lines
No EOL
4.3 KiB
HTML
102 lines
No EOL
4.3 KiB
HTML
<!doctype html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<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">
|
|
<title>Vanity ETH</title>
|
|
|
|
<!--CSS-->
|
|
<link rel="stylesheet"
|
|
href="https://cdnjs.cloudflare.com/ajax/libs/twitter-bootstrap/4.0.0-beta/css/bootstrap.css"/>
|
|
<link href="css/stylesheet.css" rel="stylesheet" type="text/css" media="all"/>
|
|
|
|
<!--Fonts-->
|
|
<link href='https://fonts.googleapis.com/css?family=Montserrat:400,700' rel='stylesheet' type='text/css'>
|
|
<link href='https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900,100italic,300italic,400italic,700italic,900italic'
|
|
rel='stylesheet' type='text/css'>
|
|
</head>
|
|
<body>
|
|
<div class="container">
|
|
<div class="header text-center">
|
|
<h1>VANITY-ETH</h1>
|
|
<p>Vanity ETH address generator</p>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="panel">
|
|
<h4>Usage</h4>
|
|
<p class="description">
|
|
Vanity-ETH is a browser-based tool to generate vanity Ethereum addresses.<br>
|
|
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.
|
|
</p>
|
|
<h4>How it works</h4>
|
|
<p class="description">
|
|
You browser will 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>
|
|
Nothing ever leaves your machine, or even your browser tab.
|
|
</p>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-6">
|
|
<div class="panel form">
|
|
<form id="form">
|
|
<div class="error-text">Numbers and letters from A to F only</div>
|
|
<input type="text" placeholder="Prefix" id="prefix">
|
|
<div class="check">
|
|
<label class="checkbox">
|
|
<input type="checkbox" name="checkbox" id="checksum" checked="">
|
|
<i class="left"> </i>
|
|
Case-sensitive
|
|
</label>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-lg-6 col-sm-12">
|
|
<input type="button" id="gen" value="Generate">
|
|
</div>
|
|
<div class="col-lg-6 col-sm-12">
|
|
<input type="button" id="stop" value="Stop" disabled="">
|
|
</div>
|
|
</div>
|
|
</form>
|
|
</div>
|
|
</div>
|
|
<div class="col-md-6">
|
|
<div class="panel statistics">
|
|
<div>Difficulty: <span id="difficulty" class="output">1</span></div>
|
|
<div>Generated: <span id="counter" class="output">0 addresses</span></div>
|
|
<div>Speed: <span id="speed" class="output">0 addr/s</span></div>
|
|
<div>Status: <span id="status" class="output">Waiting</span></div>
|
|
<!--Probability:-->
|
|
<div class="probability">
|
|
<div class="probability-bar" id="probability-bar" style="width:0"></div>
|
|
</div>
|
|
<div class="percentage">
|
|
<h5 id="probability">0%</h5>
|
|
<div>Probability</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<div class="panel result">
|
|
<div>Address: <span id="address" class="output"></span></div>
|
|
<div>Private key: <span id="private-key" class="output"></span></div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!--JS-->
|
|
<!--<script src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>-->
|
|
<script src="js/bundle.js" type="text/javascript"></script>
|
|
<script src="js/index.js" type="text/javascript"></script>
|
|
</body>
|
|
</html> |