Python如何建構區塊鏈

WBOY
發布: 2023-05-12 17:55:06
轉載
1666 人瀏覽過

區塊鏈

區塊鏈是在電腦網路的節點之間共享資料的分類帳(分散式資料庫)。作為資料庫,區塊鏈以電子格式儲存資訊。區塊鏈的創新之處在於它保證了資料記錄的安全性和真實性,可信賴性(不需要沒有可信任的第三方)。

區塊鏈和典型資料庫的差異是資料結構。區塊鏈以block的方式收集資訊。

block

block是一種能永久記錄加密貨幣交易資料(或其他用途)的一種資料結構。類似於鍊錶。一個block記錄了一些火所有尚未被驗證的最新交易。驗證資料後,block將關閉,之後會建立一個新的block來輸入和驗證新的交易。因此,一旦寫入,永久不能更改和刪除。

  • block是區塊鏈中儲存和加密資訊的地方

  • ##block由長數字標識,其中包括先前加密區塊的加密交易資訊和新的交易資訊

  • 在創建之前,

    block以及其中的資訊必須由網路驗證

以下是一個簡單的範例:

block = {
    'index': 1,
    'timestamp': 1506057125.900785,
    'transactions': [
        {
            'sender': "8527147fe1f5426f9dd545de4b27ee00",
            'recipient': "a77f5cdfa2934df3954a5c7c7da5df1f",
            'amount': 5,
        }
    ],
    'proof': 324984774000,
    'previous_hash': "2cf24dba5fb0a30e26e83b2ac5b9e29e1b161e5c1fa7425e73043362938b9824"
}
登入後複製

目標

區塊鏈的目標是允許數位資訊被記錄和分發,但不能編輯。透過這種方式,區塊鏈成為了不可變分類帳或無法更改、刪除和銷毀的交易記錄的基礎。

去中心化

想像一下,一家公司擁有10000台伺服器,用於維護一個包含所有客戶資訊的資料庫。公司的所有伺服器都在一個倉庫中,可以完全控制每台伺服器。這就提供了單點故障。如果那個地方停電了怎麼辦?如果他的網路連線被切斷了怎麼辦?在任何情況下,資料都會遺失或損壞。

建構

區塊鏈類

我們將創建一個

BlockChain類,建構函式建立一個空列表來儲存區塊鏈,再創建一個空列表來儲存交易。創建block_chain.py

# block_chain.py
class Blockchain:
    def __init__(self) -> None:
        self.chain = []
        self.current_transactions = []
    def new_block(self):
        # Creates a new Block and adds it to the chain
        pass
    def new_transaction(self):
        # Adds a new transaction to the list of transactions
        pass
    @staticmethod
    def hash(block):
        # Hashes a Block
        pass
    @property
    def last_block(self):
        # Returns the last Block in the chain
        pass
登入後複製

新增交易

#我們需要一種將交易新增至區塊的方法。

new_transaction負責這個

class Blockchain(object):
    ...
    def new_transaction(self, sender, recipient, amount) -> int:
        self.current_transactions.append({
            'sender': sender,
            'recipient': recipient,
            'amount': amount,
        })
        return self.last_block['index'] + 1
登入後複製

new_transaction# 將交易加入到清單後,它傳回交易將會被加入的區塊的索引——下一個要挖掘的塊。這將在以後對提交交易的用戶有用。

創建新blocks

當我們的區塊鏈被實例化時,我們需要為它播種一個創世區塊——一個沒有前輩的區塊。我們還需要在我們的創世區塊中添加一個“證明”,這是挖掘的結果(或工作量證明)。除了在我們的建構函式中建立創世區塊之外,我們還將充實new_block()、new_transaction() 和hash() 的方法:

