中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

Python怎么構建區塊鏈

發布時間:2023-05-19 17:13:53 來源:億速云 閱讀:116 作者:iii 欄目:編程語言

這篇文章主要介紹了Python怎么構建區塊鏈的相關知識,內容詳細易懂,操作簡單快捷,具有一定借鑒價值,相信大家閱讀完這篇Python怎么構建區塊鏈文章都會有所收獲,下面我們一起來看看吧。

區塊鏈

區塊鏈是在計算機網絡的節點之間共享數據的分類賬(分布式數據庫)。作為數據庫,區塊鏈以電子格式儲存信息。區塊鏈的創新之處在于它保證了數據記錄的安全性和真實性,可信性(不需要沒有可信任的第三方)。

區塊鏈和典型數據庫的區別是數據結構。區塊鏈以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'{last_block}')
            print(f'{block}')
            print("\n-----------\n")
            # Check that the hash of the block is correct
            if block['previous_hash'] != self.hash(last_block):
                return False
            # Check that the Proof of Work is correct
            if not self.valid_proof(last_block['proof'], block['proof']):
                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'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'http://{node}/chain')
            if response.status_code == 200:
                length = response.json()['length']
                chain = response.json()['chain']
                # 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('/nodes/register', methods=['POST'])
def register_nodes():
    values = request.get_json()
    nodes = values.get('nodes')
    if nodes is None:
        return "Error: Please supply a valid list of nodes", 400
    for node in nodes:
        blockchain.register_node(node)
    response = {
        'message': 'New nodes have been added',
        'total_nodes': list(blockchain.nodes),
    }
    return jsonify(response), 201
@app.route('/nodes/resolve', methods=['GET'])
def consensus():
    replaced = blockchain.resolve_conflicts()
    if replaced:
        response = {
            'message': 'Our chain was replaced',
            'new_chain': blockchain.chain
        }
    else:
        response = {
            'message': 'Our chain is authoritative',
            'chain': blockchain.chain
        }
    return jsonify(response), 200

在這一點上,如果你愿意,你可以拿一臺不同的機器,并在你的網絡上啟動不同的節點。或者在同一臺機器上使用不同的端口啟動進程。比如創建兩個端口5000和6000來進行嘗試。

關于“Python怎么構建區塊鏈”這篇文章的內容就介紹到這里,感謝各位的閱讀!相信大家對“Python怎么構建區塊鏈”知識都有一定的了解,大家如果還想學習更多知識,歡迎關注億速云行業資訊頻道。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

广昌县| 介休市| 定日县| 即墨市| 海阳市| 余姚市| 延长县| 徐汇区| 镇沅| 潮安县| 祁门县| 黄龙县| 望奎县| 黄陵县| 昔阳县| 洪湖市| 福海县| 繁昌县| 郴州市| 屯留县| 尚义县| 昌乐县| 光泽县| 砚山县| 盐亭县| 英德市| 庆元县| 民勤县| 拉萨市| 华容县| 肥城市| 定边县| 广东省| 宁河县| 泸溪县| 东丰县| 正安县| 武川县| 江川县| 台前县| 天祝|