Skip to content

Python script to bulk-create wallets for Ethereum and other EVM-based blockchains.

Notifications You must be signed in to change notification settings

dannweeeee/wallet-maker

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 

Repository files navigation

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.

About

Python script to bulk-create wallets for Ethereum and other EVM-based blockchains.

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages