Make build lighter
This commit is contained in:
parent
a2e73942cc
commit
e1eb740672
2 changed files with 5 additions and 11 deletions
|
@ -41,7 +41,7 @@
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
<!--Save modal-->
|
<!--Save modal-->
|
||||||
<save :private-key="result.privateKey"></save>
|
<save :address="result.address.toLowerCase()" :private-key="result.privateKey"></save>
|
||||||
|
|
||||||
<!--Footer-->
|
<!--Footer-->
|
||||||
<foot></foot>
|
<foot></foot>
|
||||||
|
|
|
@ -23,12 +23,11 @@
|
||||||
|
|
||||||
import {v4} from 'uuid';
|
import {v4} from 'uuid';
|
||||||
import CryptoJS from 'crypto-js';
|
import CryptoJS from 'crypto-js';
|
||||||
import secp256k1 from 'secp256k1';
|
|
||||||
import keccak from 'keccak';
|
|
||||||
|
|
||||||
export default {
|
export default {
|
||||||
props: {
|
props: {
|
||||||
privateKey: String
|
privateKey: String,
|
||||||
|
address: String
|
||||||
},
|
},
|
||||||
data: function () {
|
data: function () {
|
||||||
return {
|
return {
|
||||||
|
@ -48,7 +47,7 @@
|
||||||
|
|
||||||
setTimeout(() => {
|
setTimeout(() => {
|
||||||
const wallet = this.generateWallet(this.privateKey, this.password);
|
const wallet = this.generateWallet(this.privateKey, this.password);
|
||||||
const fileName = 'UTC--' + new Date().toISOString().replace(/:/g, '-') + '--' + wallet.address;
|
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;
|
this.loading = false;
|
||||||
}, 20);
|
}, 20);
|
||||||
|
@ -59,18 +58,13 @@
|
||||||
generateWallet(privateKey, password) {
|
generateWallet(privateKey, password) {
|
||||||
privateKey = Buffer.from(privateKey, 'hex');
|
privateKey = Buffer.from(privateKey, 'hex');
|
||||||
return {
|
return {
|
||||||
address: this.privateToAddress(privateKey),
|
address: this.address,
|
||||||
crypto: this.encryptPrivateKey(privateKey, password),
|
crypto: this.encryptPrivateKey(privateKey, password),
|
||||||
id: v4(),
|
id: v4(),
|
||||||
version: 3
|
version: 3
|
||||||
};
|
};
|
||||||
},
|
},
|
||||||
|
|
||||||
privateToAddress(privateKey) {
|
|
||||||
const pub = secp256k1.publicKeyCreate(privateKey, false).slice(1);
|
|
||||||
return keccak('keccak256').update(pub).digest().slice(-20).toString('hex');
|
|
||||||
},
|
|
||||||
|
|
||||||
sliceWordArray(wordArray, start, end) {
|
sliceWordArray(wordArray, start, end) {
|
||||||
const newArray = wordArray.clone();
|
const newArray = wordArray.clone();
|
||||||
newArray.words = newArray.words.slice(start, end);
|
newArray.words = newArray.words.slice(start, end);
|
||||||
|
|
Loading…
Add table
Reference in a new issue