aboutsummaryrefslogtreecommitdiff
path: root/README.rst
diff options
context:
space:
mode:
authorDeterminant <tederminant@gmail.com>2018-07-18 15:06:36 -0400
committerDeterminant <tederminant@gmail.com>2018-07-18 15:06:36 -0400
commit960e06035636693b902d8523f1e50cafa1d62233 (patch)
treeee9985b199a5f8c213111c4a2e45483515b70442 /README.rst
parent780cfa4ee8faf4c2662f3c739e8a5c9f1c8a1826 (diff)
add readme
Diffstat (limited to 'README.rst')
-rw-r--r--README.rst46
1 files changed, 46 insertions, 0 deletions
diff --git a/README.rst b/README.rst
new file mode 100644
index 0000000..ffe3e6e
--- /dev/null
+++ b/README.rst
@@ -0,0 +1,46 @@
+HotStuff
+========
+
+HotStuff is a general-purpose BFT state machine replication library with
+modularity and simplicity, suitable for building hybrid consensus
+cryptocurrencies.
+
+Features
+========
+
+- Simplicity. The protocol core logic implementation is as simple as the one
+ specified in our paper. See ``consensus.h`` and ``consensus.cpp``.
+
+- Modular design. You can use abstraction from the lowest level (the core
+ protocol logic) to the highest level (the state machine replication service
+ with network implementation) in your application, or override/redefine the
+ detailed behavior to customize your own consensus.
+
+- Liveness decoupled from safety. The liveness logic is entirely decoupled from
+ safety. By defining your own liveness gadget ("PaceMaker"), you can implement
+ your own liveness heuristics/algorithm. The actual performance varies
+ depending on your liveness implementation, but the safety is always intact.
+
+- Friendly to blockchain systems. A PaceMaker could potentially be PoW-based and
+ it makes it easier to build a hybrid consensus system, or use it at the core of
+ some cryptocurrencies.
+
+- Minimal. The project strives to keep code base small and implement just the
+ basic functionality of state machine replication: to deliver a consistent
+ command sequence to the library user. Application-specific parts are not
+ included, but demonstrated in the demo program.
+
+Try the Current Version
+=======================
+
+NOTICE: the project is still in-progress. Try at your own risk, and this
+section may be incomplete and subject to changes.
+
+::
+
+ # ensure openssl and libevent are installed on your machine
+ cmake -DCMAKE_BUILD_TYPE=Release . -DCMAKE_CXX_FLAGS="-g -DHOTSTUFF_ENABLE_LOG_PROTO" -DBUILD_SHARED=ON
+ make
+
+ # start 4 demo replicas with ./run_replicas.sh
+ # start the demo client with ./run_client.sh