All Projects → qlcchain → Go Qlc

qlcchain / Go Qlc

Licence: mit
Official Go implementation of the QLC Chain protocol.

Programming Languages

go
31211 projects - #10 most used programming language

Projects that are alternatives of or similar to Go Qlc

Iroha
Iroha - A simple, decentralized ledger
Stars: ✭ 1,015 (+2014.58%)
Mutual labels:  blockchain
Eos Mainnet
Ansible repo for setting up an EOS RPC API node and syncing to the mainnet
Stars: ✭ 45 (-6.25%)
Mutual labels:  blockchain
Golkadot
Polkadot Substrate implementation in Go (WIP)
Stars: ✭ 48 (+0%)
Mutual labels:  blockchain
Zerodollarhomepage
A decentralized ad server running on the blockchain
Stars: ✭ 43 (-10.42%)
Mutual labels:  blockchain
Halocoin
Experimental cryptocurrency (blockchain) written in python.
Stars: ✭ 44 (-8.33%)
Mutual labels:  blockchain
Dbfs
Distributed Blockchain-based File Storage 📡
Stars: ✭ 45 (-6.25%)
Mutual labels:  blockchain
Ulord Sidechain
Ulord-Sidechain is a Secondary chain for Ulord implemented in Java, uses USC protocol
Stars: ✭ 42 (-12.5%)
Mutual labels:  blockchain
Javascript Cli
A CLI in JavaScript for the ARK Blockchain.
Stars: ✭ 48 (+0%)
Mutual labels:  blockchain
Engine And Editor
Streamr Core backend
Stars: ✭ 44 (-8.33%)
Mutual labels:  blockchain
Ethdroid
Easy-to-use Ethereum Geth wrapper for Android
Stars: ✭ 47 (-2.08%)
Mutual labels:  blockchain
Blockchaindemo
A simple demo for Blockchain in Swift
Stars: ✭ 44 (-8.33%)
Mutual labels:  blockchain
Learn Solidity
Code base for "Learn Solidity: Programming Language for Ethereum Smart Contracts" course in Tosh Academy & Blockchain Council
Stars: ✭ 44 (-8.33%)
Mutual labels:  blockchain
Sebak
SEBAK, the next BOScoin Blockchain
Stars: ✭ 46 (-4.17%)
Mutual labels:  blockchain
Pycoinbin
Python Wrapper for coinbin.org
Stars: ✭ 43 (-10.42%)
Mutual labels:  blockchain
Min
Min: Crypto Token for Beautiful and Secure Code
Stars: ✭ 48 (+0%)
Mutual labels:  blockchain
Clearchain
Cosmos app for clearing and settlements
Stars: ✭ 42 (-12.5%)
Mutual labels:  blockchain
Mortgageblockchainfabric
Mortgage Processing App using Hyperledger Fabric Blockchain. Uses channels for privacy and access, and restricts read/write previleges through endorsement policies
Stars: ✭ 45 (-6.25%)
Mutual labels:  blockchain
Jabci
Java implementation of the Tendermint ABCI
Stars: ✭ 48 (+0%)
Mutual labels:  blockchain
Py Abci
Python based ABCI Server for Tendermint
Stars: ✭ 48 (+0%)
Mutual labels:  blockchain
Exonum
An extensible open-source framework for creating private/permissioned blockchain applications
Stars: ✭ 1,037 (+2060.42%)
Mutual labels:  blockchain
Logo

Actions Status codecov


QLC Chain is a next generation public blockchain designed for the NaaS. It deploys a multidimensional Block Lattice architecture and uses virtual machines (VM) to manage and support integrated Smart Contract functionality. Additionally, QLC Chain utilizes dual consensus: Delegated Proof of Stake (DPoS), and Shannon Consensus, which is a novel consensus developed by the QLC Chain team. Through the use of this dual consensus protocol, QLC Chain is able to deliver a high number of transactions per second (TPS), massive scalability and an inherently decentralized environment for NaaS related decentralized applications (dApp). The framework of QLC Chain will enable everyone to operate network services and benefit from it.

Network-as-a-Service (NaaS) is sometimes listed as a separate cloud provider along with Infrastructure- as-a-Service (IaaS), Platform-as-a-Service (PaaS), and Software-as-a-Service (SaaS). This factors out networking, firewalls, related security, etc.

NaaS can include flexible and extended Virtual Private Network (VPN), bandwidth on demand, custom routing, multicast protocols, security firewall, intrusion detection and prevention, Wide Area Network (WAN), content addressing and filtering, and antivirus.


Key Features

  • Multidimensional Block Lattice Structure
  • QLC Chain Smart Contract
  • Dual Consensus Protocol

    For more information, see YellowPaper.

Build and Run

make clean build
./gqlc

Docker

You can build the docker image yourself or download it from docker hub

Build docker images

cd docker
./build.sh

Download docker images from docker hub

docker pull qlcchain/go-qlc:latest

Start docker container

You can choose to run a normal node without an account or run an account node.

Run a normal node without an account

docker container run -d --name go-qlc \
    -p 9734:9734 \
    -p 127.0.0.1:9735:9735 \
    -p 127.0.0.1:9736:9736 \
    qlcchain/go-qlc:latest

Run an account node

You only need to assign a value to the environment variable seed to run the account node

docker container run -d --name go-qlc \
    -p 9734:9734 \
    -p 127.0.0.1:9735:9735 \
    -p 127.0.0.1:9736:9736 \
    qlcchain/go-qlc:latest --seed=B4F6494E3DD8A036EFF547C0293055B2A0644605DE4D9AC91B45343CD0E0E559

Run node by Docker Compose

  • create docker-compose.yml

    version: "3.5"
    
    services:
        qlcchain_node:
            image: qlcchain/go-qlc:${version}
            container_name: qlcchain_node
            command: ["--configParams=rpc.rpcEnabled=true", "--seed=B4F6494E3DD8A036EFF547C0293055B2A0644605DE4D9AC91B45343CD0E0E559"]
            ports:
                - "9734:9734"
                - "9735:9735"
                - "127.0.0.1:9736:9736"
            networks:
                - qlcchain
            volumes:
                - type: bind
                    source: ./data/
                    target: /qlcchain/.gqlcchain/
            restart: unless-stopped
    
    networks:
        qlcchain:
            name: qlcchain
    
    
  • run

    docker-compose down -v && docker-compose up -d
    

Contributions

We love reaching out to the open-source community and are open to accepting issues and pull-requests.

For all code contributions, please ensure they adhere as close as possible to the contributing guidelines

If you...

  1. love the work we are doing,
  2. want to work full-time with us,
  3. or are interested in getting paid for working on open-source projects

... we're hiring.

To grab our attention, just make a PR and start contributing.

Links & Resources

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].