An open API service indexing awesome lists of open source software.

https://github.com/jamesvorder/distributed_algos_labs

"Labs" from my distributed algos course. (These are just distributed algorithms implemented in solidity.)
https://github.com/jamesvorder/distributed_algos_labs

distributed-systems leader-election solidity

Last synced: 6 months ago
JSON representation

"Labs" from my distributed algos course. (These are just distributed algorithms implemented in solidity.)

Awesome Lists containing this project

README

          

# My Distributed Algorithms "Labs"
"Labs" from my distributed algos course. (These are just distributed algorithms implemented in solidity.) I'm reading Nancy A. Lynch's _Distributed Algorithms._ These algorithms all come from there.

Each folder contains a [Truffle project.](http://truffleframework.com/) You can run the tests with `truffle test`

## LCR
An algorithm for leader election in a synchronous ring network.
## HS
An algorithm for leader election in a synchronous ring network.