Go to file
Ethan Frey d0d1a96517 Make kvtests legible 2017-07-27 15:31:32 -04:00
app Pull in logic from merkleeyes, get it all working with trees 2017-07-27 15:31:32 -04:00
benchmarks Fixed benchmark and compared unstable to this branch 2017-07-27 15:31:32 -04:00
client/commands Add roles cli test, coin query supports multiple apps in actor 2017-07-19 16:14:26 +02:00
cmd Pull in logic from merkleeyes, get it all working with trees 2017-07-27 15:31:32 -04:00
docs Pull in logic from merkleeyes, get it all working with trees 2017-07-27 15:31:32 -04:00
errors errors cleanup 2017-07-19 01:23:13 -04:00
modules Pull in logic from merkleeyes, get it all working with trees 2017-07-27 15:31:32 -04:00
plugins/ibc
publish
stack Pull in logic from merkleeyes, get it all working with trees 2017-07-27 15:31:32 -04:00
state Make kvtests legible 2017-07-27 15:31:32 -04:00
tests Remove old test 2017-07-25 10:28:54 -04:00
version
.gitignore
CHANGELOG.md
Dockerfile
Dockerfile.dev
LICENSE
Makefile Tested sending 1 sig from role 2017-07-19 16:36:35 +02:00
README.md more docs updates heavy in quarks folder 2017-07-21 08:23:45 -04:00
RELEASE.md
ROADMAP.md
Vagrantfile
_gen.go
circle.yml
context.go fix seqkey uses chain and app 2017-07-18 12:08:30 +02:00
glide.lock Test list queries and iavl implementation 2017-07-27 15:31:32 -04:00
glide.yaml Test list queries and iavl implementation 2017-07-27 15:31:32 -04:00
handler.go
tx.go
tx_test.go
txinner_wrapper.go

README.md

Quark

Quark is an ABCI application designed to be used with the Tendermint consensus engine to form a Proof-of-Stake cryptocurrency. It also provides a general purpose framework for extending the feature-set of the cryptocurrency by implementing plugins.

Quark serves as a reference implementation for how we build ABCI applications in Go, and is the framework in which we implement the Cosmos Hub. It's easy to use, and doesn't require any forking - just implement your plugin, import the quark libraries, and away you go with a full-stack blockchain and command line tool for transacting.

Prerequisites

Install and setup Golang.

Installation

go get -u github.com/tendermint/basecoin/cmd/basecoin

See the install guide for more details.

Guide

  1. Getting started with the Quark basics
  2. Learning to use the plugin system
  3. More features of the Quark tool
  4. Learn how to use Inter-Blockchain Communication (IBC)
  5. See more examples

To deploy a testnet, see our repository of deployment tools.