removed SECP256K1 and RANDOMBYTES libraries

This commit is contained in:
Ayush Choudhary 2022-12-19 14:00:48 +05:30 committed by GitHub
parent 46944b3b13
commit 5acb64f002
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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