Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/tigeryant/programming-bitcoin-rust

Solutions to 'Programming Bitcoin' written in Rust
https://github.com/tigeryant/programming-bitcoin-rust

coding-exercises elliptic-curve-cryptography finite-fields programming-bitcoin rust rust-bitcoin rust-lang

Last synced: 2 months ago
JSON representation

Solutions to 'Programming Bitcoin' written in Rust

Awesome Lists containing this project

README

        

# programming-bitcoin-rust
This repository contains solutions to the exercises in the [Programming Bitcoin](https://www.amazon.com/Programming-Bitcoin-Learn-Program-Scratch/dp/1492031496) book, by Jimmy Song. The book shows how to build a Bitcoin library from scratch, starting with fundamental cryptographic primitives, and then implementing Bitcoin-specific functionality like transactions, script and blocks. The exercises in the book are written in Python, so the code has been ported to Rust with the equivalent functionality.

## Progress Checklist
- [x] Chapter 1: Finite Fields
- [x] Chapter 2: Elliptic Curves
- [x] Chapter 3: Elliptic Curve Cryptography
- [x] Chapter 4: Serialization
- [x] Chapter 5: Transactions
- [x] Chapter 6: Script
- [x] Chapter 7: Transaction Creation and Validation
- [ ] Chapter 8: Pay to Script Hash
- [ ] Chapter 9: Blocks
- [ ] Chapter 10: Networking
- [ ] Chapter 11: Simplified Payment Verification
- [ ] Chapter 12: Bloom Filters
- [ ] Chapter 13: Segwit