Post
Topic
Board Development & Technical Discussion
Re: Bitcoin
by
sdfasdf
on 12/03/2025, 08:09:58 UTC

https://bitcointalk.org/index.php?topic=5534342.msg65136373#msg65136373


bitcoin Miner

├── Network Layer (JSON-RPC/Stratum)
│   ├─ Get block templates # i don't know
│   └─ Submit found blocks # i don't know

├── Mining Core                # i know
│   ├─ Header construction# i know
│   ├─ Nonce iteration         # i know
│   └─ Hash validation         # i know

└── Transaction Management     # i know
    ├─ Coinbase TX generation   # i don't know
    └─ Merkle root calculation   # i know

Hi, can you help me with generating a Coinbase transaction using Python code? Please provide a real example.