This project allows you to generate Ethereum and Aptos wallets using NodeJS.
-
Install Node.js - Make sure Node.js is installed on your machine.
-
Install Dependencies - Navigate to the project folder and run:
npm i
- Set Wallet Quantity - Open
index.js
and set the number of wallets you want to generate by changing theWALLETS_AMOUNT
variable.
- To generate Ethereum wallets, run:
npm run ether
- To generate Aptos wallets, run:
npm run aptos
Generated wallets will be displayed in the console with the following structure:
{
mnemonic: "your mnemonic phrase",
address: "wallet address",
publicKeyHex: "public key in hex format",
privateKeyHex: "private key in hex format"
}