Go to file
Jae Kwon 102d196204 Add README.md to Basecoin; Update licenses 2018-01-28 18:17:19 -08:00
_attic Initial commit for permissioning... 2018-01-12 19:17:17 -08:00
baseapp Separation of Tx from Msg; CodeType 2018-01-26 06:54:03 -08:00
docs Review feedback from Adrian 2018-01-28 15:20:45 -08:00
examples Add README.md to Basecoin; Update licenses 2018-01-28 18:17:19 -08:00
publish Rename all packages and imports to cosmos-sdk 2017-08-21 22:15:15 +01:00
store Add first Basecoin test harness 2018-01-26 06:54:03 -08:00
tests Fix cli tests to explicitly pass height when querying results of tx 2017-10-25 19:14:28 +02:00
tools Vendor tools into tools/* (#331) 2018-01-16 11:24:20 -08:00
types Add docs/design.md; Add sketchy for illustration 2018-01-28 15:20:45 -08:00
version modules -> x 2017-10-31 17:51:44 -05:00
x Review feedback from Adrian 2018-01-28 15:20:45 -08:00
.codecov.yml codecov: closes #334 2018-01-17 20:00:54 -05:00
.gitignore Add first Basecoin test harness 2018-01-26 06:54:03 -08:00
CHANGELOG.md changelog and version 2017-10-11 23:30:50 -04:00
CODEOWNERS Add CODEOWNERS 2018-01-20 18:18:16 -08:00
Dockerfile Dockerfile and Dockerfile.dev for development 2017-03-14 16:15:03 +04:00
Dockerfile.dev add jq to Dockerfile.dev [ci skip] 2017-06-23 12:13:29 +04:00
LICENSE Add README.md to Basecoin; Update licenses 2018-01-28 18:17:19 -08:00
Makefile Add first Basecoin test harness 2018-01-26 06:54:03 -08:00
README.md Fix guide docs 2018-01-27 17:34:43 -08:00
RELEASE.md Update RELEASE from learning from 0.6.0 2017-06-23 11:10:32 +02:00
TODO WIP: refactor 2018-01-12 19:17:17 -08:00
Vagrantfile Finally working 2018-01-27 17:40:11 -08:00
circle.yml codecov: closes #334 2018-01-17 20:00:54 -05:00
glide.lock Update glide.lock 2018-01-22 06:20:46 -08:00
glide.yaml Do not use global wire.Marshal* 2018-01-21 19:48:19 -08:00
test_cover.sh codecov: closes #334 2018-01-17 20:00:54 -05:00

README.md

Cosmos SDK

banner

version API Reference Rocket.Chat 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