923 B
923 B
Blockchain in Go
A blockchain implementation in Go, as described in these articles:
Quick Start
Download and install
go get github.com/richardweiyang/blockchain_go
Create file main.go
package main
import "github.com/richardweiyang/blockchain_go"
func main() {
cli := bc.CLI{}
cli.Run()
}
Build and run
go build main.go
./main