Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/tigeryant/programming-bitcoin-rust
- Owner: tigeryant
- License: mit
- Created: 2024-09-24T10:45:39.000Z (5 months ago)
- Default Branch: main
- Last Pushed: 2024-10-21T16:25:00.000Z (4 months ago)
- Last Synced: 2024-10-22T04:42:52.509Z (4 months ago)
- Topics: coding-exercises, elliptic-curve-cryptography, finite-fields, programming-bitcoin, rust, rust-bitcoin, rust-lang
- Language: Rust
- Homepage:
- Size: 26.4 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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