Giter VIP home page Giter VIP logo

blockchain-samples's Introduction

Blockchain Samples

NOTE that this project contains mainly Fabric v0.6 compatible work. There is a FabricV1 subfolder for early work on a port to the new Hyperledger Fabric, however that work is in early states and is not to be used at this time. Updates to follow.

This project contains samples of blockchain smart contracts and blockchain applications for the Hyperledger fabric.

Purpose:

  • provide sample applications and smart contracts to demonstrate how a Hyperledger blockchain and the Watson IoT platform can work together in a solution
  • demonstrate advanced smart contract features that can be built on the Hyperledger fabric
  • demonstrate patterns that can make complex IoT contracts easier to develop and maintain
  • seed new smart contract development with advanced IoT features and integration into the Watson IoT Platform

Documentation:

Notes:

  • Development of the Hyperledger fabric and related projects has been moved to Gerritt. However, the original location remains as a convenient mirror.
  • The Hyperledger Fabric also has a web site for documentation, which is worth exploring, especially for those who would like to contribute directly to the Hyperledger development effort.
  • Hyperledger on Bluemix is updated periodically, and for compatibility reasons the blockchain-samples project has multiple release levels to line up with fabric versions available in IBM Bluemix.

Smart Contracts in this Repository

  • simple_contract

    The Basic contract is a sample hyperledger blockchain contract that is provided by IBM to help you to get started with blockchain development and integration on the IBM Watson IoT Platform. You can use the Basic contract sample to create a blockchain contract that tracks and stores asset data from a device that is connected to your Watson IoT Platform organization.

  • iot_sample_contract

    This sample contract implements a simple Trade Lane scenario, moving assets from one place to another. It consists of several modules in package main that are all small enough to avoid creating separate packages in this first version. These add features that can be used without changing the code. This sample is used to explore features and patterns that are of interest to smart contract writers in the IoT domain. These are:

      - A single contract instance that manages multiple assets
      - A CRUD-like API for the assets
      - An event that is also a partial state
      - A deep merge of events to state
      - a `JSON Schema 4` compatible schema and a script written in Go that generates object samples and object schemas when `go generate` commands are issued
      - A mechanism for storing asset history (note, this mechanism is early work and will change for better scaling)
      - A mechanism for storing the most recent updates to any asset, most recent first. An asset can appear only once in the list and jumps to the top each time it is updated.
      - An alerts mechanism that tracks active alerts and marks the threshold events as raised or cleared.
      - A rules engine that performs threshold tests (e.g. temperature too high) and raises or clears alerts as necessary (and note that the rules need not be limited to alerts testing etc, they can in fact generate read-only properties directly if need be)
      - A set of map utilities that enable deep merging of incoming JSON events into the state that is stored in the ledger. This is necessary to implement a pattern where a partial state is used as an event.
      - Optional case-insensitivity for JSON tags for the convenience of clients that do not want to be held to the strictness of the JSON-RPC standard (note: insensitivity is not recommended, but can be explored with this sample)
      - A logging facility that can be adjusted in real time in order to debug a deployed contract without disrupting it in any way    
    
  • [PingPong Contract]

    This contract has been derived from the IoT Sample contract. Please read the introductory articles in the docs folder if you are not familiar with how these contracts function.

    This contract adds the ability to send outgoing events from an advanced IoT contract. Three events are registered, as clipped from the code:

    // EVTINVOKEERR is sent out whenever there is an error in the chaincode
    const EVTINVOKEERR = "EVTINVOKEERR"
    
    // EVTPONG is sent out whenever a PING assetID is received
    const EVTPONG = "EVTPONG"
    
    // EVTPING is sent out whenever a PONG assetID is received
    const EVTPING = "EVTPING"

    See the event listener application README and code to understand how the client registers interest in specific events and then catches them in a gRPB stream (modeled in Go as channels).

  • aviation_sample_contract

    The aviation scenario is as follows:

      - Three primary asset classes:
    
          - Airline -- owns zero to many aircraft
          - Aircraft -- encompasses zero ro many assemblies
          - Assembly -- landing gear, wing, etc. These are life limited parts.
    
      - The CRUD features for each asset are abstracted in the module [assetCommon.go](./assetCommon.go), which makes heavy use of abstracted services in [crudCommon.go](./crudCommon.go)  
      - each asset follows the *partial state as event* pattern, where the asset's writable properties make up its primary `event` to be passed to create and update
      - additional events exist for:
    
          - flights that record a takeoff and landing sequence, which is known as a cycle
          - inspections against an assembly
          - analyticAdjustment events record calculated changes in wear and tear based on such analytics as weather patterns and runway conditions
          - maintenance events record the mounting and unmounting of assemblies with a full state machine
    
      - rules exist to track cycles and hard landings
    
          - ACHECK rule compares adjusted (by analytics) cycle counters to a dynamically configurable threshold, raising an alert as necessary, typically short time
          - BCHECK rule compares adjusted (by analytics) cycle counters to a dynamically configurable threshold, raising an alert as necessary, typically long time
          - HARDLANDING rule raises an alert when a hard landing is known to have occured
          
      - inspection events clear these alerts, note that bcheck clears both acheck and bcheck alerts
    
      > Note that the usual common properties such as geolocation, extension, etc. are available in the `common` subsection of asset event and state.
    
      Physical changes from the Generic IoT Contract include:
    
      - Three assets tracked with full CRUD APIs: airline, aircraft, assembly
      - Four event types handled with event APIs: flight, maintenance, inspection, analyticAdjustment
      - 2-way inverted index maintains 1 to many relationship from aircraft to assemblies
      - filters allow sophisticated queries and offer lightweight relationships between asset classes
    
          - a filter is a match type (all, any, none) and an array of k:v pairs with qualified property names and values
    
      - contractConfig module supports static and dynamic configuration of contract
      - new common layer for quick addition of a new asset class
      - new common layer to support crud operations
      - rules for acheck and bcheck (short and long term inspection cycles) and hard landing alerts 
    
  • cashMachine

  • building

  • Parking Meter Demo

    The Parking meter is FRDM-K64 and Cordio Boards combined. The FRDM board acts as the meter and the cordio acts as the BLE Beacon. The beacon transmits short urls in Eddystone standard and this points to the bluemix page https://mbed-parkingmeter.mybluemix.net. This page supports pakring meters PKM-001 through PKM-010. The code for the UI is inside mbedParkingMeterUI.

    The UI makes a call to the IBM commerce system to initiate payment and the chaincode (code availalbe in mbedParkingMeter / mbedParkingMeter.0.6) for recording parking meter usage data.

    It makes http calls to the node-red flow - NodeFlow.json -for setting the Parking meter to free (beacon stops emitting, UI says 'Free Parking') or paid (beacon starts emitting, UI says 'Paid parking') and also initiating the countdown once payment is made.

  • Carbon Trading Demo

  • Logistics Split

blockchain-samples's People

Contributors

alexmnguyen avatar ashleytate614 avatar hnorlen avatar kchalla123 avatar kletkeman avatar maeveoreilly avatar michellepurcell avatar sumanair avatar sumapnair-ibm avatar

Watchers

 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.