區塊鏈是一種分散式資料庫,用於以安全、透明和防篡改的方式記錄交易。它由一個鏈狀結構組成,其中每個區塊都包含一定數量的交易資訊、前一個區塊的哈希值和其他元資料。區塊鏈的技術核心是分散式帳本和共識機制,實質上是一種去中心化的資料庫。
首先,我們建立一個新的python專案,並安裝必要的程式庫。
Python import hashlib import JSON from datetime import datetime
然後,我們創建一個新的區塊鏈類別。
python class Blockchain: def __init__(self): self.chain = [] self.create_genesis_block() def create_genesis_block(self): """ 创建创世区块 """ genesis_block = { "index": 0, "timestamp": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), "data": "Genesis block", "previous_hash": "0", } self.chain.append(genesis_block) def add_block(self, data): """ 添加新区块到区块链中 """ new_block = { "index": len(self.chain), "timestamp": datetime.now().strftime("%Y-%m-%d %H:%M:%S"), "data": data, "previous_hash": self.chain[-1]["hash"], } self.chain.append(new_block) def get_block_hash(self, block): """ 获取区块的哈希值 """ block_string = json.dumps(block, sort_keys=True).encode() return hashlib.sha256(block_string).hexdigest() def is_chain_valid(self): """ 检查区块链是否有效 """ for i in range(1, len(self.chain)): current_block = self.chain[i] previous_block = self.chain[i - 1] if current_block["previous_hash"] != self.get_block_hash(previous_block): return False if self.get_block_hash(current_block) != current_block["hash"]: return False return True
現在,我們可以運行我們的區塊鏈了。
python blockchain = Blockchain() blockchain.add_block("Hello, world!") blockchain.add_block("This is a test.") print(blockchain.chain)
輸出結果如下:
[ { "index": 0, "timestamp": "2023-03-08 15:46:17", "data": "Genesis block", "previous_hash": "0", }, { "index": 1, "timestamp": "2023-03-08 15:46:18", "data": "Hello, world!", "previous_hash": "e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855", }, { "index": 2, "timestamp": "2023-03-08 15:46:19", "data": "This is a test.", "previous_hash": "0a753b9f3c2650581980d3D1d1b47f56d63e6c27b813b7ec4461863b4c724a2f", } ]
#透過本文,你已經了解了區塊鏈的基本概念,並學會如何使用Python實現一個簡單的區塊鏈。你可以將此作為基礎,進一步探索區塊鏈的應用和開發。
以上是從零開始建立你的第一個Python區塊鏈項目的詳細內容。更多資訊請關注PHP中文網其他相關文章!