Go to file
Ethan Frey 74070f1cac Add module tests for checktx return values 2017-08-03 21:41:24 +02:00
app Deduplicate validator changes in EndBlock and test this 2017-08-03 21:41:24 +02:00
benchmarks Rename SetOption to InitState 2017-08-03 21:41:23 +02:00
client cmd/baseserver, */rest: allow baseserver to choose which handlers to use 2017-08-03 11:41:51 -06:00
cmd cmd/baseserver, */rest: allow baseserver to choose which handlers to use 2017-08-03 11:41:51 -06:00
docs Add InitValidate method for setup 2017-08-03 21:41:23 +02:00
errors
modules Add module tests for checktx return values 2017-08-03 21:41:24 +02:00
publish
stack Add InitValidate method for setup 2017-08-03 21:41:23 +02:00
state Ensure deterministic ordering of keys when applying KVCache 2017-08-03 17:37:15 +02:00
tests Fix up flag handling 2017-07-29 17:23:21 -04:00
version
.gitignore client/rest, modules/coin/rest: moved code around 2017-08-02 12:57:29 -06:00
CHANGELOG.md
Dockerfile
Dockerfile.dev
LICENSE
Makefile
README.md update readme, fixes #189 2017-07-29 22:56:54 -04:00
RELEASE.md
ROADMAP.md
TODO.md Handlers and middlewares add gas prices 2017-08-03 21:41:24 +02:00
Vagrantfile
_gen.go
circle.yml
context.go
glide.lock client/rest, modules/coin/rest: moved code around 2017-08-02 12:57:29 -06:00
glide.yaml Fix up imports after megre 2017-07-27 16:49:22 -04:00
handler.go Handlers and middlewares add gas prices 2017-08-03 21:41:24 +02:00
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.