Skip to content

Latest commit

 

History

History
33 lines (22 loc) · 708 Bytes

README.md

File metadata and controls

33 lines (22 loc) · 708 Bytes

EVM Wallet Maker

Python script to bulk-create wallets for Ethereum and other EVM-based blockchains.
The script will generate a CSV file containing the wallet addresses and private keys.

Usage

Enter the number of wallets you would like to bulk-create

if __name__ == "__main__":
    num_wallets = 100 # number of wallets you would like to create
    wallets = create_eth_wallets(num_wallets)

    save_to_csv(wallets)
    print(f"{num_wallets} wallets saved to eth_wallets.csv.")

Install Python Packages

python -m pip install web3

Run Python Script

python walletmaker.py

Precaution

Ensure that the CSV file is stored in a SAFE location.