All Projects → eeonevision → anychaindb

eeonevision / anychaindb

Licence: Apache-2.0 license
AnychainDB is fast, distributed, blockchain database based on Tendermint and MongoDB

Programming Languages

go
31211 projects - #10 most used programming language
Dockerfile
14818 projects
shell
77523 projects
Makefile
30231 projects

Projects that are alternatives of or similar to anychaindb

Abci Host
Clojure host/server for Tendermint's ABCI protocol.
Stars: ✭ 18 (+12.5%)
Mutual labels:  consensus, tendermint
lightchain
Fast proof-of-authority blockchain based on go-ethereum and tendermint
Stars: ✭ 52 (+225%)
Mutual labels:  consensus, tendermint
go-cita
A Go implementation of CITA. https://docs.nervos.org/cita
Stars: ✭ 25 (+56.25%)
Mutual labels:  consensus, tendermint
Ethermint Archive
Ethereum on Tendermint using Cosmos-SDK!
Stars: ✭ 667 (+4068.75%)
Mutual labels:  consensus, tendermint
kcoin
A stable cryptocurrency that algorithmically targets $1 USD using the Kowala Protocol
Stars: ✭ 17 (+6.25%)
Mutual labels:  consensus, tendermint
terra-rust
Rust <-> Terrad API via LCD service
Stars: ✭ 31 (+93.75%)
Mutual labels:  tendermint
boki
Boki: Stateful Serverless Computing with Shared Logs [SOSP '21]
Stars: ✭ 39 (+143.75%)
Mutual labels:  consensus
SecretNetwork
𝕊 The Secret Network
Stars: ✭ 466 (+2812.5%)
Mutual labels:  tendermint
raft-badger
Badger-based backend for Hashicorp's raft package
Stars: ✭ 27 (+68.75%)
Mutual labels:  consensus
BankBox
ColoredCoins desktop wallet application for digital currency issuance and management.
Stars: ✭ 60 (+275%)
Mutual labels:  consensus
paxakos
Rust implementation of Paxos consensus algorithm
Stars: ✭ 79 (+393.75%)
Mutual labels:  consensus
ostracon
Ostracon, a consensus algorithm, is forked from Tendermint Core. We have added VRF to Tendermint BFT. It adds randomness to PoS Validator elections and improves security.
Stars: ✭ 60 (+275%)
Mutual labels:  tendermint
paxos-rs
Paxos implementation in Rust
Stars: ✭ 66 (+312.5%)
Mutual labels:  consensus
minority
Ethereum 2.0 node multiplexer between consensus and execution
Stars: ✭ 94 (+487.5%)
Mutual labels:  consensus
vrrm
rough code for running consensus
Stars: ✭ 18 (+12.5%)
Mutual labels:  consensus
gttc
Official Go implementation of maro (TTC), A Decentralized and Incentivized Social Networking Protocol
Stars: ✭ 117 (+631.25%)
Mutual labels:  consensus
openraft
rust raft with improvements
Stars: ✭ 826 (+5062.5%)
Mutual labels:  consensus
robotarium-rendezvous-RSSDOA
This repository contains the Matlab source codes (to use in Robotarium platform) of various rendezvous controllers for consensus control in a multi-agent / multi-robot system.
Stars: ✭ 35 (+118.75%)
Mutual labels:  consensus
testnet deploy
Deployment scripts and monitoring configuration for a Cosmos Validator setup
Stars: ✭ 19 (+18.75%)
Mutual labels:  tendermint
tm-proposer-idris
Formalization of Tendermint proposer election properties
Stars: ✭ 15 (-6.25%)
Mutual labels:  tendermint

anychaindb logo

AnychainDB is distributed blockchain database suitables for any purposes.

Build Status Go Report Card License PRs Welcome

Features

  • Blazing fast. The performance for data writing/reading is above of 2000 tx/s
  • MongoDB full-text search queries
  • Secure and private. AnychainDB allows to keep any kind of data in two ways: open public and ECDH encrypted private
  • Easy to deploy and use. Developed REST-API (see link in additional docs)
  • Clean, documented and tested code

Installation

Officially AnychainDB provides the easiest way of installation using docker and docker-compose tools.

Prerequirements

Installed docker ver. 17+ and docker-compose tools. Good manual are this and this

Choose your type of node

AnychainDB has two type of nodes:

  • Validator node can validate transactions, configured once and need have better hardware than non-validator nodes.
  • Non-validator node keeps the state and sends the transactions to validator nodes. The can be ease connected to the network because this type is not validates transaction.

Configure network

If you want to connect to existing network, then all you need is genesis.json and config.toml files from the ran network. Place in to config folder and follow to the next section. Configure a new network is little more sophisticated. Firstly you need to generate new config for validator node. Best way is use command from tendermint: tendermint init. It creates all required configuration files for validator node (config.toml, genesis.json, node_key.json and priv_validator.json).

Examples of network configs placed here.

Deploy network

Deploy a network with the shell script:

sh deploy.sh --type=${JOB_TYPE} --node_ip=${NODE_IP} --config=${CONFIG_PATH}

Parameters:

  • type - type of job for script. You can choose from node, node-dev, update, update-dev, clean types
  • node_ip - ip address of node. Default script uses dig with OpenDNS as resolver. Example: 127.0.0.1
  • config - full path to config folder. Example: /home/ubuntu/CONFIG_FOLDER
  • clean_all - clean all cache and reset anychaindb state. Default: true
  • db_port - port for communication with MongoDB container. Default: 27017
  • p2p_port - port for communication between nodes. Default: 26656
  • grpc_port - port for RPC client. Default: 26657
  • abci_port - port for ABCI application. Default: 26658
  • api_port - port for AnychainDB REST API. Default: 26659
  • node_args - additional arguments for node. If you connect to existing network, you maybe need to set boot nodes addresses, like: --node_args="--p2p.persistent_peers=id@host:port"

By default script creates AnychainDB directory in home folder of user, where keeps all data from state. Do not remove it. You may change it by setting another value in ${DATA_ROOT} script variable.

Built With

  • MongoDB - the high-performable database with full-text search
  • Tendermint - the heart of blockchain platform
  • Docker - all components of platform wrapps in containers for fast deploy and ease to use
  • MsgPack - transport between messages in platform
  • Golang - fast and beautiful language

Additional docs

Contributing

Project is opensource and open for contributors and maintainers. You are welcome to do any positive changes in project :)

License

Apache 2.0

License

FOSSA Status

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].