/* Copyright IBM Corp. 2017 All Rights Reserved. Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License. */ syntax = "proto3"; package protos; option java_package = "org.hyperledger.fabric.protos.peer"; option go_package = "github.com/hyperledger/fabric/protos/peer"; // Confidentiality Levels enum ConfidentialityLevel { PUBLIC = 0; CONFIDENTIAL = 1; } //ChaincodeID contains the path as specified by the deploy transaction //that created it as well as the hashCode that is generated by the //system for the path. From the user level (ie, CLI, REST API and so on) //deploy transaction is expected to provide the path and other requests //are expected to provide the hashCode. The other value will be ignored. //Internally, the structure could contain both values. For instance, the //hashCode will be set when first generated using the path message ChaincodeID { //deploy transaction will use the path string path = 1; //all other requests will use the name (really a hashcode) generated by //the deploy transaction string name = 2; //user friendly version name for the chaincode string version = 3; } // Carries the chaincode function and its arguments. // UnmarshalJSON in transaction.go converts the string-based REST/JSON input to // the []byte-based current ChaincodeInput structure. message ChaincodeInput { repeated bytes args = 1; map decorations = 2; } // Carries the chaincode specification. This is the actual metadata required for // defining a chaincode. message ChaincodeSpec { enum Type { UNDEFINED = 0; GOLANG = 1; NODE = 2; CAR = 3; JAVA = 4; } Type type = 1; ChaincodeID chaincode_id = 2; ChaincodeInput input = 3; int32 timeout = 4; } // Specify the deployment of a chaincode. // TODO: Define `codePackage`. message ChaincodeDeploymentSpec { // Prevent removed tag re-use reserved 2; reserved "effective_date"; enum ExecutionEnvironment { DOCKER = 0; SYSTEM = 1; } ChaincodeSpec chaincode_spec = 1; bytes code_package = 3; ExecutionEnvironment exec_env= 4; } // Carries the chaincode function and its arguments. message ChaincodeInvocationSpec { // Prevent removed tag re-use reserved 2; reserved "id_generation_alg"; ChaincodeSpec chaincode_spec = 1; } // LifecycleEvent is used as the payload of the chaincode event emitted by LSCC message LifecycleEvent { string chaincode_name = 1; }