Merge branch 'lint'

This commit is contained in:
Boris Kubiak 2018-09-06 07:20:45 +02:00
commit aedaf61419
15 changed files with 704 additions and 1462 deletions

46
.eslintrc.js Normal file
View file

@ -0,0 +1,46 @@
module.exports = {
root: true,
env: {
browser: true,
},
"parser": "vue-eslint-parser",
extends: [
'plugin:vue/base',
'plugin:vue/essential',
'plugin:vue/strongly-recommended',
// 'plugin:vue/recommended'
],
plugins: [
'vue',
],
rules: {
indent: 'off',
'no-var': 'error',
'arrow-parens': ['error', 'always'],
'guard-for-in': 'off',
'dot-notation': 'off',
'no-negated-condition': 'off',
'capitalized-comments': 'off',
'no-prototype-builtins': 'off',
'space-infix-ops': 'off',
// Rules from https://github.com/vuejs/eslint-plugin-vue
'vue/html-self-closing': 'off',
'vue/require-default-prop': 'off',
'vue/require-prop-types': 'off',
'vue/html-quotes': 'error',
'vue/html-indent': ['error', 4],
'vue/script-indent': ['error', 4, {
'baseIndent': 1,
}],
'vue/max-attributes-per-line': ['error', {
'singleline': 6,
'multiline': {
'max': 4,
'allowFirstLine': true
}
}],
'vue/this-in-template': 'error',
},
globals: {},
};

1867
package-lock.json generated

File diff suppressed because it is too large Load diff

View file

@ -18,6 +18,8 @@
"crypto-js": "^3.1.9-1",
"css-loader": "^0.28.7",
"downloadjs": "^1.4.7",
"eslint": "^5.5.0",
"eslint-plugin-vue": "^4.7.1",
"file-loader": "^1.1.6",
"keccak": "^1.4.0",
"node-sass": "^4.5.3",
@ -27,24 +29,19 @@
"secp256k1": "^3.5.0",
"url-loader": "^0.6.2",
"vue": "^2.5.11",
"vue-eslint-parser": "^3.2.2",
"vue-loader": "^13.0.5",
"vue-template-compiler": "^2.4.4",
"webpack": "^3.6.0",
"webpack-dev-server": "^2.9.1",
"worker-loader": "^1.1.0",
"xo": "^0.18.2"
"worker-loader": "^1.1.0"
},
"license": "ISC",
"main": "index.js",
"scripts": {
"build": "cross-env NODE_ENV=production webpack --progress --hide-modules",
"dev": "cross-env NODE_ENV=development webpack-dev-server --open --hot",
"test": "node ./node_modules/xo/cli.js"
},
"xo": {
"rules": {
"object-shorthand": "off",
"no-new": "off"
}
"lint": "eslint --ext .js,.vue src --fix",
"test": "eslint --ext .js,.vue src"
}
}

View file

