Fabric 1.2 Chaincode namespace _foo_f1_ _foo_f2_ _foo_f3_ _bar_b1_

Slides:



Advertisements
Similar presentations
Project idea SUSCHEM BROKERAGE EVENT 2012 Project idea SUSCHEM BROKERAGE EVENT 2012 Please fill in the template and send it back to
Advertisements

(define (f x) (if (< x 0) (lambda (y) (- y x)) (lambda (y) (- x y)))) GE f: P1 para:x body:(if … )
XML Namespaces Each schema file associated with a URL to uniquely identify where elements come from – Like packages in Java
 Ebru is the art of creating colorful patterns by sprinkling and brushing color pigments on a pan of oily water and then transforming this pattern.
1. What number does the following array represent?
Hosted by Mrs. Zettler GCF Mystery LCM Prime Factorization
23-May-15 Polymorphism. 2 Signatures In any programming language, a signature is what distinguishes one function or method from another In C, every function.
CS 4800 By Brandon Andrews.  Specifications  Goals  Applications  Design Steps  Testing.
Impact of Configuration Errors on DNS Robustness Vasileios Pappas, Zhiguo Xu, Songwu Lu, Daniel Massey, Andreas Terzis, Lixia Zhang SIGCOMM 2004 Presented.
1 understanding xml namespaces. 2 understanding namespaces Namespaces are the source of much confusion in XML, especially for those new to the technology.
Fall 2008Programming Development Techniques 1 Topic 18 Environment Model of Evaluation Section 3.2 Acknowledgement: This lecture (and also much of the.
SHARED PREFIX POLICY PROPOSAL FROM LIBERAL STUDIES COMMITTEE 2/10/14.
Project idea SUSCHEM BROKERAGE EVENT 2012 PROJECT TITLE CONTACT [note: fill in this template if you intend to be a project partner. If you intend to be.
Why XML ? Problems with HTML HTML design - HTML is intended for presentation of information as Web pages. - HTML contains a fixed set of markup tags. This.
Teacher: Ms. Olifer MICROSOFT VISUAL STUDIO 2010: PROPERTIES OF WINDOWS FORM OBJECT.
By: Chris Harvey Python Classes. Namespaces A mapping from names to objects Different namespaces have different mappings Namespaces have varying lifetimes.
CS 105 Perl: Data Types Nathan Clement 15 May 2014.
Venn Diagrams Warm-up 1.Out of forty students, 14 are taking English Composition and 29 are taking Chemistry. If five students are in both classes, how.
Creating PHP Pages Chapter 6 PHP Variables, Constants and Operators.
11. Reference Organization Packages. What is reference organization? It is a process that enables us to group classes and interfaces into isolated namespaces.
SCIM Ticket #28 “Clarify the Spec on Multi-Tenancy” Summary for IETF-86 Orlando, March 2013.
C H A P T E R N I N E Logic Programming Part 2 Programming Languages – Principles and Paradigms by Allen Tucker, Robert Noonan.
26 Jul 2007SIDR IETF 69 Chicago Jul Private Address/AS Space Sandra Murphy
What’s the problem? Why is it special? What do we know?
Current Assignments Project 3 has been posted, due next Tuesday. Write a contact manager. Homework 6 will be posted this afternoon and will be due Friday.
XML Namespaces In this first lesson XML Namespaces, you will learn to:
IT 242 Week 7 DQ 2 To purchase this material link 242-Week-7-DQ-2 For more courses visit our website
HYPERLEDGER Fabric - Ledger v1 Data Architecture
SQ19 COLLECTION . SHOWCASING OUR NEW DESIGN COLLECTION EXCLUSIVE TO EUROSA , EXCLUSIVE TO YOU .
Session 2 Basics of PHP.
GOALS Preserve Existing Features New sIX Goals
Graphs Earth Science.
University of Central Florida COP 3330 Object Oriented Programming
Online Safety.
How to design a Windows Forms application
Privacy Enabled Ledger
Maths Unit 6 – Representing Data
Databases A brief introduction….
Hyperledger Fabric Private Data - Collection Types
المجموعة التدريبية الرابعة
Poor Naming Standards.
Hundreds Chart
Namespace Review 21-Nov-18.
Polymorphism 28-Nov-18.
Volcanoes! What is a volcano and why does it form?
Namespace Review 29-Dec-18.
Practical Session 4 Rule of 5 R-value reference Unique pointer
Swedish System Producers, members of FTI Private WMC/ Municipality
Comparing Fractions Name: _____________________________________
Anatomy of a Java Program
Element of Art: Line Principle of Design: Repetition
Chapter 1 Business organizations and their stakeholders
Polymorphism 15-Apr-19.
foo.h #ifndef _FOO #define _FOO template <class T> class foo{
Polymorphism 21-Apr-19.
Comparison of table-based and JSON-based chaincode
= x 2 = = 20 4 x 5 = = 16 4 x 4 = = 18 6 x 3 = = 12 2 x 6 = 12.
WE NEED YOUR HELP!! Producing one or two academic films
Classes and Objects Imran Rashid CTO at ManiWeber Technologies.
Displaying Data from Multiple Tables
C3S3: Other Organizations
Topic 1 Statistical Analysis.
Purpose: how do computers keep our information secret?
History Database - Typical historical query requirements
Hyperledger Fabric NodeSDK
Choice of Public and Private Plan Options
Hyperledger Fabric 소개 및 튜토리얼
Technical proposal Challenges and Opportunities of Private real-state development in Mekelle.
Namespace Review 14-Oct-19.
Maths Unit 5 – Representing Data
Presentation transcript:

Fabric 1.2 Chaincode namespace _foo_f1_ _foo_f2_ _foo_f3_ _bar_b1_ Collection: Marbles Namespaces for public data objectType “foo”. “foo” has three keys f1, f2 and f3. To make keys unique in Chaincode, composite keys are used. The name of an objectType and a key are concatenated. _<objectType name>_<Key name>_ Underscore shows the prefix or separator of composite keys. Namespaces for public data objectType “bar”. m1 m2 m3 Namespaces for private data objectType “Marbles”. “Marbles” has three keys m1, m2 and m3. The name of collection makes this data objectType unique in Chaincode. We don’t need to use composite keys.

proposal Chaincode namespace Collection?: foo Collection?: bar Collection: Marbles f1 f2 f3 b1 b2 b3 m1 m2 m3 Namespaces for public data objectType “foo”. “foo” has three keys f1, f2 and f3. If we have a function like collection for public data, each key become unique without using composite keys. Namespaces for public data objectType “bar”. Namespaces for private data objectType “Marbles”. “Marbles” has three keys m1, m2 and m3. The name of collection makes this data objectType unique in Chaincode. We don’t need to use composite keys.