This script prompts the user to input one or more Bitcoin addresses, and then finds all transactions involving each address.
To run this script, you will need Python 3 installed on your computer.
- Clone the repository:
git clone https://github.com/your-username/bitcoin-address-transaction-finder.git
- Navigate to the repository directory:
cd bitcoin-address-transaction-finder
- Run the script:
python3 main.py
The script prompts the user to enter a Bitcoin address. The user can enter as many addresses as they like, and can stop by entering "done".
For each address, the script calls the `find_transactions` function, which should be implemented to find all transactions involving that address and return a list of dictionaries, each representing a transaction.
The script then prints the number of transactions involving each address, as well as the other address involved in each transaction and the amount transferred.
Feel free to contribute to this project by adding new features, fixing bugs, or improving the documentation. Just fork the repository, make your changes, and submit a pull request.