🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more

cryptobalancefinder

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

cryptobalancefinder

A tool for finding and checking cryptocurrency wallet balances from seed phrases

1.0.2
Maintainers
1

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

pip install cryptobalancefinder

Quick Start

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:

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

License

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

FAQs

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts