Remove useless analytics events
This commit is contained in:
parent
1450647150
commit
1c4271a4f3
4 changed files with 89 additions and 71 deletions
|
@ -37,7 +37,7 @@
|
|||
async
|
||||
defer
|
||||
data-website-id="9086c519-8c4a-4f8e-9dfe-daee3739238a"
|
||||
src="https://metrics.vanity-eth.tk/umami.js"
|
||||
src="https://metrics.vanity-eth.tk/umami-script.js"
|
||||
></script>
|
||||
</head>
|
||||
<body>
|
||||
|
|
49
src/App.vue
49
src/App.vue
|
@ -21,14 +21,23 @@
|
|||
<div class="row">
|
||||
<!--User input-->
|
||||
<div class="col-md-6">
|
||||
<userInput :running="running" :cores="cores"
|
||||
@start="startGen" @stop="stopGen" @input-change="setInput"></userInput>
|
||||
<userInput
|
||||
:running="running"
|
||||
:cores="cores"
|
||||
@start="startGen"
|
||||
@stop="stopGen"
|
||||
@input-change="setInput"
|
||||
></userInput>
|
||||
</div>
|
||||
|
||||
<!--Statistics-->
|
||||
<div class="col-md-6">
|
||||
<statistics :hex="input.hex" :checksum="input.checksum" :status="status"
|
||||
:first-tick="firstTick"></statistics>
|
||||
<statistics
|
||||
:hex="input.hex"
|
||||
:checksum="input.checksum"
|
||||
:status="status"
|
||||
:first-tick="firstTick"
|
||||
></statistics>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
|
@ -76,7 +85,7 @@
|
|||
result: { address: '', privateKey: '' },
|
||||
input: { hex: '', checksum: true, suffix: false },
|
||||
firstTick: null,
|
||||
error: null
|
||||
error: null,
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
|
@ -84,7 +93,7 @@
|
|||
if (!this.running) {
|
||||
this.initWorkers();
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
setInput: function (inputType, value) {
|
||||
|
@ -224,7 +233,7 @@
|
|||
let attempts = 0;
|
||||
const times = [];
|
||||
const durations = [];
|
||||
const timeTaken = (a, d) => Math.round(1000 * a / d);
|
||||
const timeTaken = (a, d) => Math.round((1000 * a) / d);
|
||||
worker.onmessage = () => {
|
||||
times.push(performance.now());
|
||||
if (times.length === 1) {
|
||||
|
@ -232,18 +241,25 @@
|
|||
}
|
||||
durations.push(times[times.length - 1] - times[times.length - 2]);
|
||||
attempts += step;
|
||||
console.info(attempts + '/' + max + '...' + timeTaken(step, durations[durations.length - 1]) + ' addr/s');
|
||||
console.info(
|
||||
attempts + '/' + max + '...' + timeTaken(step, durations[durations.length - 1]) + ' addr/s'
|
||||
);
|
||||
if (attempts >= max) {
|
||||
console.info('\nSpeed range: ' + timeTaken(step, Math.max(...durations))
|
||||
+ ' - ' + timeTaken(step, Math.min(...durations)) +' addr/s');
|
||||
console.info('Average: ' + timeTaken(attempts, (times[times.length - 1] - times[0])) + ' addr/s');
|
||||
console.info(
|
||||
'\nSpeed range: ' +
|
||||
timeTaken(step, Math.max(...durations)) +
|
||||
' - ' +
|
||||
timeTaken(step, Math.min(...durations)) +
|
||||
' addr/s'
|
||||
);
|
||||
console.info('Average: ' + timeTaken(attempts, times[times.length - 1] - times[0]) + ' addr/s');
|
||||
worker.terminate();
|
||||
}
|
||||
};
|
||||
const input = { checksum: true, hex: 'f'.repeat(5), suffix: false };
|
||||
console.info('Starting benchmark with 1 core...');
|
||||
worker.postMessage(input);
|
||||
}
|
||||
},
|
||||
},
|
||||
|
||||
created: function () {
|
||||
|
@ -251,15 +267,8 @@
|
|||
this.countCores();
|
||||
this.initWorkers();
|
||||
window['benchmark'] = this.benchmark;
|
||||
|
||||
this.$root.$on('event', (name) => {
|
||||
if (window['umami']) {
|
||||
window['umami'].trackEvent(name, 'click');
|
||||
}
|
||||
});
|
||||
}
|
||||
},
|
||||
};
|
||||
|
||||
</script>
|
||||
|
||||
<style lang="sass">
|
||||
|
|
|
@ -4,12 +4,18 @@
|
|||
<div class="float-left" id="identicon"></div>
|
||||
<div class="col">
|
||||
<div>Address: <span class="output" v-text="address"></span></div>
|
||||
<div>Private key:
|
||||
<span class="output" v-if="privateKey" v-text="reveal ? privateKey : 'Click to reveal'" @click="revealKey()"></span>
|
||||
<div>
|
||||
Private key:
|
||||
<span
|
||||
class="output"
|
||||
v-if="privateKey"
|
||||
v-text="reveal ? privateKey : 'Click to reveal'"
|
||||
@click="revealKey()"
|
||||
></span>
|
||||
</div>
|
||||
</div>
|
||||
<div class="col-lg-2 col-12">
|
||||
<button data-remodal-target="modal" class="save button-large" :disabled="!privateKey" @click="openSave()">
|
||||
<button data-remodal-target="modal" class="save button-large" :disabled="!privateKey">
|
||||
<i class="icon-lock"></i> Save
|
||||
</button>
|
||||
</div>
|
||||
|
@ -23,11 +29,11 @@
|
|||
export default {
|
||||
props: {
|
||||
address: String,
|
||||
privateKey: String
|
||||
privateKey: String,
|
||||
},
|
||||
data: function () {
|
||||
return {
|
||||
reveal: false
|
||||
reveal: false,
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
|
@ -38,17 +44,13 @@
|
|||
if (addr) {
|
||||
id.appendChild(blockies({ seed: addr.toLocaleLowerCase(), scale: 6 }));
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
revealKey() {
|
||||
this.reveal = true;
|
||||
this.$root.$emit('event', 'Reveal');
|
||||
},
|
||||
openSave() {
|
||||
this.$root.$emit('event', 'Save');
|
||||
}
|
||||
}
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
@ -76,5 +78,4 @@
|
|||
@media screen and (min-width: 992px)
|
||||
.save
|
||||
margin-top: 0
|
||||
|
||||
</style>
|
||||
|
|
|
@ -4,16 +4,26 @@
|
|||
<h3 class="title">Create encrypted keystore file (UTC / JSON)</h3>
|
||||
<form @submit.prevent="save">
|
||||
<div>
|
||||
<input class="hidden" type="text" autocomplete="username">
|
||||
<input :type="showPassword ? 'text' : 'password'" autocomplete="new-password" class="text-input-large" v-model="password"
|
||||
placeholder="Password">
|
||||
<input class="hidden" type="text" autocomplete="username" />
|
||||
<input
|
||||
:type="showPassword ? 'text' : 'password'"
|
||||
autocomplete="new-password"
|
||||
class="text-input-large"
|
||||
v-model="password"
|
||||
placeholder="Password"
|
||||
/>
|
||||
<button type="button" class="show-password" @click="showPassword = !showPassword">
|
||||
<i :class="showPassword ? 'icon-eye-off' : 'icon-eye-on'"></i>
|
||||
</button>
|
||||
</div>
|
||||
<div>
|
||||
<button type="button" class="button-large" @click="save" :disabled="!password || !privateKey || loading"
|
||||
v-text="loading ? 'Generating...' : 'Download'"></button>
|
||||
<button
|
||||
type="button"
|
||||
class="button-large"
|
||||
@click="save"
|
||||
:disabled="!password || !privateKey || loading"
|
||||
v-text="loading ? 'Generating...' : 'Download'"
|
||||
></button>
|
||||
</div>
|
||||
</form>
|
||||
</div>
|
||||
|
@ -30,26 +40,24 @@
|
|||
export default {
|
||||
props: {
|
||||
privateKey: String,
|
||||
address: String
|
||||
address: String,
|
||||
},
|
||||
data: function () {
|
||||
return {
|
||||
showPassword: false,
|
||||
password: '',
|
||||
loading: false
|
||||
loading: false,
|
||||
};
|
||||
},
|
||||
watch: {
|
||||
privateKey: function () {
|
||||
this.password = ''; // Reset password when new address is generated
|
||||
}
|
||||
},
|
||||
},
|
||||
methods: {
|
||||
save() {
|
||||
if (this.password) {
|
||||
this.loading = true;
|
||||
this.$root.$emit('event', 'Download');
|
||||
|
||||
setTimeout(() => {
|
||||
const wallet = this.generateWallet(this.privateKey, this.password);
|
||||
const fileName = 'UTC--' + new Date().toISOString().replace(/:/g, '-') + '--' + this.address;
|
||||
|
@ -66,7 +74,7 @@
|
|||
address: this.address,
|
||||
crypto: this.encryptPrivateKey(privateKey, password),
|
||||
id: v4(),
|
||||
version: 3
|
||||
version: 3,
|
||||
};
|
||||
},
|
||||
|
||||
|
@ -80,10 +88,10 @@
|
|||
encryptPrivateKey(privateKey, password) {
|
||||
const iv = CryptoJS.lib.WordArray.random(16);
|
||||
const salt = CryptoJS.lib.WordArray.random(32);
|
||||
const key = CryptoJS.PBKDF2(password, salt, { // eslint-disable-line new-cap
|
||||
const key = CryptoJS.PBKDF2(password, salt, {
|
||||
keySize: 8,
|
||||
hasher: CryptoJS.algo.SHA256,
|
||||
iterations: 262144
|
||||
iterations: 262144,
|
||||
});
|
||||
const cipher = CryptoJS.AES.encrypt(
|
||||
CryptoJS.enc.Hex.parse(privateKey.toString('hex')),
|
||||
|
@ -91,12 +99,12 @@
|
|||
{
|
||||
iv: iv,
|
||||
mode: CryptoJS.mode.CTR,
|
||||
padding: CryptoJS.pad.NoPadding
|
||||
padding: CryptoJS.pad.NoPadding,
|
||||
}
|
||||
);
|
||||
// eslint-disable-next-line new-cap
|
||||
const mac = CryptoJS.SHA3(this.sliceWordArray(key, 4, 8).concat(cipher.ciphertext), {
|
||||
outputLength: 256
|
||||
outputLength: 256,
|
||||
});
|
||||
|
||||
return {
|
||||
|
@ -105,10 +113,10 @@
|
|||
cipher: 'aes-128-ctr',
|
||||
ciphertext: cipher.ciphertext.toString(),
|
||||
cipherparams: { iv: iv.toString() },
|
||||
mac: mac.toString()
|
||||
mac: mac.toString(),
|
||||
};
|
||||
}
|
||||
}
|
||||
},
|
||||
},
|
||||
};
|
||||
</script>
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue