BDCCOIN

作者: fanifanaseki创建于 2025年7月20日更新于 2026年9月6日

class BDCcoinBlockchain: def init(self): """Initialize the blockchain with the genesis block""" self.chain = [] self.transactions = [] self.create_block(proof=1, previous_hash='0') # Genesis block