import hashlib
import json
from time import time
class Blockchain:
    def __init__(self) -> None:
        self.chain = []
        self.current_transactions = []
        # Create the genesis block
        self.new_block(previous_hash=1, proof=100)
    def new_block(self, proof, previous_hash=None) -> dict:
        block = {
            'index': len(self.chain) + 1,
            'timestamp': time(),
            'transactions': self.current_transactions,
            'proof': proof,
            'previous_hash': previous_hash or self.hash(self.chain[-1]),
        }
        self.current_transactions = []
        self.chain.append(block)
        return block
    def new_transaction(self, sender, recipient, amount) -> int:
        self.current_transactions.append(
            {
                'sender': sender,
                'recipient': recipient,
                'amount': amount,
            }
        )
        return self.last_block['index'] + 1
    @property
    def last_block(self) -> dict:
        # Returns the last Block in the chain
        return self.chain[-1]
    @staticmethod
    def hash(block) -> str:       
        block_string = json.dumps(block, sort_keys=True).encode()
        return hashlib.sha256(block_string).hexdigest()
登入後複製

到這裡,我們幾乎完成了代表我們的區塊鏈。但此時,你一定想知道新區塊是如何創建、鍛造或開採的。

POW

工作量證明演算法 (PoW) 是在區塊鏈上創建或挖掘新區塊的方式,它的目標是發現一個解決問題的數字。這個數字必須很難找到但很容易被網路上的任何人驗證。 PoW廣泛用於加密貨幣挖掘,用於驗證交易和挖掘新代幣。由於PoW,比特幣和其他加密貨幣交易可以以安全的方式進行點對點處理,而無需受信任的第三方。

讓我們實作一個類似的演算法:

class Blockchain(object):
    def proof_of_work(self, last_proof) -> int:
        proof = 0
        while self.valid_proof(last_proof, proof) is False:
            proof += 1
        return proof
    @staticmethod
    def valid_proof(last_proof, proof) -> bool:
        guess = f'{last_proof}{proof}'.encode()
        guess_hash = hashlib.sha256(guess).hexdigest()
        return guess_hash[:4] == '0000'
登入後複製

API

為了使區塊鏈能夠交互,我們需要一個將其置於web伺服器上。這裡我們是用

Flask框架。

如果沒有安裝,需要安裝

flask

pip install flask

我們的伺服器將在我們的區塊鏈網路中形成單一節點,在同級目錄下建立一個

app.py:

from uuid import uuid4
from time import time
from textwrap import dedent
from flask import Flask, jsonify, request
from block_chain import Blockchain
# 实例化应用
app = Flask(__name__)
# 创建随机节点名称
node_identifier = str(uuid4()).replace('_', '')
# 实例化block_chain类
block_chain = Blockchain()
# 创建/mine端点
@app.route('/mine', methods=['GET'])
def mine():
    block_chain.new_transaction(
        sender="0",
        recipient=node_identifier,
        amount=1,
    )
    last_block = block_chain.last_block
    last_proof = last_block['proof']
    proof = block_chain.proof_of_work(last_proof)
    previous_hash = block_chain.hash(last_block)
    block = block_chain.new_block(proof, previous_hash)
    response = {
        'message': "New Block Forged",
        'index': block['index'],
        'transactions': block['transactions'],
        'proof': block['proof'],
        'previous_hash': block['previous_hash'],
    }
    return jsonify(response), 200
@app.route('/transactions/new', methods=['POST'])
def new_transaction():
    return "We'll add a new transaction"
@app.route('/chain', methods=['GET'])
def full_chain():
    response = {
        'chain': block_chain.chain,
        'length': len(block_chain.chain),
    }
    return jsonify(response), 200
# 修改端口号
if __name__ == '__main__':
    app.run(host='0.0.0.0', port=5000)
登入後複製

然後執行

flask run

##透過api軟體(本次使用的是api fox)來傳送請求:

Python如何建構區塊鏈

Python如何建構區塊鏈註冊新節點

區塊鏈的全部意義在於它們應該去中心化。如果想要網路中有多個節點,必須採用共識演算法。在我們可以實作共識演算法之前,我們需要一種方法讓節點知道網路上的相鄰節點。我們網路上的每個節點都應該保留網路上其他節點的註冊表。因此,我們需要更多的端點:

