https://github.com/fetchai/cosmos-consensus
Integration of the Fetch DRB with the Tendermint consensus
Science Score: 10.0%
This score indicates how likely this project is to be science-related based on various indicators:
-
○CITATION.cff file
-
○codemeta.json file
-
○.zenodo.json file
-
○DOI references
-
✓Academic publication links
Links to: arxiv.org -
○Academic email domains
-
○Institutional organization owner
-
○JOSS paper metadata
-
○Scientific vocabulary similarity
Low similarity (9.0%) to scientific vocabulary
Repository
Integration of the Fetch DRB with the Tendermint consensus
Basic Info
Statistics
- Stars: 3
- Watchers: 8
- Forks: 7
- Open Issues: 17
- Releases: 0
Metadata Files
README.md
Changes
See beacon directory and consensus/state.go for main changes. Swig and C++ Boost libraries will need to be installed for the c++ to go interface and serialisation, respectively.
Install dependencies:
bash
wget https://github.com/herumi/mcl/archive/v1.05.tar.gz
tar xvf v1.05.tar.gz && cd mcl-1.05
make install
You will also need swig and GMP for the go-c++ interface and mcl. On Ubuntu
bash
sudo apt-get libgmp-dev swig
To run all tests:
bash
make test
To create a single node, which also generates entropy, run the following from the root directory
bash
make build
cd build
./tendermint init
This creates genesis and validator information. To start the node
bash
./tendermint node --proxy_app=kvstore
The logs should show the node running the DKG and executing blocks, which contain the entropy in hex format after DKG completion.
For creating testnet with 4 validator nodes run
bash
./tendermint testnet
This will create the required tendermint files for each node.
Second, determine the IDs for each node by running. We will denote the IDs as ID0, ID1, ID2, ID3.
bash
./tendermint show_node_id --home mytestnet/node0
./tendermint show_node_id --home mytestnet/node1
./tendermint show_node_id --home mytestnet/node2
./tendermint show_node_id --home mytestnet/node3
Now, assign each node two unique port numbers, denoted by P and Q, for listening to incoming peer connections and rpcs. Start each node in a separate terminal using ```bash ./tendermint node --home mytestnet/node0 --proxyapp=kvstore --p2p.laddr="tcp://127.0.0.1:P0" --rpc.laddr="tcp://127.0.0.1:Q0" --p2p.persistentpeers="ID1@127.0.0.1:P1,ID2@127.0.0.1:P2,ID3@127.0.0.1:P3"
./tendermint node --home mytestnet/node1 --proxyapp=kvstore --p2p.laddr="tcp://127.0.0.1:P1" --rpc.laddr="tcp://127.0.0.1:Q1" --p2p.persistentpeers="ID0@127.0.0.1:P0,ID2@127.0.0.1:P2,ID3@127.0.0.1:P3"
./tendermint node --home mytestnet/node2 --proxyapp=kvstore --p2p.laddr="tcp://127.0.0.1:P2" --rpc.laddr="tcp://127.0.0.1:Q2" --p2p.persistentpeers="ID0@127.0.0.1:P0,ID1@127.0.0.1:P1,ID3@127.0.0.1:P3"
./tendermint node --home mytestnet/node3 --proxyapp=kvstore --p2p.laddr="tcp://127.0.0.1:P3" --rpc.laddr="tcp://127.0.0.1:Q3" --p2p.persistentpeers="ID0@127.0.0.1:P0,ID1@127.0.0.1:P1,ID2@127.0.0.1:P2" ``` After starting the third node blocks should start to be executed.
Tendermint

