forked from smartiden/Broadcast-Bitcoin-Transaction
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathprevious_block_hash.py
45 lines (33 loc) · 1.42 KB
/
previous_block_hash.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
import requests
def get_previous_block_hash(txid):
# URL to get transaction information
tx_url = f"https://api.blockcypher.com/v1/btc/main/txs/{txid}"
# Request transaction information
response = requests.get(tx_url)
if response.status_code == 200:
tx_data = response.json()
# Get the hash of the block the transaction is in
block_hash = tx_data.get('block_hash')
if block_hash:
# URL to get information about the block
block_url = f"https://api.blockcypher.com/v1/btc/main/blocks/{block_hash}"
# Request information about a block
response = requests.get(block_url)
if response.status_code == 200:
block_data = response.json()
# Get the hash of the previous block
previous_block_hash = block_data.get('prev_block')
return previous_block_hash
else:
print("Error getting block information")
else:
print("Transaction not included in block")
else:
print("Error getting transaction information")
return None
txid = input("Enter TXID: ")
previous_block_hash = get_previous_block_hash(txid)
if previous_block_hash:
print(f"Previous block hash: {previous_block_hash}")
else:
print("Unable to find hash of previous block")