You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
1.0 KiB

5 years ago
5 years ago
5 years ago
  1. # slowlorisdb [![Go Report Card](https://goreportcard.com/badge/github.com/arnaucube/slowlorisdb)](https://goreportcard.com/report/github.com/arnaucube/slowlorisdb) [![GoDoc](https://godoc.org/github.com/arnaucube/slowlorisdb?status.svg)](https://godoc.org/github.com/arnaucube/slowlorisdb)
  2. Slow, decentralized and cryptographically consistent database
  3. Basically this repo is a blockchain written from scratch, that allows to launch multiple simultaneous blockchains.
  4. Watch the blockchain in action: http://www.youtubemultiplier.com/5ca9c1a540b31-slowlorisdb-visual-representation.php
  5. ![slowloris](https://04019a5a-a-62cb3a1a-s-sites.googlegroups.com/site/jchristensensdigitalportfolio/slow-loris/IO-moth-eating-frozen-apple-sauce.jpg "slowloris")
  6. ## Run
  7. The repo is under construction
  8. - create node
  9. ```sh
  10. # node0
  11. go run main.go --config config0.yaml create
  12. # node1
  13. go run main.go --config config1.yaml create
  14. ```
  15. - run node
  16. ```sh
  17. # node0
  18. go run main.go --config config0.yaml start
  19. # node1
  20. go run main.go --config config1.yaml start
  21. ```