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>
|
||||
<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>
|
||||
<div id="app"></div>
|
||||
|
|
11
package-lock.json
generated
11
package-lock.json
generated
|
@ -3283,17 +3283,6 @@
|
|||
"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": {
|
||||
"version": "1.3.0",
|
||||
"resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz",
|
||||
|
|
|
@ -13,7 +13,6 @@
|
|||
"css-loader": "^0.28.7",
|
||||
"downloadjs": "^1.4.7",
|
||||
"ethereumjs-util": "^5.1.2",
|
||||
"extract-text-webpack-plugin": "^3.0.2",
|
||||
"file-loader": "^1.1.6",
|
||||
"node-sass": "^4.5.3",
|
||||
"randombytes": "^2.0.6",
|
||||
|
@ -40,7 +39,7 @@
|
|||
"test": "node ./node_modules/xo/cli.js",
|
||||
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
|
||||
"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": {
|
||||
"rules": {
|
||||
|
|
|
@ -36,13 +36,9 @@ const isValidVanityWallet = (wallet, input, isChecksum) => {
|
|||
const hash = ethUtils.sha3(address).toString('hex');
|
||||
|
||||
for (let i = 0; i < input.length; i++) {
|
||||
if (parseInt(hash[i], 16) >= 8) {
|
||||
if (address[i].toUpperCase() !== input[i]) {
|
||||
return false;
|
||||
}
|
||||
} else if (address[i] !== input[i]) {
|
||||
return false;
|
||||
}
|
||||
if(input[i] !== (parseInt(hash[i], 16) >= 8 ? address[i].toUpperCase() : address[i])) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
};
|
||||
|
|
|
@ -63,6 +63,7 @@
|
|||
.title
|
||||
margin-bottom: 45px
|
||||
.remodal-close
|
||||
outline: none
|
||||
&:before
|
||||
font-size: 2em
|
||||
&:hover
|
||||
|
|
|
@ -33,6 +33,14 @@
|
|||
status: String,
|
||||
firstTick: {},
|
||||
},
|
||||
watch: {
|
||||
prefix() {
|
||||
this.count = 0;
|
||||
},
|
||||
checksum() {
|
||||
this.count = 0;
|
||||
}
|
||||
},
|
||||
computed: {
|
||||
difficulty: function () {
|
||||
return this.inputError ? 'N/A' : computeDifficulty(this.prefix, this.checksum);
|
||||
|
|
|
@ -1,6 +1,5 @@
|
|||
const path = require('path');
|
||||
const webpack = require('webpack');
|
||||
const ExtractTextPlugin = require('extract-text-webpack-plugin');
|
||||
|
||||
module.exports = {
|
||||
entry: {
|
||||
|
@ -16,9 +15,6 @@ module.exports = {
|
|||
{
|
||||
test: /\.vue$/,
|
||||
loader: 'vue-loader',
|
||||
options: {
|
||||
extractCSS: true
|
||||
}
|
||||
},
|
||||
{
|
||||
test: /vanity\.js$/,
|
||||
|
@ -41,9 +37,6 @@ module.exports = {
|
|||
}
|
||||
]
|
||||
},
|
||||
plugins: [
|
||||
new ExtractTextPlugin('style.css')
|
||||
],
|
||||
resolve: {
|
||||
alias: {
|
||||
vue$: 'vue/dist/vue.esm.js'
|
||||
|
|
Loading…
Add table
Reference in a new issue