...
from urllib.parse import urlparse
...
class Blockchain:
    def __init__(self) -> None:
        ...
        self.nodes = set()
        ...
    def register_node(self, address) -> None:    
        parsed_url = urlparse(address)
        self.nodes.add(parsed_url.netloc)
登入後複製

衝突

衝突是指一個節點與另一個節點有不同的鏈。為了解決這個問題,我們將制定最長有效鍊為權威的規則。使用此演算法,我們在網路中的節點之間達成共識。

...
import requests
class Blockchain:
    ...
    def valid_chain(self, chain):
        last_block = chain[0]
        current_index = 1
        while current_index < len(chain):
            block = chain[current_index]
            print(f&#39;{last_block}&#39;)
            print(f&#39;{block}&#39;)
            print("\n-----------\n")
            # Check that the hash of the block is correct
            if block[&#39;previous_hash&#39;] != self.hash(last_block):
                return False
            # Check that the Proof of Work is correct
            if not self.valid_proof(last_block[&#39;proof&#39;], block[&#39;proof&#39;]):
                return False
            last_block = block
            current_index += 1
        return True
    def resolve_conflicts(self):
        """
        This is our Consensus Algorithm, it resolves conflicts
        by replacing our chain with the longest one in the network.
        :return: <bool> True if our chain was replaced, False if not
        """
        neighbours = self.nodes
        new_chain = None
        # We&#39;re only looking for chains longer than ours
        max_length = len(self.chain)
        # Grab and verify the chains from all the nodes in our network
        for node in neighbours:
            response = requests.get(f&#39;http://{node}/chain&#39;)
            if response.status_code == 200:
                length = response.json()[&#39;length&#39;]
                chain = response.json()[&#39;chain&#39;]
                # Check if the length is longer and the chain is valid
                if length > max_length and self.valid_chain(chain):
                    max_length = length
                    new_chain = chain
        # Replace our chain if we discovered a new, valid chain longer than ours
        if new_chain:
            self.chain = new_chain
            return True
        return False
登入後複製

第一个方法 valid_chain() 负责通过遍历每个块并验证哈希和证明来检查链是否有效。resolve_conflicts() 是一种循环遍历我们所有相邻节点、下载它们的链并使用上述方法验证它们的方法。如果找到一个有效的链,其长度大于我们的,我们将替换我们的。

让我们将两个端点注册到我们的 API,一个用于添加相邻节点,另一个用于解决冲突:

@app.route(&#39;/nodes/register&#39;, methods=[&#39;POST&#39;])
def register_nodes():
    values = request.get_json()
    nodes = values.get(&#39;nodes&#39;)
    if nodes is None:
        return "Error: Please supply a valid list of nodes", 400
    for node in nodes:
        blockchain.register_node(node)
    response = {
        &#39;message&#39;: &#39;New nodes have been added&#39;,
        &#39;total_nodes&#39;: list(blockchain.nodes),
    }
    return jsonify(response), 201
@app.route(&#39;/nodes/resolve&#39;, methods=[&#39;GET&#39;])
def consensus():
    replaced = blockchain.resolve_conflicts()
    if replaced:
        response = {
            &#39;message&#39;: &#39;Our chain was replaced&#39;,
            &#39;new_chain&#39;: blockchain.chain
        }
    else:
        response = {
            &#39;message&#39;: &#39;Our chain is authoritative&#39;,
            &#39;chain&#39;: blockchain.chain
        }
    return jsonify(response), 200
登入後複製

在这一点上,如果你愿意,你可以拿一台不同的机器,并在你的网络上启动不同的节点。或者在同一台机器上使用不同的端口启动进程。比如创建两个端口5000和6000来进行尝试。

以上是Python如何建構區塊鏈的詳細內容。更多資訊請關注PHP中文網其他相關文章!

相關標籤:
來源:yisu.com
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板
關於我們 免責聲明 Sitemap
PHP中文網:公益線上PHP培訓,幫助PHP學習者快速成長!