项目作者: certichain

项目描述 :
A minimalistic blockchain consensus implemented and verified in Coq
高级语言: Coq
项目地址: git://github.com/certichain/toychain.git
创建时间: 2017-07-20T18:59:58Z
项目社区:https://github.com/certichain/toychain

开源协议:BSD 2-Clause "Simplified" License

下载


Toychain

Build Status
License
DOI

A Coq implementation of a minimalistic blockchain-based consensus protocol.

Building the Project

Requirements

Coq definitions and proofs:

Executable node:

Building Definitions and Proofs

We recommend installing the Coq requirements via OPAM:

  1. opam repo add coq-released https://coq.inria.fr/opam/released
  2. opam install coq coq-mathcomp-ssreflect.1.10.0 coq-fcsl-pcm

Then, run make clean; make from the root folder. This will build all
the libraries and check all the proofs.

Building an Executable Node

The additional OCaml dependencies for the executable node can also
be installed via OPAM:

  1. opam install ocamlbuild cryptokit ipaddr

Then, run make node from the root folder. This will produce an
executable named node.native.

Project Structure

The top-level structure consists of the following folders:

  • Structures - implementations of block forests and chain properties;

  • Systems - definition of the protocol, its state, and network semantics;

  • Properties - proved properties of the protocol, e.g., eventual
    consistency for a clique-like network topology;