GithubHelp home page GithubHelp logo

mangosgoo / flowchain-ledger Goto Github PK

View Code? Open in Web Editor NEW

This project forked from flowchain/flowchain-ledger

0.0 0.0 0.0 500 KB

A distributed ledger for the p2p and decentralized IoT devices in JavaScript.

Home Page: https://flowchain.co

License: MIT License

Shell 0.64% JavaScript 99.28% Makefile 0.08%

flowchain-ledger's Introduction

flowchain-ledger

Flowchain distributed ledgers in JavaScript

Build Status

Flowchain-ledger is a distributed ledger technology (DLT) for the Internet of Things (IoT) devices (aka. IoT Blockchain). The Flowchain software framework is designed from the ground up to fit current IoT needs.

This is the official Flowchain distributed ledger library, which provides the following APIs:

  • Create data transactions
  • Submit data transactions

About Flowchain

Flowchain is a software framework for the IoT blockchain to provide a distributed ledger programming framework for peer-to-peer IoT networks and real-time data transactions, and flowchain-ledger is the Node.js distribution for heterogeneous hardware devices, such as MediaTek LinkIt Smart 7688, Raspberry Pi, laptops, smart phones and etc.

Abstract

Flowchain aims to implement a blockchain that can provide near real-time transactions for the IoT. The Flowchain technology can ensure chunked data (data streams) transactions by using the virtual blocks concept which is proposed by Flowchain acamedic papers. The virtual blocks can be combined with emerging public blockchains, such as Ethereum and Hyperledger which is optimized specifically for the use case of off-chain transactions. If you need such "Hybrid Blockchain" network for the IoT, please refer to flowchain-hybrid.

The FlowchainCoin (symbol: FLC) is the Ethereum ERC20 token for tokenized assets that use in the Flowchain network. Tokens offer can support the transfer of assets from one trusted party to another.

Features

  • Mining-based Proof-of-Stake (PoS)
  • Run on every IoT node
  • RPC over the Websocket protocol
  • Distributed Hash Table (DHT) by the Chord protocol
  • The device server in Web of Things (WoT) architecture

Prerequisite

Getting started

Install the Flowchain distributed ledger via npm.

npm install flowchain.js

Create the boot.js file and use the flowchain.js library to submit a data transaction.

var PeerNode = require('flowchain.js').PeerNode;
var node = new PeerNode();;
node.submit(data);

Please use flowchain-hybrid which is the blockchain application built on flowchain-ledger.

Install via Github

You can also download this repo.

$ git clone https://github.com/flowchain/flowchain-ledger.git
$ cd flowchain-ledger
$ npm install

Configuration

$ export HOST=192.168.1.1
$ export PORT=8000
$ node boot.js

The boot node is now running at the address 192.168.1.1:8000. Please modify the IP address and listening port number to match your own environment. Subsequently, to start a peer node and join the boot node:

$ export HOST=192.168.1.2           ; Peer Node (My IP address)
$ export PORT=8001                  ; Peer Node (My listening port)
$ export PEER_ADDR=192.168.1.1      ; Boot Node (The node intend to join)
$ export PEER_PORT=8000             ; Boot Node (The node intend to join)
$ node peer.js                      ; Start the new peer node

The new peer node will run at the address 192.168.1.2:8001, and subsequently join the boot node at the address 192.168.1.1:8000. The peer node will intend to join the p2p network. Furthuremore, you can start another peer node and join the p2p network through the boot node or one of the peer nodes. For example, to start another peer node and join the peer node at 192.168.1.2:8001:

$ export HOST=192.168.1.2
$ export HOST=8002
$ export PEER_ADDR=192.168.1.2
$ export PEER_PORT=8001
$ node peer.js

Publication

Presentation

Bibliography

This work is based on the research papers.

[1] Chen, J. (2017). Flowchain: A Distributed Ledger Designed for Peer-to-Peer IoT Networks and Real-time Data Transactions. In: 2nd International Workshop on Linked Data and Distributed Ledgers. Portoroz.

[2] Chen, J. (2017). Devify: Decentralized Internet of Things Software Framework for a Peer-to-Peer and Interoperable IoT Device In: Advances in IoT Architecture and Systems. Toronto, Canada.

How to Cite

@article{flowchain_2017,
title={Flowchain: A Distributed Ledger Designed for Peer-to-Peer IoT Networks and Real-time Data Transactions},
journal={Proceedings of the 2nd International Workshop on Linked Data and Distributed Ledgers (LDDL2)},
author={Chen, Jollen},
year={2017}
},

@article{devify_2017,
title={Devify: Decentralized Internet of Things Software Framework for a Peer-to-Peer and Interoperable IoT Device},
journal={Proceedings of the Workshop on Advances in IoT Architecture and Systems (AIoTAS2017)},
author={Chen, Jollen},
year={2017}
},

License

Copyright (C) 2016-present Jollen. The source code is licensed under the MIT license found in the LICENSE file.

flowchain-ledger's People

Contributors

jollen avatar dependabot[bot] avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.