Next Hyperledger Fabric Developer Community call - Thursday July 11th - 4pm UTC (5pm UK, 12pm ET, 9am PT)
Paul O'Mahoney <mahoney@...>
dear Fabric developer,
the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is scheduled for this Thursday July 11th @ 4pm UTC (5pm UK, 12pm ET, 9am PT). The latest agenda is posted here -> https://wiki.hyperledger.org/display/fabric/Meeting+Agendas%3A+Community+Call This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer (feel free to make suggestions !). - to foster more interest, best practices etc in developing with Hyperledger Fabric. - grow the Fabric developer ecosystem - opportunity to ask questions of the Fabric team eg. eg feedback/questions on your experiences developing with Fabric, using particular features etc. - share stuff with the community, eg sample code / tutorials/blogs/snippets that others may be interested in If you wish to share content on the call, just let me know via email direct or DM me on Rocketchat (Rocketchat ID: mahoney1 or rthatcher) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community More information can be found on the community page -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+Community+Calls You can get calendar invites (eg iCal) here many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead - Hyperledger Fabric Developer RocketChat: mahoney1 mahoney@... Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Reminder: Next Hyperledger Fabric Developer Community call - Thursday June 27th - 4pm UTC (5pm UK, 12pm ET, 9am PT)
Paul O'Mahoney <mahoney@...>
dear Fabric developer, the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is scheduled for this Thursday June 27th @ 4pm UTC (5pm UK, 12pm ET, 9am PT). The latest agenda is posted here -> https://wiki.hyperledger.org/display/fabric/Meeting+Agendas%3A+Community+Call This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer (feel free to make suggestions !). - to foster more interest, best practices etc in developing with Hyperledger Fabric. - grow the Fabric developer ecosystem - opportunity to ask questions of the Fabric team eg. eg feedback/questions on your experiences developing with Fabric, using particular features etc. - share stuff with the community, eg sample code / tutorials/blogs/snippets that others may be interested in If you wish to share content on the call, just let me know via email direct or DM me on Rocketchat (Rocketchat ID: mahoney1 or rthatcher) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community More information can be found on the community page -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+Community+Calls many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead - Hyperledger Fabric Developer RocketChat: mahoney1 mahoney@... Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Next Hyperledger Fabric Developer Community call - Thursday June 13th - 4pm UTC (5pm UK, 12pm ET, 9am PT)
Paul O'Mahoney <mahoney@...>
dear Fabric developer, the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is scheduled for this Thursday June 13th @ 4pm UTC (5pm UK, 12pm ET, 9am PT). The latest agenda is posted here -> https://wiki.hyperledger.org/display/fabric/Meeting+Agendas%3A+Community+Call This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer (feel free to make suggestions !). - to foster more interest, best practices etc in developing with Hyperledger Fabric. - grow the Fabric developer ecosystem - opportunity to ask questions of the Fabric team eg. eg feedback/questions on your experiences developing with Fabric, using particular features etc. - share stuff with the community, eg sample code / tutorials/blogs/snippets that others may be interested in If you wish to share content on the call, just let me know via email direct or DM me on Rocketchat (Rocketchat ID: mahoney1 or rthatcher) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community More information can be found on the community page -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+Community+Calls many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead - Hyperledger Fabric Developer RocketChat: mahoney1 mahoney@... Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
composer rest server - How to get the block chain models into the custom models (common/models)
umrb2010@...
We are customizing the composer rest server.
For this we added few custom models to common/models. From this custom model trying to get the Block Chain model The block chain models are empty in custom model. However the block chain models are coming into boot.js. Is there any way that we can retrieve the block chain models into common/models? server/root/boot.js - ------------------------- module.exports = function(app) {
//console.log(app);
var modelNames = Object.keys(app.models);
var models = [];
modelNames.forEach(function(m) {
var modelName = app.models[m].modelName;
if (models.indexOf(modelName) === -1) {
models.push(modelName);
}
});
common/models/ --------------------------- var loopback = require('loopback');
var app = loopback(); //getting app object
var modelNames = Object.keys(app.models);
var models = [];
modelNames.forEach(function(m) {
var modelName = app.models[m].modelName;
if (models.indexOf(modelName) === -1) {
models.push(modelName);
}
});
Thank you!
|
|
Upcoming Event: Hyperledger Composer Quarterly Update Due #tsc-project-update - Thu, 05/30/2019
#tsc-project-update
#cal-reminder
composer@lists.hyperledger.org Calendar <composer@...>
Reminder: Hyperledger Composer Quarterly Update Due #tsc-project-update When: Thursday, 30 May 2019 Organizer: community-architects@... Description: The Hyperledger Composer update to the TSC is due 27 May, 2019. Please be sure that someone from the community completes the update and is available to present it to the TSC on 30 May, 2019.
|
|
Re: Composer asset usage
Bob <dillbob@...>
In composer, you would identify an item of type Array. This allows you to let it hold any number of items. You can do the same thing by identifying Item as a string and then putting an arbitrarily long JSON string in it holding all of the items.
On Fri, May 10, 2019 at 3:27 AM <Wongkwokfai8888@...> wrote: I am working on a project on supply chain where I am using composer to generate. --
Bob Dill
|
|
Composer asset usage
Wongkwokfai8888@...
I am working on a project on supply chain where I am using composer to generate.
however I have a fundemental question that needs help. On creating a smart contract like a purchase order there are many items, whereas in composer do I need to create each one by one as an asset. This is very tedious, there must be a smarter way ? Appreciate any help. or is there any alternatives ways when handling transactions like sales orders in the block chain via composer ? Many transactions have a lot of items (items) to be sold. Thereby how to record in the ledger ? regards michael
|
|
Next Hyperledger Fabric Developer Community call - Thursday May 2nd - 4pm UTC (5pm UK, 12pm ET, 9am PT)
Paul O'Mahoney <mahoney@...>
dear Fabric developer,
the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is scheduled for this Thursday May 2nd @ 4pm UTC (5pm UK, 12pm ET, 9am PT). The latest agenda is posted here -> https://wiki.hyperledger.org/display/fabric/Meeting+Agendas%3A+Community+Call This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer (feel free to make suggestions !). - to foster more interest, best practices etc in developing with Hyperledger Fabric. - grow the Fabric developer ecosystem - opportunity to ask questions of the Fabric team eg. you may have feedback/questions on your experiences developing with Fabric, using particular features etc. - to share stuff you've done with the community, eg sample code / sample use cases that others may be interested in If you wish to share content on the call, just let me know via email direct or DM me on Rocketchat (ID: mahoney1) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community More information can be found on the community page -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+Community+Calls many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead - Hyperledger Fabric Developer RocketChat: mahoney1 mahoney@... Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Next Hyperledger Fabric Developer Community call - Thursday April 4th - 4pm UTC (5pm UK, 12pm ET, 9am PT)
Paul O'Mahoney <mahoney@...>
dear Fabric developer,
the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is scheduled for this Thursday April 4th @ 4pm UTC (5pm UK, 12pm ET, 9am PT). The latest agenda is posted here -> https://wiki.hyperledger.org/display/fabric/Meeting+Agendas%3A+Community+Call This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer (feel free to make suggestions !). - to foster more interest, best practices etc in developing with Hyperledger Fabric. - grow the Fabric developer ecosystem - opportunity to ask questions of the Fabric team eg. you may have feedback/questions on your experiences developing with Fabric, using particular features etc. - to share stuff you've done with the community, eg sample code / sample use cases that others may be interested in If you wish to share content on a call, just let me know via email direct or DM me on Rocketchat (ID: mahoney1) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes\x The Zoom webconference ID is https://zoom.us/my/hyperledger.community More information can be found on the community page -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+Community+Calls many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead - Hyperledger Fabric Developer RocketChat: mahoney1 Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Is there any PoC for EKYC and Wallets on top of Hypeledger Composer?
hassan@...
Dear All,
My name is Hassan, and I'm building the first BaaS provider in Egypt. I would love to use the Hyperledger network to build 2 solutions related to Identity Management (Electronic Know Your Customer) EKYC, and Building Digital Wallets for different purposes, and wanted to know if there's any PoC that's already built regarding any of those 2 use cases? Thank you! Hassan
|
|
Next Hyperledger Fabric Developer Community call - Thursday March 21st 5pm UTC (5pm UK, 12pm ET, 9am PT)
Paul O'Mahoney <mahoney@...>
dear Fabric developer,
the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is scheduled for this Thursday March 21st 5pm UTC (5pm UK, 12pm ET, 9am PT). The latest agenda is posted here -> https://wiki.hyperledger.org/display/fabric/Meeting+Agendas%3A+Community+Call This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer (feel free to make suggestions !). - to foster more interest, best practices etc in developing with Hyperledger Fabric. - grow the Fabric developer ecosystem - opportunity to ask questions of the Fabric team eg. you may have feedback/questions on your experiences developing with Fabric, using particular features etc. - to share stuff you've done with the community, eg sample code / sample use cases that others may be interested in If you wish to share content on a call, just let me know via email direct or DM me on Rocketchat (ID: mahoney1) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community More information can be found on the community page -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+Community+Calls many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead - Hyperledger Fabric Developer RocketChat: mahoney1 Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Re: Regarding Implement Hyperledger blockchain in our project.
Alberto Venturini <aventurini@...>
Hi Nilesh, I would just start with the Composer tutorials (https://hyperledger.github.io/composer/latest/tutorials/tutorials.html). I used these tutorials a few months ago when starting off with Composer, and I have found them quite helpful. Also, be aware that Hyperledger Composer has been put on hold a few months ago (see e.g. https://hackernoon.com/hyperledger-composer-has-been-put-on-pause-what-are-your-options-now-dfc3a97a6308.) If you are new to blockchain and Hyperledger, my advice would be to have a look at Composer, and perhaps build a proof of concept or a first project iteration with it. Composer does hide away some of the complexities of Fabric, so it should be easier to start with. But I'd refrain from building a production system with Composer. Also, if you use Composer, sooner or later you will also need to learn how Fabric works - especially when you want to deploy your Composer project onto a non-trivial Fabric network. In order to learn about Fabric, I would start with one of the whitepapers, e.g. https://arxiv.org/pdf/1801.10228.pdf.
On Fri, 15 Mar 2019 at 08:40, Nilesh Bhoskar <BB10184450@...> wrote: Hello Team,
|
|
Regarding Implement Hyperledger blockchain in our project.
Nilesh Bhoskar <BB10184450@...>
Hello Team,
Our organization is planing to implement Hyperledger-Composer Blockchain in one of our project, so we want to know how efficiently we can implement Blockchain in our project? and what are steps to implement it? Thanks & Regards Nilesh Bhoskar
|
|
Next Hyperledger Fabric Developer: Community call planned this Thursday - March 7th 5pm UTC (5pm UK, 12pm ET, 9am PT)
mahoney@...
dear Fabric developer,
just letting you know the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is currently scheduled for Thursday March 7th 5pm UTC (5pm UK, 12pm ET, 9am PT). The draft agenda is posted here (currently being updated) -> https://wiki.hyperledger.org/display/fabric/Meeting+Agendas%3A+Community+Call This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer (feel free to make suggestions !). - to foster more interest, best practices etc in developing with Hyperledger Fabric. - grow the Fabric developer ecosystem - opportunity to ask questions of the Fabric team eg. you may have feedback/questions on your experiences developing with Fabric, using particular features etc. - to share stuff you've done with the community, eg sample code / sample use cases that others may be interested in If you wish to share content on a call, just let me know via email direct or DM me on Rocketchat (ID: mahoney1) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community More information can be found on the community page -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+Community+Calls many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead Fabric Developer RocketChat: mahoney1 Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Next Hyperledger Fabric Developer: Community call planned this Thursday 21st February 5pm UTC
Paul O'Mahoney <mahoney@...>
dear Fabric developer,
just letting you know the next "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) is currently scheduled for Thursday February 21st 5pm UTC (5pm UK, 12pm ET, 9am PT). This community call is held bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer - to foster more interest, best practices etc in developing with Hyperledger Fabric. - opportunity to ask questions of the Fabric team eg. you may have feedback/questions on your experiences developing with Fabric - to share stuff you've done with the community, eg sample code / sample use cases that others may be interested in If you wish to share content on a call, just let me know via email direct or DM me on Rocketchat (ID: mahoney1) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community and the aim is to grow interest in the Fabric developer ecosystem (this 'Fabric Developer' call clearly has a much broader scope as indicated - feel free to make suggestions too !). Agendas (currently being updated) are shown here -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+-+Meeting+Agendas+ many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead Fabric Developer RocketChat: mahoney1 Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Sawtooth compatibility with hyperledger composer
Satyam Mishra <satyam.mishra975@...>
Hi, I am new to this, just wanted to know does hyperledger composer supports sawtooth. Thanks.
|
|
Hyperledger Fabric Developer: Community call starts this Thursday 7th February 5pm UTC
Paul O'Mahoney <mahoney@...>
dear Fabric developer,
just letting you know about the "Hyperledger Fabric Developer" community call (lasts approx 30-60 mins) currently scheduled for Thursday February 7th 5pm UTC (5pm UK, 12pm ET, 9am PT). The plan is to initially host this community call bi-weekly via Zoom webconference and is aimed at : - helping the worldwide Fabric Developer community grow in their development journey (eg. developing applications, smart contracts, chaincode, developing clients, using the SDK etc - eg. whether its NodeJS, Java, Go etc etc) - caters for the developer perspective and the developer community. - help developers understand / hear more about exciting new things in Fabric,eg. features upcoming or work in progress - ie things that appeal to the developer - to foster more interest, best practices etc in developing with Hyperledger Fabric. - opportunity to ask questions of the Fabric team eg. you may have feedback/questions on your experiences developing with Fabric - to share stuff you've done with the community, eg sample code / sample use cases that others may be interested in If you wish to share content on a call, just let me know via email direct or DM me on Rocketchat (ID: mahoney1) and I'll put an item on the agenda. Provide the following: - the topic (state whether its presentation, or demo etc) - the full name of the presenter, and - approx length of your pitch in minutes The Zoom webconference ID is https://zoom.us/my/hyperledger.community and the aim is to grow interest in the Fabric developer ecosystem (this 'Fabric Developer' call clearly has a much broader scope as indicated - feel free to make suggestions too !). The current agenda is shown here -> https://wiki.hyperledger.org/display/fabric/Fabric+Developer+-+Meeting+Agendas+ many thanks for your time - feel free to forward this email if you think it is of interest to a colleague. Paul O'Mahony Community Lead Fabric Developer Unless stated otherwise above: IBM United Kingdom Limited - Registered in England and Wales with number 741598. Registered office: PO Box 41, North Harbour, Portsmouth, Hampshire PO6 3AU
|
|
Hyperledger Composer Quarterly Update Due #tsc-project-update - Thu, 01/31/2019
#tsc-project-update
#cal-reminder
composer@lists.hyperledger.org Calendar <composer@...>
Reminder: When: Organizer: Description:
|
|
Error getting the participant registry when running tests
aventurini@...
Hi all, I am setting up some unit tests for my Composer business network and I am running into an error. I'm pretty much following the same test setup as the sample networks (https://github.com/hyperledger/composer-sample-networks/blob/master/packages/vehicle-manufacture-network/test/script.js) I'm trying to get the participant registry in the beforeEach function: const participantRegistry = await businessNetworkDefinition.getParticipantRegistry(namespace); and running into the following error message: Error: Object with ID 'Participant:<my namespace>' in collection with ID '$sysregistries' does not exist Does anyone have a clue as to why I would be getting this error? The reason I am trying to get the participant registry is that I have some assets which hold a reference to participant objects, and I would like to test that my transaction creates assets that have appropriate participant references. Thank you, Alberto
|
|
Reminder: Join us Hyperledger Global Forum, Basel Switzerland - 5 Days Left before tickets rates go up + discounts
Daniela Barbosa <dbarbosa@...>
Apologies for the cross-posting, want to make sure everyone is aware of the deadlines coming up for Hyperledger Global Forum. I am sure you are starting to hear the buzz out there in the community, we are certainly feeling it. For the first time, the global Hyperledger community from 350+ organizations will converge to collaborate and hack together in person. With over 75 sessions and activities for business and technical audiences including 1/2 and full day training and workshops, there will certainly be a plethora of learning and networking opportunities for everyone. Need more information on why you should attend? Here is a two-page overview of the event and a sample letter to convince your boss, if they still need convincing! Thanks and hopefully we will see you in Basel! Daniela Barbosa
VP of World Wide Alliances, HyperledgerMobile/Text: 650.296.6969
The Linux Foundation
|
|