Skip to content
Zane Witherspoon edited this page Mar 4, 2018 · 39 revisions

Welcome to disgo!

Boogie down with Dispatch Labs as we build disgo, the initial Golang implementation of the Dispatch protocol. If you're a developer interested in submitting pull requests, let's party like it's 1975.

What is the Dispatch Protocol?

The best place to begin with understanding Dispatch is the whitepaper, but we'll give some cliffs notes here. The Dispatch protocol is built with 3 core principals in mind:

  • Dispatch is scalable.

    Using our own DAPoS consensus, we can achieve high transaction throughput, with no transaction fees

  • Dispatch is backwards-compatible with Ethereum smart-contracts and the EVM.

    By using a modified version of the EVM, Dispatch the Dispatch protocol is compatible with most Dapps currently under development

  • Dispatch handles lots data.

    Most business logic involves data too big to fit in a shared ledger. We extend the functionality of Ethereum smart-contracts to support accessing big off-chain data we call artifacts

Development

Disgo is still in Testnet Alpha development. We are an open-source project and encourage community contribution! We're excited to talk to developers and will happily help curious engineers get aquatinted with the code base. Curious minds are encouraged to email us at [email protected].

If you're not a developer, but still want to follow along, check out our development blog for weekly updates.

API

The Disgo API is organized around REST. To learn more about our API check out our API Reference.

Modules

The disgo repository is composed of several smaller "building block" modules. The goal is to create usable components of common blockchain architectures, so future blockchain projects don't have to start from scratch.

Commons

disGover

disGover is our node discovery module. Built using libp2p, disgovery should solve the distributed system bootstrapping problem of finding other nodes in the network. Eventually we'll expand on this module to support the discovery of non-node entities, like artifacts.

DAPoS

The Dispatch protocol is built using a novel Delegated Asynchronous Proof-of-Stake consensus algorithm called DAPoS. The dapos repo is the modular implementation of the consensus implemented in Go.

Clone this wiki locally