Skip to content

Commit

Permalink
V2.31
Browse files Browse the repository at this point in the history
  • Loading branch information
ELHARAKA committed May 2, 2024
1 parent f460fa2 commit 3deedb5
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,8 @@ This tool converts multiple bitcoin private keys from either HEX format or WIF (
- For WIF to HEX conversion, create `wif_input.txt` and insert WIF-format keys.

3) Run the tool:
- Generate WIF (Compressed & Uncompressed): `python3 toWIF.py`
- Generate HEX from WIF: `python3 toHEX.py`
- Generate WIF (Compressed & Uncompressed): `python3 to_wif.py`
- Generate HEX from WIF: `python3 to_hex.py`

4) Output files:
- Generated WIF keys are in `compressed_output.txt` and `uncompressed_output.txt`.
Expand Down
2 changes: 1 addition & 1 deletion toHEX.py → to_hex.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,6 @@ def process_file(file_path, conversion_function):
# Call common.py to process the file
process_file("wif_input.txt", wif_to_hex)

print("Conversion successful. Check your 'hex_output.txt' file for the converted keys.")
print("Conversion successful. Check your 'hex_output.txt'.")
print("_________________________________")
print("Donations for BTC: bc1qttzkk555p78dyq9l8g7syza6n94ppysv66dps0")
3 changes: 2 additions & 1 deletion toWIF.py → to_wif.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def process_both_conversions(hex_private_key):
# Call common.py to process the file with both conversion functions
process_file("hex_input.txt", process_both_conversions)

print("Conversion successful. Check your 'compressed_output.txt' and 'uncompressed_output.txt' files for the converted keys.")
print("Conversion successful. Check your 'compressed_output.txt' and "
"'uncompressed_output.txt' files for the converted keys.")
print("__________________________________________________")
print("Developed by: Fahd El Haraka")
print("If this saved you time or helped, donations please for BTC Address:")
Expand Down

0 comments on commit 3deedb5

Please sign in to comment.