Byzantine-Fault Tolerant State Machines. Or Blockchain, for short.
| Branch | Tests | Coverage |
| ------ | ---------------------------------------------------------------------------------------------------------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ |
| master | |
|
Tendermint Core is Byzantine Fault Tolerant (BFT) middleware that takes a state transition machine - written in any programming language - and securely replicates it on many machines.
For protocol details, see the specification.
For detailed analysis of the consensus protocol, including safety and liveness proofs, see our recent paper, "The latest gossip on BFT consensus".
Releases
NOTE: The master branch is now an active development branch (starting with v0.32). Please, do not depend on it and
use releases instead.
Tendermint is being used in production in both private and public environments, most notably the blockchains of the Cosmos Network. However, we are still making breaking changes to the protocol and the APIs and have not yet released v1.0. See below for more details about versioning.
In any case, if you intend to run Tendermint in production, please contact us and join the chat.
Security
To report a security vulnerability, see our bug bounty program
For examples of the kinds of bugs we're looking for, see SECURITY.md
Minimum requirements
| Requirement | Notes | | ----------- | ---------------- | | Go version | Go1.13 or higher |
Documentation
Complete documentation can be found on the website.
Install
See the install instructions
Quick Start
- Single node
- Local cluster using docker-compose
- Remote cluster using terraform and ansible
- Join the Cosmos testnet
Contributing
Please abide by the Code of Conduct in all interactions.
Before contributing to the project, please take a look at the contributing guidelines and the style guide.
To get more active, Join the wider community at Discord or jump onto the Forum.
Learn more by reading the code and the specifications or watch the Developer Sessions and read up on the Architectural Decision Records.
Versioning
Semantic Versioning
Tendermint uses Semantic Versioning to determine when and how the version changes. According to SemVer, anything in the public API can change at any time before version 1.0.0
To provide some stability to Tendermint users in these 0.X.X days, the MINOR version is used to signal breaking changes across a subset of the total public API. This subset includes all interfaces exposed to other processes (cli, rpc, p2p, etc.), but does not include the in-process Go APIs.
That said, breaking changes in the following packages will be documented in the CHANGELOG even if they don't lead to MINOR version bumps:
- crypto
- types
- rpc/client
- config
- node
- libs
- bech32
- common
- db
- errors
- log
Exported objects in these packages that are not covered by the versioning scheme
are explicitly marked by // UNSTABLE in their go doc comment and may change at any
time without notice. Functions, types, and values in any other package may also change at any time.
Upgrades
In an effort to avoid accumulating technical debt prior to 1.0.0, we do not guarantee that breaking changes (ie. bumps in the MINOR version) will work with existing tendermint blockchains. In these cases you will have to start a new blockchain, or write something custom to get the old data into the new chain.
However, any bump in the PATCH version should be compatible with existing histories (if not please open an issue).
For more information on upgrading, see UPGRADING.md.
Supported Versions
Because we are a small core team, we only ship patch updates, including security updates, to the most recent minor release and the second-most recent minor release. Consequently, we strongly recommend keeping Tendermint up-to-date. Upgrading instructions can be found in UPGRADING.md.
Resources
Tendermint Core
For details about the blockchain data structures and the p2p protocols, see the Tendermint specification.
For details on using the software, see the documentation which is also hosted at: https://docs.tendermint.com/master/
Tools
Benchmarking is provided by tm-load-test.
The code for tm-load-test can be found here this binary needs to be built separately.
Additional documentation is found here.
Sub-projects
- Amino, reflection-based proto3, with interfaces
- IAVL, Merkleized IAVL+ Tree implementation
- Tm-db, Data Base abstractions to be used in applications.
Applications
- Cosmos SDK; a cryptocurrency application framework
- Ethermint; Ethereum on Tendermint
- Many more
Research
Owner
- Name: Fetch.AI
- Login: fetchai
- Kind: organization
- Website: https://fetch.ai
- Twitter: Fetch_ai
- Repositories: 40
- Profile: https://github.com/fetchai
GitHub Events
Total
- Member event: 1
Last Year
- Member event: 1
Issues and Pull Requests
Last synced: about 3 years ago
All Time
- Total issues: 2
- Total pull requests: 98
- Average time to close issues: about 2 months
- Average time to close pull requests: 22 days
- Total issue authors: 2
- Total pull request authors: 6
- Average comments per issue: 0.5
- Average comments per pull request: 0.1
- Merged pull requests: 68
- Bot issues: 0
- Bot pull requests: 24
Past Year
- Issues: 0
- Pull requests: 2
- Average time to close issues: N/A
- Average time to close pull requests: N/A
- Issue authors: 0
- Pull request authors: 1
- Average comments per issue: 0
- Average comments per pull request: 0.0
- Merged pull requests: 0
- Bot issues: 0
- Bot pull requests: 2
Top Authors
Issue Authors
- pbukva (1)
- ejfitzgerald (1)
Pull Request Authors
- jinmannwong (32)
- dependabot[bot] (24)
- n-hutton (15)
- ejfitzgerald (13)
- daeMOn63 (9)
- qati (5)
Top Labels
Issue Labels
Pull Request Labels
Packages
- Total packages: 1
- Total downloads: unknown
- Total dependent packages: 0
- Total dependent repositories: 0
- Total versions: 35
proxy.golang.org: github.com/fetchai/cosmos-consensus
- Documentation: https://pkg.go.dev/github.com/fetchai/cosmos-consensus#section-documentation
- License: other
-
Latest release: v0.32.12
published about 6 years ago
Rankings
Dependencies
- github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d
- github.com/Workiva/go-datastructures v1.0.52
- github.com/btcsuite/btcd v0.20.1-beta
- github.com/btcsuite/btcutil v1.0.2
- github.com/flynn/noise v0.0.0-20180327030543-2492fe189ae6
- github.com/fortytw2/leaktest v1.3.0
- github.com/go-kit/kit v0.10.0
- github.com/go-logfmt/logfmt v0.5.0
- github.com/gogo/protobuf v1.3.1
- github.com/golang/protobuf v1.4.0
- github.com/gorilla/websocket v1.4.2
- github.com/gtank/merlin v0.1.1
- github.com/libp2p/go-buffer-pool v0.0.2
- github.com/magiconair/properties v1.8.1
- github.com/minio/highwayhash v1.0.0
- github.com/pkg/errors v0.9.1
- github.com/prometheus/client_golang v1.5.1
- github.com/rcrowley/go-metrics v0.0.0-20200313005456-10cdbea86bc0
- github.com/rs/cors v1.7.0
- github.com/snikch/goodman v0.0.0-20171125024755-10e37e294daa
- github.com/spf13/cobra v1.0.0
- github.com/spf13/viper v1.6.3
- github.com/stretchr/testify v1.5.1
- github.com/tendermint/go-amino v0.14.1
- github.com/tendermint/tm-db v0.5.1
- golang.org/x/crypto v0.0.0-20200406173513-056763e48d71
- golang.org/x/net v0.0.0-20200324143707-d3edc9973b7e
- google.golang.org/grpc v1.28.1
- 467 dependencies
- 1144 dependencies
- @vuepress/plugin-google-analytics ^1.4.1
- vuepress-theme-cosmos ^1.0.161