@ -77,7 +77,7 @@
input: {prefix: '', checksum: true},
firstTick: null,
error: null
}
};
},
watch: {
threads: function () {
@ -88,6 +88,7 @@
},
methods: {
setInput: function (inputType, value) {
// eslint-disable-next-line default-case
switch (inputType) {
case 'prefix':
this.input.prefix = value;
@ -135,7 +136,7 @@
for (let w = this.workers.length; w < this.threads; w++) {
try {
this.workers[w] = new Worker();
this.workers[w].onmessage = event => self.parseWorkerMessage(event.data);
this.workers[w].onmessage = (event) => self.parseWorkerMessage(event.data);
} catch (err) {
this.error = err;
this.status = 'Error';
@ -213,24 +214,26 @@
},
initFathom: function () {
// Fathom - simple website analytics - https://github.com/usefathom/fathom
/* eslint-disable */
(function (f, a, t, h, o, m) {
a[h] = a[h] || function () {
(a[h].q = a[h].q || []).push(arguments)
(a[h].q = a[h].q || []).push(arguments);
};
o = f.createElement('script');
m = f.getElementsByTagName('script')[0];
o.async = 1;
o.src = t;
o.id = 'fathom-script';
m.parentNode.insertBefore(o, m)
m.parentNode.insertBefore(o, m);
})(document, window, 'https://stats.vanity-eth.tk/tracker.js', 'fathom');
fathom('trackPageview');
/* eslint-enable */
},
checkLocation() {
try {
this.error = window.self !== window.top ? 'insecure_location' : this.error;
} catch (e) {
this.error = 'insecure_location'
this.error = 'insecure_location';
}
const hostname = window.location.hostname;
if (hostname && ['localhost', '127.0.0.1', 'vanity-eth.tk'].indexOf(hostname) === -1) {
@ -246,7 +249,7 @@
this.initWorkers();
this.initFathom();
}
}
};
</script>

View file

@ -8,7 +8,7 @@ const step = 500;
/**
* Transform a private key into an address
*/
const privateToAddress = privateKey => {
const privateToAddress = (privateKey) => {
const pub = secp256k1.publicKeyCreate(privateKey, false).slice(1);
return keccak('keccak256').update(pub).digest().slice(-20).toString('hex');
};
@ -50,7 +50,7 @@ const isValidVanityAddress = (address, input, isChecksum) => {
return true;
};
const toChecksumAddress = address => {
const toChecksumAddress = (address) => {
const hash = keccak('keccak256').update(address).digest().toString('hex');
let ret = '';
for (let i = 0; i < address.length; i++) {
@ -85,7 +85,7 @@ const getVanityWallet = (input, isChecksum, cb) => {
onmessage = function (event) {
const input = event.data;
try {
getVanityWallet(input.prefix, input.checksum, message => postMessage(message));
getVanityWallet(input.prefix, input.checksum, (message) => postMessage(message));
} catch (err) {
self.postMessage({error: err.toString()});
}

View file

@ -5,7 +5,8 @@ import App from './App.vue';
document.body.removeAttribute('style');
// eslint-disable-next-line no-new
new Vue({
el: '#app',
render: h => h(App)
render: (h) => h(App)
});

View file

@ -14,7 +14,7 @@
</template>
<script>
export default {}
export default {};
</script>
<style lang="sass" scoped>

View file

@ -53,7 +53,7 @@
</template>
<script>
export default {}
export default {};
</script>
<style lang="sass" scoped>

View file

@ -16,16 +16,15 @@
</div>
</template>
<script>
export default {
props: {
'error': {
error: {
type: String,
required: true
},
}
}
};
</script>
<style lang="sass" scoped>

View file

@ -27,9 +27,9 @@
data: function () {
return {
tipsAddress: '0xAceBabe64807cb045505b268ef253D8fC2FeF5Bc'
};
}
}
}
};
</script>
<style lang="sass" scoped>

View file

@ -7,10 +7,9 @@
</template>
<script>
export default {}
export default {};
</script>
<style lang="sass" scoped>
@import "../css/variables"

View file

@ -1,6 +1,6 @@
<template>
<div class="panel">
<form :class="{error: inputError}" v-on:submit.prevent="startGen">
<form :class="{error: inputError}" @submit.prevent="startGen">
<div class="error-text">Numbers and letters from A to F only</div>
<input type="text" class="text-input-large" placeholder="Prefix" v-model="prefix" :disabled="running">
<div class="example">
@ -37,9 +37,13 @@
</template>
<script>
const isValidHex = function (hex) {
return hex.length ? /^[0-9A-F]+$/g.test(hex.toUpperCase()) : true;
};
function mixCase(str) {
let ret = '';
for(let i of str) {
for (let i of str) {
ret += Math.random() < 0.5 ? i.toUpperCase() : i.toLowerCase();
}
return ret;
@ -47,7 +51,7 @@
export default {
props: {
running: Boolean,
cores: Number,
cores: Number
},
data: function () {
return {
@ -55,18 +59,18 @@
prefix: '',
checksum: true,
error: false
}
};
},
computed: {
inputError: function () {
return !isValidHex(this.prefix);
},
example: function () {
if(this.inputError){
if (this.inputError) {
return 'N/A';
}
let text = '0x' + (this.checksum ? this.prefix : mixCase(this.prefix));
for (let i = 0; i < 40 - this.prefix.length; i++){
for (let i = 0; i < 40 - this.prefix.length; i++) {
text += mixCase(Math.floor((Math.random() * 16)).toString(16));
}
return text.substr(0, 42);
@ -74,12 +78,12 @@
},
methods: {
startGen: function () {
if(!this.running && !this.inputError && !this.error){
this.$emit('start')
if (!this.running && !this.inputError && !this.error) {
this.$emit('start');
}
},
stopGen: function () {
this.$emit('stop')
this.$emit('stop');
}
},
watch: {
@ -91,12 +95,8 @@
},
threads: function () {
this.$emit('input-change', 'threads', this.threads);
},
}
}
const isValidHex = function (hex) {
return hex.length ? /^[0-9A-F]+$/g.test(hex.toUpperCase()) : true;
};
</script>

View file

@ -27,8 +27,8 @@
},
data: function () {
return {
reveal: false,
}
reveal: false
};
},
watch: {
address(addr) {
@ -40,7 +40,7 @@
}
}
}
}
};
</script>
<style lang="sass" scoped>

View file

@ -2,7 +2,7 @@
<div class="remodal" data-remodal-id="modal" data-remodal-options="hashTracking: false">
<button data-remodal-action="close" class="remodal-close"></button>
<h3 class="title">Create encrypted keystore file (UTC / JSON)</h3>
<form v-on:submit.prevent="save">
<form @submit.prevent="save">
<div>
<input class="hidden" type="text" autocomplete="username">
<input type="password" autocomplete="new-password" class="text-input-large" v-model="password"
@ -17,8 +17,8 @@
</template>
<script>
import * as remodal from 'remodal/src/remodal';
import * as randomBytes from 'randombytes';
import 'remodal/src/remodal';
import 'randombytes';
import * as download from 'downloadjs';
import {v4} from 'uuid';
@ -32,8 +32,8 @@
data: function () {
return {
password: '',
loading: false,
}
loading: false
};
},
watch: {
privateKey: function () {
@ -48,7 +48,7 @@
setTimeout(() => {
const wallet = this.generateWallet(this.privateKey, this.password);
const fileName = 'UTC--' + new Date().toISOString().replace(/:/g, '-') + '--' + this.address;
download(JSON.stringify(wallet), fileName, "application/json");
download(JSON.stringify(wallet), fileName, 'application/json');
this.loading = false;
}, 20);
}
@ -75,7 +75,7 @@
encryptPrivateKey(privateKey, password) {
const iv = CryptoJS.lib.WordArray.random(16);
const salt = CryptoJS.lib.WordArray.random(32);
const key = CryptoJS.PBKDF2(password, salt, {
const key = CryptoJS.PBKDF2(password, salt, { // eslint-disable-line new-cap
keySize: 8,
hasher: CryptoJS.algo.SHA256,
iterations: 262144
@ -89,6 +89,7 @@
padding: CryptoJS.pad.NoPadding
}
);
// eslint-disable-next-line new-cap
const mac = CryptoJS.SHA3(this.sliceWordArray(key, 4, 8).concat(cipher.ciphertext), {
outputLength: 256
});
@ -101,9 +102,9 @@
cipherparams: {iv: iv.toString()},
mac: mac.toString()
};
},
}
}
};
</script>
<style lang="sass">

View file

@ -20,18 +20,27 @@
</template>
<script>
const computeDifficulty = function (pattern, isChecksum) {
const ret = Math.pow(16, pattern.length);
return isChecksum ? (ret * Math.pow(2, pattern.replace(/[^a-f]/gi, '').length)) : ret;
};
const computeProbability = function (difficulty, attempts) {
return 1 - Math.pow(1 - (1 / difficulty), attempts);
};
export default {
data: function () {
return {
speed: 0,
count: 0,
}
count: 0
};
},
props: {
prefix: String,
checksum: Boolean,
status: String,
firstTick: {},
firstTick: {}
},
watch: {
prefix() {
@ -58,21 +67,13 @@
}
},
created: function () {
this.$parent.$on('increment-counter', incr => {
this.$parent.$on('increment-counter', (incr) => {
this.count += (incr > 0 ? incr : -this.count);
this.speed = incr > 0 ? Math.floor(1000 * this.count / (performance.now() - this.firstTick)) : 0;
});
}
}
const computeDifficulty = function (pattern, isChecksum) {
const ret = Math.pow(16, pattern.length);
return isChecksum ? (ret * Math.pow(2, pattern.replace(/[^a-f]/gi, '').length)) : ret;
};
const computeProbability = function (difficulty, attempts) {
return 1 - Math.pow(1 - (1 / difficulty), attempts);
};
</script>
<style lang="sass" scoped>