Created
March 10, 2022 19:51
-
-
Save duanescarlett/9004926ac549d048ef11b4ea73fca62c to your computer and use it in GitHub Desktop.
Import Wallet from private keys - Ethers
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
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