This monorepo contains the packages that implement the Kosu protocol, alongside supporting packages and developer tooling.
Documentation for Kosu packages is available in this repository, and hosted at docs.kosu.io
.
Smart-contract packages (Solidity) including the core Kosu system contracts and SubContract SDK and contract test suite.
Package | Version | Description |
---|---|---|
@kosu/system-contracts |
The core Kosu contract system in Solidity (with low-level wrappers). | |
@kosu/solidity-tests |
TypeScript test suite for the Kosu contract system. | |
@kosu/subcontract-sdk |
The Kosu SubContract interface and example implementations. |
|
@kosu/migrations |
Scripts and utilities for deploying Kosu contracts to Ethereum networks. |
Kosu network clients (currently, only go-kosu
). Includes validator implementation, full/light node's, CLI, and JSONRPC server.
Package | Version | Description |
---|---|---|
go-kosu |
The reference implementation of the Kosu network in Go, built on Tendermint Core. |
Client/server libraries for interacting with the Kosu network and contract system.
Package | Version | Description |
---|---|---|
@kosu/kosu.js |
Exports all Kosu helper classes, utility functions, and contract wrappers. | |
@kosu/node-client |
TypeScript client for interacting with a Kosu node over JSONRPC. | |
@kosu/genesis-cli |
Library and CLI for generating network genesis files from contract sate. | |
@kosu/utils |
Utilities for interacting with Kosu (decoding event logs, etc.). | |
@kosu/contract-helpers |
High-level convenience wrappers for interacting with Kosu contracts. |
Package | Version | Description |
---|---|---|
@kosu/deployed-addresses |
Kosu contract addresses for various Ethereum networks. | |
@kosu/test-helpers |
Helpful utilities for testing building Kosu contract-related tests. | |
@kosu/types |
TypeScript type definitions for Kosu projects. | |
@kosu/dev-images |
Development docker images and supporting scripts for Kosu packages. | |
@kosu/kosu-geth |
Geth PoA configuration for private Kosu test networks (CI, etc.). | |
@kosu/tslint-config |
TypeScript linter base configuration for Kosu TypeScript projects. | |
@kosu/tsc-config |
TypeScript compiler base configuration for Kosu TypeScript projects. | |
@kosu/web-helpers |
Simple web interface for interacting with the Kosu contract system. |
In order to build the full monorepo, the following is required:
^10
)^1.15
)^1.6
)^1.13
)^3.1
)^1.8
)
abigen
binary is required to build the monorepo.MacOS users can install most required packages with Homebrew
package manager.
For other operating systems, see the official install instructions for each required package (linked above).
This will also install Node.js if it is not already installed.
brew install yarn
To install the go-ethereum
suite with brew
:
brew tap ethereum/ethereum
brew install ethereum
To install jq
(JSON parsing binary):
brew install jq
Clone the repository via SSH:
git clone git@github.com:ParadigmFoundation/kosu-monorepo
Or via HTTP:
git clone https://github.com/ParadigmFoundation/kosu-monorepo
Install dependencies:
yarn
To build all packages:
yarn build
Generated documentation is published for the following packages with each commit, and published to docs.kosu.io
:
go-kosu
: Golang Tendermint-based network reference implementation and CLI.@kosu/kosu.js
: TypeScript library for interacting with the Kosu contract system and network.@kosu/system-contracts
: The core Kosu system smart-contracts in Solidity, and TypeScript test suite.Documentation is also checked in to each package and viewable on GitHub.
Various development images used for Kosu CI/CD and development are publicly available on GCR (download with docker pull
), and built from each master
commit.
kosu-io/node-ci
A custom Node.js (lts
) image with additional binaries used to assist in building/testing Kosu packages. Drop-in replacement for node:lts
image.
gcr.io/kosu-io/node-ci:latest
kosu-io/go-kosu-ci
A custom golang (1.13-stretch
) image with Tendermint and other binaries pre-installed, used as the CI image for go-kosu
(Tendermint is compiled into kosud
and not needed for production builds, but used in testing).
gcr.io/kosu-io/go-kosu-ci:latest
kosu-io/kosu-geth
Contains geth
with PoA consensus in a single-node private network configuration used for testing Kosu system contracts. Note that contracts are not pre-migrated and must be deployed with @kosu/system-contracts
(see scripts).
gcr.io/kosu-io/kosu-geth:latest
Pre-built binaries for go-kosu
are available (per-commit CD builds are currently Linux/x86_64 only, build locally for other targets):
kosud
Kosu network client reference implementation, built on Tendermint consensus. Run kosud --help
for usage.
wget https://storage.googleapis.com/kosud/linux_amd64/kosud
chmod +x kosud
install kosud /usr/local/bin
kosu-cli
Command-line interface for kosud
(run kosu-cli
for usage).
wget https://storage.googleapis.com/kosu-cli/linux_amd64/kosu-cli
chmod +x kosu-cli
install kosu-cli /usr/local/bin
We strongly encourage all contributions! Read our contribution guidelines and feel free to reach out with any questions.
To report bugs within a specific Kosu package, please create an issue in this repository (template will auto-populate).
Kosu is being developed as free open-source software under an MIT license.