Skip to content

Instantly share code, notes, and snippets.

@s749312025
Created April 5, 2023 02:44
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save s749312025/38becfb5e47d88c2f9275e1c6c6c8bb1 to your computer and use it in GitHub Desktop.
Save s749312025/38becfb5e47d88c2f9275e1c6c6c8bb1 to your computer and use it in GitHub Desktop.
get wallet for mnemonic
var ethers = require('ethers')
var mnemonic = "........."
var wallet = ethers.HDNodeWallet.fromPhrase(mnemonic)
console.log({wallet});
console.log(wallet.privateKey);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment