Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jwest951227/blockchainingo
A simplified blockchain in Go
https://github.com/jwest951227/blockchainingo
bitcoin blockchain golang hashing
Last synced: 2 days ago
JSON representation
A simplified blockchain in Go
- Host: GitHub
- URL: https://github.com/jwest951227/blockchainingo
- Owner: jwest951227
- Created: 2024-04-29T23:18:50.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-08-06T13:44:28.000Z (3 months ago)
- Last Synced: 2024-11-16T17:03:40.050Z (2 days ago)
- Topics: bitcoin, blockchain, golang, hashing
- Language: Go
- Homepage:
- Size: 104 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
Building blockchain in Go
A simplified blockchain implemented in Golang.
## About The Project
### Built With
- [Golang](https://go.dev/)
- [BoltDB](https://github.com/boltdb/bolt)## Roadmap
- [x] [Basic prototype](https://edwinho.online/blog/blockchain-in-go/part-1)
- [x] [Proof-of-Work](https://edwinho.online/blog/blockchain-in-go/part-2)
- [x] [Persistence & CLI](https://edwinho.online/blog/blockchain-in-go/part-3)
- [x] [Transaction 1](https://edwinho.online/blog/blockchain-in-go/part-4)
- [x] [Addresses](https://edwinho.online/blog/blockchain-in-go/part-5)
- [ ] Transaction 2
- [ ] Network## Acknowledgments
- [Blockchain in Go](https://github.com/Jeiwan/blockchain_go)