Coder Social home page Coder Social logo

mokka's Introduction

Mokka

Build Status

Mokka Consensus Algorithm implementation in Node.js.

Concept description (PDF)

Live Demo (in browser)

consensus features

  • resistant to network splits
  • non-anonymous voting
  • voting validation with musig

implementation features

  • Custom transport layer support: Mokka separates interface implementation and consensus
  • Fully customizable: you can create your own state machine around Mokka consensus (check out demos for more info)
  • Can run in CFT and BFT modes

Installation

Via npm

$ npm install mokka --save

From repo

$ npm run build

API

new Mokka (options)

Returns a new Mokka instance. As Mokka is agnostic to protocol implementation, you have to create your own. Please check the Custom transport layer section.

Arguments:

  • address (string): an address in custom format. The only rule is that address should include the public key in the end (example: "tcp://127.0.0.1:2003/03fec1b3d32dbb0641877f65b4e77ba8466f37ab948c0b4780e4ed191be411d694")
  • crashModel ("CFT" | "BFT"): crash model, which should run the consensus. The difference is in quorum - CFT requires f + 1 nodes for quorum, while BFT 2f + 1
  • heartbeat (integer): leader heartbeat timeout
  • electionTimeout (integer): candidate election timeout (i.e. vote round)
  • customVoteRule (func): additional voting rule
  • reqMiddleware (func): request middleware (will be triggered on every new packet received)
  • resMiddleware (func): response middleware (will be triggered on every new packet sent)
  • proofExpiration (integer): when the leader's proof token should expire.
  • logger (ILoggerInterface): logger instance. If omitted, then console.log will be used
  • privateKey: the 64 length private key. Please take a look at example key pair generator

mokka.join(multiaddr: string): NodeModel

Add new peer node by uri

await mokka.connect(): Promise

Start consensus. Should be called after all nodes has been added.

mokka.messageApi.packet(type: number, data: any = null): PacketModel

Create new packet, where type is packet type, and data some custom data

mokka.messageApi.decodePacket(message: Buffer): PacketModel

Decode packet from buffer

await mokka.messageApi.message(packet: PacketModel, peerPublicKey: string): Promise

Send message to peer

Events

A Mokka instance emits the following events (available at /components/shared/EventTypes.ts):

  • join: once we add new peer
  • leave: once we remove peer
  • heartbeat_timeout: once we can't receive the heartbeat from leader in certain time (specified in config)
  • state: once the state of node changed (i.e. leader, candidate, follower)

Custom RSM

Mokka is a log-less consensus algorithm and doesn't provide any RSM (i.e. replicated log). You have to implement your own. However, there is a good example of RSM implementation, which is similar to RAFT.

Custom transport layer

In order to communicate between nodes, you have to implement the interface by yourself. As an example you can take a look at TCP implementation: src/implementation/TCP. In order to write your own implementation you have to implement 2 methods:

  • The async initialize() function, which fires on Mokka start. This method is useful, when you want to open the connection, for instance, tcp one, or connect to certain message broker like rabbitMQ.

  • The async write(address: string, packet: Buffer) function, which fires each time Mokka wants to broadcast message to other peer (address param).

Also, keep in mind, that Mokka doesn't handle the disconnected / dead peers, which means that Mokka will try to make requests to all presented members in cluster, even if they are not available. So, you need to handle it on your own.

Examples

Node.js
running cluster
running private blockchain

Implemented protocols out of the box

Node.js
TCP
ZMQ

However, you still can implement your own protocol.

License

GNU AGPLv3

Copyright

Copyright (c) 2018-2021 Egor Zuev

mokka's People

Contributors

ega-forever avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar

Forkers

sbrl cerc-io

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.