Merge b4c7e07999
into 1cc65c3d37
This commit is contained in:
commit
b43ff242c2
3 changed files with 29271 additions and 13114 deletions
42272
package-lock.json
generated
42272
package-lock.json
generated
File diff suppressed because it is too large
Load diff
96
package.json
96
package.json
|
@ -1,49 +1,47 @@
|
||||||
{
|
{
|
||||||
"name": "vanity-eth",
|
"name": "vanity-eth",
|
||||||
"description": "Browser-based ETH vanity address generator ",
|
"description": "Browser-based ETH vanity address generator ",
|
||||||
"version": "1.0.0",
|
"version": "1.0.0",
|
||||||
"license": "MIT",
|
"license": "MIT",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
"serve": "vue-cli-service serve",
|
"serve": "vue-cli-service serve",
|
||||||
"build": "vue-cli-service build",
|
"build": "vue-cli-service build",
|
||||||
"lint": "vue-cli-service lint",
|
"lint": "vue-cli-service lint",
|
||||||
"build:deploy": "npm i --no-save prerender-spa-plugin && cross-env DEPLOY=true npm run build",
|
"build:deploy": "npm i --no-save prerender-spa-plugin && cross-env DEPLOY=true npm run build",
|
||||||
"test": "vue-cli-service lint --nofix",
|
"test": "vue-cli-service lint --nofix",
|
||||||
"prepare": "husky install"
|
"prepare": "husky install"
|
||||||
},
|
},
|
||||||
"prettier": "@bokub/prettier-config",
|
"prettier": "@bokub/prettier-config",
|
||||||
"dependencies": {
|
"dependencies": {
|
||||||
"blockies": "^0.0.2",
|
"blockies": "^0.0.2",
|
||||||
"bootstrap": "^4.6.0",
|
"bootstrap": "^4.6.0",
|
||||||
"core-js": "^3.6.5",
|
"core-js": "^3.6.5",
|
||||||
"crypto-js": "^3.3.0",
|
"crypto-js": "^3.3.0",
|
||||||
"downloadjs": "^1.4.7",
|
"downloadjs": "^1.4.7",
|
||||||
"humanize-duration": "^3.27.0",
|
"humanize-duration": "^3.27.0",
|
||||||
"keccak": "^3.0.1",
|
"keccak": "^3.0.1",
|
||||||
"randombytes": "^2.0.6",
|
"register-service-worker": "^1.7.1",
|
||||||
"register-service-worker": "^1.7.1",
|
"remodal": "^1.1.1",
|
||||||
"remodal": "^1.1.1",
|
"vue": "^2.6.11"
|
||||||
"secp256k1": "^3.8.0",
|
},
|
||||||
"vue": "^2.6.11"
|
"devDependencies": {
|
||||||
},
|
"@bokub/prettier-config": "^1.1.0",
|
||||||
"devDependencies": {
|
"@vue/cli-plugin-babel": "~4.5.0",
|
||||||
"@bokub/prettier-config": "^1.1.0",
|
"@vue/cli-plugin-eslint": "~4.5.0",
|
||||||
"@vue/cli-plugin-babel": "~4.5.0",
|
"@vue/cli-plugin-pwa": "~4.5.0",
|
||||||
"@vue/cli-plugin-eslint": "~4.5.0",
|
"@vue/cli-service": "~4.5.0",
|
||||||
"@vue/cli-plugin-pwa": "~4.5.0",
|
"babel-eslint": "^10.1.0",
|
||||||
"@vue/cli-service": "~4.5.0",
|
"cross-env": "^7.0.3",
|
||||||
"babel-eslint": "^10.1.0",
|
"eslint": "^6.7.2",
|
||||||
"cross-env": "^7.0.3",
|
"eslint-plugin-vue": "^6.2.2",
|
||||||
"eslint": "^6.7.2",
|
"husky": "^7.0.0",
|
||||||
"eslint-plugin-vue": "^6.2.2",
|
"prettier": "^2.5.1",
|
||||||
"husky": "^7.0.0",
|
"pretty-quick": "^3.1.3",
|
||||||
"prettier": "^2.5.1",
|
"sass": "^1.26.5",
|
||||||
"pretty-quick": "^3.1.3",
|
"sass-loader": "^8.0.2",
|
||||||
"sass": "^1.26.5",
|
"vue-template-compiler": "^2.6.11",
|
||||||
"sass-loader": "^8.0.2",
|
"worker-loader": "^3.0.8"
|
||||||
"vue-template-compiler": "^2.6.11",
|
}
|
||||||
"worker-loader": "^3.0.8"
|
}
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
|
@ -1,27 +1,18 @@
|
||||||
/* eslint-env worker */
|
/* eslint-env worker */
|
||||||
const secp256k1 = require('secp256k1');
|
|
||||||
const keccak = require('keccak');
|
const keccak = require('keccak');
|
||||||
const randomBytes = require('randombytes');
|
const crypto = require('crypto');
|
||||||
|
|
||||||
const step = 500;
|
const step = 500;
|
||||||
|
|
||||||
/**
|
|
||||||
* Transform a private key into an address
|
|
||||||
*/
|
|
||||||
const privateToAddress = (privateKey) => {
|
|
||||||
const pub = secp256k1.publicKeyCreate(privateKey, false).slice(1);
|
|
||||||
return keccak('keccak256').update(pub).digest().slice(-20).toString('hex');
|
|
||||||
};
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Create a wallet from a random private key
|
* Create a wallet from a random private key
|
||||||
* @returns {{address: string, privKey: string}}
|
* @returns {{address: string, privKey: string}}
|
||||||
*/
|
*/
|
||||||
const getRandomWallet = () => {
|
const getRandomWallet = () => {
|
||||||
const randbytes = randomBytes(32);
|
const privateKeyBytes = crypto.randomBytes(32);
|
||||||
return {
|
return {
|
||||||
address: privateToAddress(randbytes).toString('hex'),
|
address: '0x' + crypto.createHash('sha3-256').update(privateKey).digest('hex').slice(24),
|
||||||
privKey: randbytes.toString('hex')
|
privKey: privateKeyBytes.toString('hex')
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue