Skip to content

Instantly share code, notes, and snippets.

@placecodex
Created April 15, 2021 20:57
Show Gist options
  • Save placecodex/9e97e15a8cf8b789efc88c6bd5d58b74 to your computer and use it in GitHub Desktop.
Save placecodex/9e97e15a8cf8b789efc88c6bd5d58b74 to your computer and use it in GitHub Desktop.
generate ethereum account, wallet, address
npm i [email protected]
var Wallet = require('ethereumjs-wallet');
const EthWallet = Wallet.generate();
console.log("address: " + EthWallet.getAddressString());
console.log("privateKey: " + EthWallet.getPrivateKeyString());
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment