Go to file
Ethan Buchman 9722f41600 deps, changelog, version 2018-04-09 16:51:40 +03:00
.circleci Upgrade to Circle 2.0 2018-03-21 00:55:55 +01:00
.github github PR template 2018-03-01 18:26:16 -05:00
baseapp Replace Result.ToQuery with Error.QueryResult (closes #765) 2018-04-03 22:15:52 +02:00
client Reuse Tendermint client instance (closes #671) 2018-04-03 22:16:03 +02:00
cmd add log_level flag 2018-04-05 14:16:20 +03:00
docs revert to develop docs 2018-03-28 19:01:50 +02:00
examples Update mine command usage information 2018-04-05 18:26:09 +02:00
mock fix mock test 2018-04-05 13:51:32 +03:00
server add log_level flag 2018-04-05 14:16:20 +03:00
store Replace Result.ToQuery with Error.QueryResult (closes #765) 2018-04-03 22:15:52 +02:00
tests fixes post rebase 2018-03-17 23:09:04 +01:00
tools Fix bug: make will fail if the path contains whitespace 2018-03-09 13:06:36 +08:00
types sort coins in genesis 2018-04-05 14:55:10 +03:00
version deps, changelog, version 2018-04-09 16:51:40 +03:00
wire revert to old go-wire 2018-03-02 04:24:07 -05:00
x cwgoes comments, validator.VotingPower -> validator.Power 2018-04-05 18:34:25 -04:00
.codecov.yml codecov: closes #334 2018-01-17 20:00:54 -05:00
.gitignore cleanup gitignore 2018-03-31 19:05:15 +03:00
CHANGELOG.md deps, changelog, version 2018-04-09 16:51:40 +03:00
CODEOWNERS add ebuchman as codeowner 2018-02-13 08:55:44 -05:00
CODE_OF_CONDUCT.md Create CODE_OF_CONDUCT.md 2018-01-29 12:38:50 +01:00
Dockerfile Dockerfile and Dockerfile.dev for development 2017-03-14 16:15:03 +04:00
Gopkg.lock deps, changelog, version 2018-04-09 16:51:40 +03:00
Gopkg.toml deps, changelog, version 2018-04-09 16:51:40 +03:00
LICENSE Add README.md to Basecoin; Update licenses 2018-01-28 18:17:19 -08:00
Makefile add log_level flag 2018-04-05 14:16:20 +03:00
README.md Update README.md 2018-04-07 14:31:44 -07:00
Vagrantfile Finally working 2018-01-27 17:40:11 -08:00

README.md

Cosmos SDK

banner

version API Reference Matrix/Riot license LoC Go Report Card

Branch Tests Coverage
develop CircleCI codecov
master CircleCI codecov

WARNING: the libraries are still undergoing breaking changes as we get better ideas and start building out the Apps.

Note: Requires Go 1.9+

The Cosmos SDK is a platform for building multi-asset Proof-of-Stake cryptocurrencies, like the Cosmos Hub. It is both a library for building applications and a set of tools for securely interacting with them.

The goals of the SDK are to abstract away the complexities of building a Tendermint ABCI application in Golang and to provide a framework for building interoperable blockchain applications in the Cosmos Network.

It is inspired by capabilities-based security, and informed by years of wrestling with blockchain state machines.

The SDK is fast, safe, and easy-to-use. It is generic enough to be used to implement the state machines of other existing blockchains, like Bitcoin and Ethereum, allowing seamless integration with them and their data structures. It comes with batteries included, is easily extensible, and does not require developers to fork it to access any of its current or extended functionality. It provides both REST and command line interfaces for secure user interactions.

Applications in the Cosmos-SDK are defined in terms of handlers that process messages and read and write to a store. Handlers are given restricted capabilities that determine which parts of the store they can access. The SDK provides common data structures for Accounts, multi-asset Coins, checking signatures, preventing replay, and so on.

For more details on the design goals, see the SDK Guide

Prerequisites

Getting Started