Metadata-Version: 2.1
Name: cryptobalancefinder
Version: 1.0.2
Summary: A tool for finding and checking cryptocurrency wallet balances from seed phrases
Home-page: https://github.com/yourusername/cryptobalancefinder
Author: CryptoBalanceFinder Team
Author-email: rbmorena42@gmail.com
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.7
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Requires-Python: >=3.7
Description-Content-Type: text/markdown
Requires-Dist: aiohttp>=3.8.0
Requires-Dist: pyyaml>=5.1
Requires-Dist: bip_utils>=2.9.3
Requires-Dist: argparse>=1.4.0

# CryptoBalanceFinder

A Python package for finding cryptocurrency wallet balances across multiple blockchain networks.

## Features

- Check wallet balances across multiple blockchain networks
- Asynchronous balance checking for improved performance
- Support for wallet generation from seed phrases
- Configurable batch processing
- Detailed logging and error handling

## Installation

```bash
pip install cryptobalancefinder
```

## Quick Start

```python
import asyncio
from cryptobalancefinder import WalletManager

# Initialize the wallet manager
wallet_manager = WalletManager(config_path="config.yml", batch_size=25)

# Generate wallet from seed phrase
seed_phrase = "your twelve word seed phrase here"
wallet = wallet_manager.get_wallet(seed_phrase)

# Check balances
async def main():
    await wallet_manager.check_balance([wallet])

asyncio.run(main())
```

## Configuration

Create a `config.yml` file with your API keys:

```yaml
api_keys:
  tron_grid:
    - 'your-tron-grid-api-key'
```

## License

This project is licensed under the MIT License - see the LICENSE file for details.
