Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/dannweeeee/evm-wallet-maker

Python script to bulk-create wallets for Ethereum and other EVM-based blockchains.
https://github.com/dannweeeee/evm-wallet-maker

blockchain ethereum evm python wallet

Last synced: about 1 month ago
JSON representation

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

Awesome Lists containing this project

README

        

# 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

```bash
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

```bash
python -m pip install web3
```

### Run Python Script

```bash
python evm-wallet-maker.py
```

## Precaution

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