modulepackage
0.0.0-20210919061906-dc9f60af9ab9
Repository: https://github.com/chobobdev/go_coin.git
Documentation: pkg.go.dev
# README
Learning the blockchain concepts with Go lang
진행과정 (What I Learnt)
#3 TOUR OF GO
Date | Section |
---|---|
15/06/2021 | #3.0 Creating the Project |
15/06/2021 | #3.1 Variables in Go |
16/06/2021 | #3.2 Functions |
17/06/2021 | #3.3 fmt |
17/06/2021 | #3.4 Slices and Arrays |
17/06/2021 | #3.5 Pointers |
19/06/2021 | #3.6 Structs |
20/06/2021 | #3.7 Structs with Pointers |
20/06/2021 | #3.8 Conclusions |
#4 BLOCKCHAIN
Date | Section |
---|---|
20/06/2021 | #4.0 Introduction |
20/06/2021 | #4.1 Our First Block |
21/06/2021 | #4.2 Our First Blockchain |
21/06/2021 | #4.3 Singleton Pattern |
21/06/2021 | #4.4 Refactoring part One |
22/06/2021 | #4.5 Refactoring part Two |
#5 EXPLORER
Date | Section |
---|---|
22/06/2021 | #5.0 Setup |
22/06/2021 | #5.1 Rendering Templates |
22/06/2021 | #5.2 Rendering Blocks |
23/06/2021 | #5.3 Using Partials |
23/06/2021 | #5.4 Adding A Block |
23/06/2021 | #5.5 Refactoring |
24/06/2021 | #5.6 Recap |
#6 REST API
Date | Section |
---|---|
24/06/2021 | #6.0 Setup |
26/06/2021 | #6.1 Marshal and Field Tags |
26/06/2021 | #6.2 MarshalText |
27/06/2021 | #6.3 JSON Decode |
27/06/2021 | #6.4 NewServeMux |
27/06/2021 | #6.5 Gorilla Mux |
27/06/2021 | #6.6 Atoi |
27/06/2021 | #6.7 Error Handling |
28/06/2021 | #6.8 Middlewares |
#7 CLI
Date | Section |
---|---|
28/06/2021 | #7.0 Introduction |
28/06/2021 | #7.1 Parsing Commands |
29/06/2021 | #7.2 FlagSet |
29/06/2021 | #7.3 Flag |
#8 PERSISTENCE
Date | Section |
---|---|
29/06/2021 | #8.0 Introduction to Bolt |
30/06/2021 | #8.1 Creating the Database |
30/06/2021 | #8.2 A New Blockchain |
01/07/2021 | #8.3 Saving A Block |
12/07/2021 | #8.4 Persisting The Blockchain |
12/07/2021 | #8.5 Restoring the Blockchain |
13/07/2021 | #8.6 Restoring Block |
14/07/2021 | #8.7 All Blocks |
16/07/2021 | #8.8 Recap |
#9 MINING
Date | Section |
---|---|
16/07/2021 | #9.0 Introduction to PoW |
18/07/2021 | #9.1 PoW Proof Of Concept |
18/07/2021 | #9.2 Mine Block |
19/09/2021 | #9.3 Difficulty part One |
19/09/2021 | #9.4 Difficulty part Two |
19/09/2021 | #9.5 Conclusions |
#10 TRANSACTIONS
Date | Section |
---|---|
19/09/2021 | #10.0 Introduction |
19/09/2021 | #10.1 Introduction to Transactions |