Minor fixes and improvements
This commit is contained in:
parent
976fec1ee9
commit
c9546303cf
7 changed files with 13 additions and 29 deletions
|
@ -9,8 +9,6 @@
|
||||||
<title>Vanity ETH</title>
|
<title>Vanity ETH</title>
|
||||||
<meta name="description"
|
<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!">
|
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>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<div id="app"></div>
|
<div id="app"></div>
|
||||||
|
|
11
package-lock.json
generated
11
package-lock.json
generated
|
@ -3283,17 +3283,6 @@
|
||||||
"to-regex": "3.0.1"
|
"to-regex": "3.0.1"
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"extract-text-webpack-plugin": {
|
|
||||||
"version": "3.0.2",
|
|
||||||
"resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-3.0.2.tgz",
|
|
||||||
"integrity": "sha512-bt/LZ4m5Rqt/Crl2HiKuAl/oqg0psx1tsTLkvWbJen1CtD+fftkZhMaQ9HOtY2gWsl2Wq+sABmMVi9z3DhKWQQ==",
|
|
||||||
"requires": {
|
|
||||||
"async": "2.6.0",
|
|
||||||
"loader-utils": "1.1.0",
|
|
||||||
"schema-utils": "0.3.0",
|
|
||||||
"webpack-sources": "1.1.0"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"extsprintf": {
|
"extsprintf": {
|
||||||
"version": "1.3.0",
|
"version": "1.3.0",
|
||||||
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
|
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
|
||||||
|
|
|
@ -13,7 +13,6 @@
|
||||||
"css-loader": "^0.28.7",
|
"css-loader": "^0.28.7",
|
||||||
"downloadjs": "^1.4.7",
|
"downloadjs": "^1.4.7",
|
||||||
"ethereumjs-util": "^5.1.2",
|
"ethereumjs-util": "^5.1.2",
|
||||||
"extract-text-webpack-plugin": "^3.0.2",
|
|
||||||
"file-loader": "^1.1.6",
|
"file-loader": "^1.1.6",
|
||||||
"node-sass": "^4.5.3",
|
"node-sass": "^4.5.3",
|
||||||
"randombytes": "^2.0.6",
|
"randombytes": "^2.0.6",
|
||||||
|
@ -40,7 +39,7 @@
|
||||||
"test": "node ./node_modules/xo/cli.js",
|
"test": "node ./node_modules/xo/cli.js",
|
||||||
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
||||||
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
|
||||||
"clean": "find . -maxdepth 1 -type f -not -name 'index.html' -not -name 'README.md' -delete && rm -fr node_modules src dist/vanity.js"
|
"clean": "find . -maxdepth 1 -type f -not -name 'LICENSE' -not -name 'index.html' -not -name 'README.md' -delete && rm -fr node_modules src dist/vanity.js"
|
||||||
},
|
},
|
||||||
"xo": {
|
"xo": {
|
||||||
"rules": {
|
"rules": {
|
||||||
|
|
|
@ -36,13 +36,9 @@ const isValidVanityWallet = (wallet, input, isChecksum) => {
|
||||||
const hash = ethUtils.sha3(address).toString('hex');
|
const hash = ethUtils.sha3(address).toString('hex');
|
||||||
|
|
||||||
for (let i = 0; i < input.length; i++) {
|
for (let i = 0; i < input.length; i++) {
|
||||||
if (parseInt(hash[i], 16) >= 8) {
|
if(input[i] !== (parseInt(hash[i], 16) >= 8 ? address[i].toUpperCase() : address[i])) {
|
||||||
if (address[i].toUpperCase() !== input[i]) {
|
return false;
|
||||||
return false;
|
}
|
||||||
}
|
|
||||||
} else if (address[i] !== input[i]) {
|
|
||||||
return false;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
return true;
|
return true;
|
||||||
};
|
};
|
||||||
|
|
|
@ -63,6 +63,7 @@
|
||||||
.title
|
.title
|
||||||
margin-bottom: 45px
|
margin-bottom: 45px
|
||||||
.remodal-close
|
.remodal-close
|
||||||
|
outline: none
|
||||||
&:before
|
&:before
|
||||||
font-size: 2em
|
font-size: 2em
|
||||||
&:hover
|
&:hover
|
||||||
|
|
|
@ -33,6 +33,14 @@
|
||||||
status: String,
|
status: String,
|
||||||
firstTick: {},
|
firstTick: {},
|
||||||
},
|
},
|
||||||
|
watch: {
|
||||||
|
prefix() {
|
||||||
|
this.count = 0;
|
||||||
|
},
|
||||||
|
checksum() {
|
||||||
|
this.count = 0;
|
||||||
|
}
|
||||||
|
},
|
||||||
computed: {
|
computed: {
|
||||||
difficulty: function () {
|
difficulty: function () {
|
||||||
return this.inputError ? 'N/A' : computeDifficulty(this.prefix, this.checksum);
|
return this.inputError ? 'N/A' : computeDifficulty(this.prefix, this.checksum);
|
||||||
|
|
|
@ -1,6 +1,5 @@
|
||||||
const path = require('path');
|
const path = require('path');
|
||||||
const webpack = require('webpack');
|
const webpack = require('webpack');
|
||||||
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
|
||||||
|
|
||||||
module.exports = {
|
module.exports = {
|
||||||
entry: {
|
entry: {
|
||||||
|
@ -16,9 +15,6 @@ module.exports = {
|
||||||
{
|
{
|
||||||
test: /\.vue$/,
|
test: /\.vue$/,
|
||||||
loader: 'vue-loader',
|
loader: 'vue-loader',
|
||||||
options: {
|
|
||||||
extractCSS: true
|
|
||||||
}
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
test: /vanity\.js$/,
|
test: /vanity\.js$/,
|
||||||
|
@ -41,9 +37,6 @@ module.exports = {
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
},
|
},
|
||||||
plugins: [
|
|
||||||
new ExtractTextPlugin('style.css')
|
|
||||||
],
|
|
||||||
resolve: {
|
resolve: {
|
||||||
alias: {
|
alias: {
|
||||||
vue$: 'vue/dist/vue.esm.js'
|
vue$: 'vue/dist/vue.esm.js'
|
||||||
|
|
Loading…
Add table
Reference in a new issue