├── .github └── settings.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── common ├── collection.pb.go ├── common.pb.go ├── configtx.pb.go ├── configuration.pb.go ├── ledger.pb.go └── policies.pb.go ├── discovery └── protocol.pb.go ├── doc.go ├── gateway └── gateway.pb.go ├── go.mod ├── go.sum ├── gossip └── message.pb.go ├── ledger ├── queryresult │ └── kv_query_result.pb.go └── rwset │ ├── kvrwset │ └── kv_rwset.pb.go │ └── rwset.pb.go ├── msp ├── identities.pb.go ├── msp_config.pb.go └── msp_principal.pb.go ├── orderer ├── ab.pb.go ├── cluster.pb.go ├── clusterserver.pb.go ├── configuration.pb.go ├── etcdraft │ ├── configuration.pb.go │ └── metadata.pb.go └── smartbft │ └── configuration.pb.go ├── peer ├── chaincode.pb.go ├── chaincode_event.pb.go ├── chaincode_shim.pb.go ├── collection.pb.go ├── configuration.pb.go ├── events.pb.go ├── lifecycle │ ├── chaincode_definition.pb.go │ ├── db.pb.go │ └── lifecycle.pb.go ├── peer.pb.go ├── policy.pb.go ├── proposal.pb.go ├── proposal_response.pb.go ├── query.pb.go ├── resources.pb.go ├── signed_cc_dep_spec.pb.go ├── snapshot.pb.go └── transaction.pb.go └── transientstore └── transientstore.pb.go /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | #SPDX-License-Identifier: Apache-2.0 2 | .idea 3 | .vscode 4 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/README.md -------------------------------------------------------------------------------- /common/collection.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/common/collection.pb.go -------------------------------------------------------------------------------- /common/common.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/common/common.pb.go -------------------------------------------------------------------------------- /common/configtx.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/common/configtx.pb.go -------------------------------------------------------------------------------- /common/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/common/configuration.pb.go -------------------------------------------------------------------------------- /common/ledger.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/common/ledger.pb.go -------------------------------------------------------------------------------- /common/policies.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/common/policies.pb.go -------------------------------------------------------------------------------- /discovery/protocol.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/discovery/protocol.pb.go -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/doc.go -------------------------------------------------------------------------------- /gateway/gateway.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/gateway/gateway.pb.go -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/go.sum -------------------------------------------------------------------------------- /gossip/message.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/gossip/message.pb.go -------------------------------------------------------------------------------- /ledger/queryresult/kv_query_result.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/ledger/queryresult/kv_query_result.pb.go -------------------------------------------------------------------------------- /ledger/rwset/kvrwset/kv_rwset.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/ledger/rwset/kvrwset/kv_rwset.pb.go -------------------------------------------------------------------------------- /ledger/rwset/rwset.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/ledger/rwset/rwset.pb.go -------------------------------------------------------------------------------- /msp/identities.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/msp/identities.pb.go -------------------------------------------------------------------------------- /msp/msp_config.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/msp/msp_config.pb.go -------------------------------------------------------------------------------- /msp/msp_principal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/msp/msp_principal.pb.go -------------------------------------------------------------------------------- /orderer/ab.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/orderer/ab.pb.go -------------------------------------------------------------------------------- /orderer/cluster.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/orderer/cluster.pb.go -------------------------------------------------------------------------------- /orderer/clusterserver.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/orderer/clusterserver.pb.go -------------------------------------------------------------------------------- /orderer/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/orderer/configuration.pb.go -------------------------------------------------------------------------------- /orderer/etcdraft/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/orderer/etcdraft/configuration.pb.go -------------------------------------------------------------------------------- /orderer/etcdraft/metadata.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/orderer/etcdraft/metadata.pb.go -------------------------------------------------------------------------------- /orderer/smartbft/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/orderer/smartbft/configuration.pb.go -------------------------------------------------------------------------------- /peer/chaincode.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/chaincode.pb.go -------------------------------------------------------------------------------- /peer/chaincode_event.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/chaincode_event.pb.go -------------------------------------------------------------------------------- /peer/chaincode_shim.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/chaincode_shim.pb.go -------------------------------------------------------------------------------- /peer/collection.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/collection.pb.go -------------------------------------------------------------------------------- /peer/configuration.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/configuration.pb.go -------------------------------------------------------------------------------- /peer/events.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/events.pb.go -------------------------------------------------------------------------------- /peer/lifecycle/chaincode_definition.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/lifecycle/chaincode_definition.pb.go -------------------------------------------------------------------------------- /peer/lifecycle/db.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/lifecycle/db.pb.go -------------------------------------------------------------------------------- /peer/lifecycle/lifecycle.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/lifecycle/lifecycle.pb.go -------------------------------------------------------------------------------- /peer/peer.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/peer.pb.go -------------------------------------------------------------------------------- /peer/policy.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/policy.pb.go -------------------------------------------------------------------------------- /peer/proposal.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/proposal.pb.go -------------------------------------------------------------------------------- /peer/proposal_response.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/proposal_response.pb.go -------------------------------------------------------------------------------- /peer/query.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/query.pb.go -------------------------------------------------------------------------------- /peer/resources.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/resources.pb.go -------------------------------------------------------------------------------- /peer/signed_cc_dep_spec.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/signed_cc_dep_spec.pb.go -------------------------------------------------------------------------------- /peer/snapshot.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/snapshot.pb.go -------------------------------------------------------------------------------- /peer/transaction.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/peer/transaction.pb.go -------------------------------------------------------------------------------- /transientstore/transientstore.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-protos-go/HEAD/transientstore/transientstore.pb.go --------------------------------------------------------------------------------