Skip to content

Instantly share code, notes, and snippets.

@duanescarlett
Created March 10, 2022 19:51
Show Gist options
  • Save duanescarlett/9004926ac549d048ef11b4ea73fca62c to your computer and use it in GitHub Desktop.
Save duanescarlett/9004926ac549d048ef11b4ea73fca62c to your computer and use it in GitHub Desktop.
Import Wallet from private keys - Ethers
ethers = require('ethers')
require('dotenv').config()
const main = async () => {
// Import a wallet
const wallet = new ethers.Wallet(process.env.PRIVATE_KEY)
console.log('Address: ', wallet.address) // Wallet Address
console.log('Private Key: ', wallet.privateKey) // Wallet Private Key
}
main()
.then(() => process.exit(0))
.catch((err) => {
console.error(err)
process.exit(1)
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment