mirror of
				https://github.com/ChristopherA/Learning-Bitcoin-from-the-Command-Line.git
				synced 2025-10-31 02:17:24 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			46 lines
		
	
	
		
			1.5 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
| from bitcoinrpc.authproxy import AuthServiceProxy, JSONRPCException
 | |
| from pprint import pprint
 | |
| import logging
 | |
| 
 | |
| logging.basicConfig()
 | |
| logging.getLogger("BitcoinRPC").setLevel(logging.DEBUG)
 | |
| # rpc_user and rpc_password are set in the bitcoin.conf file
 | |
| rpc_user = "StandUp"
 | |
| rpc_pass = "6305f1b2dbb3bc5a16cd0f4aac7e1eba"
 | |
| rpc_host = "127.0.0.1"
 | |
| rpc_client = AuthServiceProxy(f"http://{rpc_user}:{rpc_pass}@{rpc_host}:18332", 
 | |
| timeout=120)
 | |
| 
 | |
| block_count = rpc_client.getblockcount()
 | |
| print("---------------------------------------------------------------")
 | |
| print("Block Count:", block_count)
 | |
| print("---------------------------------------------------------------\n")
 | |
| 
 | |
| blockhash = rpc_client.getblockhash(block_count)
 | |
| block = rpc_client.getblock(blockhash)
 | |
| 
 | |
| nTx = block['nTx']
 | |
| if nTx > 10:
 | |
|     it_txs = 10
 | |
|     list_tx_heading = "First 10 transactions: "
 | |
| else:
 | |
|     it_txs = nTx
 | |
|     list_tx_heading = f"All the {it_txs} transactions: "
 | |
| print("---------------------------------------------------------------")
 | |
| print("BLOCK: ", block_count)
 | |
| print("-------------")
 | |
| print("Block Hash...: ", blockhash)
 | |
| print("Merkle Root..: ", block['merkleroot'])
 | |
| print("Block Size...: ", block['size'])
 | |
| print("Block Weight.: ", block['weight'])
 | |
| print("Nonce........: ", block['nonce'])
 | |
| print("Difficulty...: ", block['difficulty'])
 | |
| print("Number of Tx.: ", nTx)
 | |
| print(list_tx_heading)
 | |
| print("---------------------")
 | |
| i = 0
 | |
| while i < it_txs:
 | |
|     print(i, ":", block['tx'][i])
 | |
|     i += 1
 | |
| print("---------------------------------------------------------------\n")
 |