Last active
March 18, 2022 17:06
-
-
Save Eunoia1729/f93c12794d070035625a40b90b077755 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
/* | |
Instructions: | |
1. Install | |
$ npm install web3 | |
$ npm install ethereumjs-wallet | |
$ npm install ethereumjs-util | |
2. Run | |
$ node app.js | |
*/ | |
const Web3 = require('web3'); | |
const Wallet = require('ethereumjs-wallet'); | |
const EthUtil = require('ethereumjs-util'); | |
const ENDPOINT = "https://bsc-dataseed.binance.org:443"; | |
async function main() { | |
const web3 = new Web3(ENDPOINT); | |
const account = web3.eth.accounts.create(web3.utils.randomHex(32)); | |
const privateKey = account.privateKey; | |
const privateKeyBuffer = EthUtil.toBuffer(privateKey); | |
const wallet = Wallet['default'].fromPrivateKey(privateKeyBuffer); | |
const publicKey = wallet.getPublicKeyString(); | |
console.log("privateKey: ", privateKey); | |
console.log("publicKey: ", publicKey); | |
} | |
main() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment