Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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.
- Host: GitHub
- URL: https://github.com/dannweeeee/evm-wallet-maker
- Owner: dannweeeee
- Created: 2024-02-26T17:45:07.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2024-10-22T03:05:56.000Z (3 months ago)
- Last Synced: 2024-10-23T04:37:45.482Z (3 months ago)
- Topics: blockchain, ethereum, evm, python, wallet
- Language: Python
- Homepage:
- Size: 5.86 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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.