from helper import hash256 block_id = hash256(bytes.fromhex('020000208ec39428b17323fa0ddec8e887b4a7c5\ 3b8c0a0a220cfd0000000000000000005b0750fce0a889502d40508d39576821155e9c9e3f5c31\ 57f961db38fd8b25be1e77a759e93c0118a4ffd71d'))[::-1] print('{}'.format(block_id.hex()).zfill(64))
$ python3 test.py
0000000000000000007e9e4c586439b0cdbe13b1370bdd9435d76a644d047523
proof of workはビットコイン全てのブロックヘッダーのハッシュが一定のターゲットを下回らなければならないという要件
ターゲットはビットフィールドから計算される256ビットの数値
exponent(最後の1バイト)とcoefficient(残りの3バイト)
target = coefficient * 256^(exponent-3)
from helper import little_endian_to_int bits = bytes.fromhex('e93c0118') exponent = bits[-1] coefficient = little_endian_to_int(bits[:-1]) target = coefficient * 256**(exponent - 3) print('{:x}'.format(target).zfill(64))
$ python3 test.py
0000000000000000013ce9000000000000000000000000000000000000000000
有効なProof-of-workはブロックヘッダーハッシュでリトルエンディアン整数として解釈した時にターゲットを下回った時。
proof = little_endian_to_int(hash256(bytes.fromhex('020000208ec39428b17323\ fa0ddec8e887b4a7c53b8c0a0a220cfd0000000000000000005b0750fce0a889502d40508d3957\ 6821155e9c9e3f5c3157f961db38fd8b25be1e77a759e93c0118a4ffd71d'))) print(proof < target)
def bits_to_target(bits): exponent = bits[-1] coefficient = little_endian_to_int(bit[:-1]) return coefficient * 256**(exponent - 3)
### difficulty
difficulty = 0xffff * 256 ** (0x1d – 3) / target
from helper import little_endian_to_int, hash256 bits = bytes.fromhex('e93c0118') exponent = bits[-1] coefficient = little_endian_to_int(bits[:-1]) target = coefficient * 256**(exponent - 3) difficulty = 0xffff * 256**(0x1d - 3) / target print(difficulty)
def target(self): return bits_to_target(self.bits) def difficulty(self): lowest = 0xffff * 256**(0x1d - 3) return lowest / self.target
### Proof-of-Workが十分であることの確認
Proof-of-Workはブロックヘッダーのhash256を計算し、これをリトルエンディアン整数として解釈することで求める
これがターゲットより小さい場合、Proof-of-workは有効
def check_pow(self): sha = hash256(self.serialize()) proof = little_endian_to_int(sha) return proof < self.target
### ディフィカルティ調整(difficulty adjustment period)
2016ブロックごとに変更
new_target = previous_target * time_differential/(2週間)
from io import BytesIO from block import Block from helper import TWO_WEEKS last_block = Block.parse(BytesIO(bytes.fromhex('00000020fdf740b0e49cf75bb3\ d5168fb3586f7613dcc5cd89675b0100000000000000002e37b144c0baced07eb7e7b64da916cd\ 3121f2427005551aeb0ec6a6402ac7d7f0e4235954d801187f5da9f5'))) first_block = Block.parse(BytesIO(bytes.fromhex('000000201ecd89664fd205a37\ 566e694269ed76e425803003628ab010000000000000000bfcade29d080d9aae8fd461254b0418\ 05ae442749f2a40100440fc0e3d5868e55019345954d80118a1721b2e'))) time_differential = last_block.timestamp - first_block.timestamp if time_differential > TWO_WEEKS * 4: time_differential = TWO_WEEKS * 4 if time_differential < TWO_WEEKS // 4: time_differential = TWO_WEEKS // 4 new_target = last_block.target() * time_differential // TWO_WEEKS print('{:x}'.format(new_target).zfill(64))
$ python3 test.py
0000000000000000007615000000000000000000000000000000000000000000
最後の2015ブロックを見つけるのに8週間以上かかる場合は、difficultyを減らしすぎないようにする
最後の2015ブロックを見つけるのに3.5日より短い場合は、difficultyを増やしすぎないようにする
def target_to_bits(target): raw_bytes = target.to_bytes(32, 'big') raw_bytes = raw_bytes.lstrip(b'\x00') if raw_bytes[0] > 0x7f: exponent = len(raw_bytes) + 1 coefficient = b'\x00' + raw_bytes[:2] else: exponent = len(raw_bytes) coefficient = raw_bytes[:3] new_bits = coefficient[::-1] + bytes([exponent]) return new_bits
ディフィカルティ調整期間の最初のblock idと最後のblock id
Block 471744
000000203471101bbda3fe307664b3283a9ef0e97d9a38a7eacd88000000000000000000
10c8aba8479bbaa5e0848152fd3c2289ca50e1c3e58c9a4faaafbdf5803c5448ddb84559
7e8b0118e43a81d3
Block 473759
02000020f1472d9db4b563c35f97c428ac903f23b7fc055d1cfc26000000000000000000
b3f449fcbe1bc4cfbcb8283a0d2c037f961a3fdf2b8bedc144973735eea707e126425859
7e8b0118e5f00474
これから、新しいbitを計算する
from io import BytesIO from block import Block from helper import TWO_WEEKS, target_to_bits last_block = Block.parse(BytesIO(bytes.fromhex('000000203471101bbda3fe307664b3283a9ef0e97d9a38a7eacd88000000000000000000\ 10c8aba8479bbaa5e0848152fd3c2289ca50e1c3e58c9a4faaafbdf5803c5448ddb84559\ 7e8b0118e43a81d3'))) first_block = Block.parse(BytesIO(bytes.fromhex('02000020f1472d9db4b563c35f97c428ac903f23b7fc055d1cfc26000000000000000000\ b3f449fcbe1bc4cfbcb8283a0d2c037f961a3fdf2b8bedc144973735eea707e126425859\ 7e8b0118e5f00474'))) time_differential = last_block.timestamp - first_block.timestamp if time_differential > TWO_WEEKS * 4: time_differential = TWO_WEEKS * 4 if time_differential < TWO_WEEKS // 4: time_differential = TWO_WEEKS // 4 new_target = last_block.target() * time_differential // TWO_WEEKS new_bits = target_to_bits(new_target) print(new_bits.hex())
$ python3 test.py
80df6217
def calculate_new_bits(previous_bits, time_differential): if time_differential > TWO_WEEKS * 4: time_differential = TWO_WEEKS * 4 if time_differential < TWO_WEEKS // 4: time_differential = TWO_WEEKS // 4 new_target = bits_to_target(previous_bits) * time_differential // TWO_WEEKS return target_to_bits(new_target)