A simple blockchain written in Go
Some reasons why Go is one of the preferred languages to use when working with Blockchains: https://medium.com/karachain/why-i-am-building-a-blockchain-in-go-6395a60b24dd
main_v1: https://medium.com/@mycoralhealth/code-your-own-blockchain-in-less-than-200-lines-of-go-e296282bcffc
main_v3: https://medium.com/@mycoralhealth/code-your-own-blockchain-mining-algorithm-in-go-82c6a71aba1f
main_v4: https://medium.com/@mycoralhealth/code-your-own-proof-of-stake-blockchain-in-go-610cd99aa658
jeiwan_main_v1: https://jeiwan.cc/posts/building-blockchain-in-go-part-1/
go get github.com/davecgh/go-spew/spew
go get github.com/gorilla/mux
go get github.com/joho/godotenv
Spew: Pretty printing for structs and slices
Mux: Web handler
GoDotEnv: Read .env files