Minor fixes and improvements

This commit is contained in:
Boris Kubiak 2018-02-18 16:21:39 +01:00
parent 976fec1ee9
commit c9546303cf
7 changed files with 13 additions and 29 deletions

View file

@ -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
View file

@ -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",

View file

@ -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": {

View file

@ -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;
};

View file

@ -63,6 +63,7 @@
.title
margin-bottom: 45px
.remodal-close
outline: none
&:before
font-size: 2em
&:hover

View file

@ -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);

View file

@ -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'