├── .dir-locals.el ├── .editorconfig ├── .eslintignore ├── .eslintrc.json ├── .github ├── settings.yml └── workflows │ ├── pull_request.yml │ ├── push.yml │ ├── scheduled.yml │ ├── test.yml │ └── vulnerability_scan.yml ├── .gitignore ├── .npmrc ├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── RELEASING.md ├── SECURITY.md ├── docs ├── custom_theme │ └── searchbox.html ├── images │ ├── sdk-node-pipeline.png │ ├── standalone-app-developer.png │ └── web-app-developer.png ├── index.md ├── jsdoc.json ├── redirectTemplates │ ├── 404.html │ └── index.md ├── requirements.txt ├── tutorials.json └── tutorials │ ├── commonconnectionprofile.md │ ├── discovery-fabric-network.md │ ├── event-checkpointer.md.ignore │ ├── grpc-settings.md │ ├── handlers.md │ ├── listening-to-events.md.ignore │ ├── logging.md │ ├── migration.md │ ├── query-peers.md │ ├── sign-transaction-offline.md │ ├── transaction-commit-events.md │ ├── tutorials.json │ └── wallet.md ├── fabric-ca-client ├── .eslintignore ├── .npmignore ├── .npmrc ├── README.md ├── config │ └── default.json ├── index.js ├── lib │ ├── AffiliationService.js │ ├── CertificateService.js │ ├── FabricCAClient.js │ ├── FabricCAServices.js │ ├── IdentityService.js │ └── helper.js ├── package.json ├── test │ ├── AffiliationService.js │ ├── CertificateService.js │ ├── FabricCAClient.js │ ├── FabricCAServices.js │ ├── IdentityService.js │ └── helper.js └── types │ └── index.d.ts ├── fabric-common ├── .eslintignore ├── .npmignore ├── .npmrc ├── README.md ├── config │ └── default.json ├── index.js ├── lib │ ├── BaseClient.js │ ├── BlockDecoder.js │ ├── Channel.js │ ├── Client.js │ ├── Commit.js │ ├── Committer.js │ ├── Config.js │ ├── CryptoAlgorithms.js │ ├── CryptoSuite.js │ ├── Discoverer.js │ ├── DiscoveryHandler.js │ ├── DiscoveryResultsProcessor.js │ ├── DiscoveryService.js │ ├── Endorsement.js │ ├── Endorser.js │ ├── Endpoint.js │ ├── EventListener.js │ ├── EventService.js │ ├── Eventer.js │ ├── Hash.js │ ├── HashPrimitives.js │ ├── Identity.js │ ├── IdentityContext.js │ ├── Key.js │ ├── KeyValueStore.js │ ├── Proposal.js │ ├── Query.js │ ├── ServiceAction.js │ ├── ServiceEndpoint.js │ ├── ServiceHandler.js │ ├── Signer.js │ ├── SigningIdentity.js │ ├── User.js │ ├── Utils.js │ ├── hash │ │ ├── hash_sha2_256.js │ │ └── hash_sha2_384.js │ └── impl │ │ ├── CryptoKeyStore.js │ │ ├── CryptoSuite_ECDSA_AES.js │ │ ├── InMemoryKeyValueStore.js │ │ ├── aes │ │ └── pkcs11_key.js │ │ ├── bccsp_pkcs11.js │ │ └── ecdsa │ │ ├── key.js │ │ └── pkcs11_key.js ├── package.json ├── test │ ├── BaseClient.js │ ├── BlockDecoder.js │ ├── Channel.js │ ├── Client.js │ ├── Commit.js │ ├── Committer.js │ ├── Config.js │ ├── CryptoSuite.js │ ├── Discoverer.js │ ├── DiscoveryHandler.js │ ├── DiscoveryResultsProcessor.js │ ├── DiscoveryService.js │ ├── Endorsement.js │ ├── Endorser.js │ ├── Endpoint.js │ ├── EventListener.js │ ├── EventService.js │ ├── Eventer.js │ ├── Hash.js │ ├── HashPrimitives.js │ ├── Identity.js │ ├── IdentityContext.js │ ├── Key.js │ ├── KeyValueStore.js │ ├── Proposal.js │ ├── Query.js │ ├── ServiceAction.js │ ├── ServiceEndpoint.js │ ├── ServiceHandler.js │ ├── Signer.js │ ├── SigningIdentity.js │ ├── TestUtils.js │ ├── User.js │ ├── Utils.js │ ├── data │ │ ├── cert.pem │ │ └── key.pem │ ├── hash │ │ ├── hash_sha2_256.js │ │ └── hash_sha2_384.js │ └── impl │ │ ├── CryptoSuite_ECDSA_AES.js │ │ ├── InMemoryKeyValueStore.js │ │ ├── bccsp_pkcs11.js │ │ ├── ecdsa │ │ └── key.js │ │ └── pkcs11jsStub.js └── types │ ├── index.d.ts │ └── tsconfig.json ├── fabric-network ├── .npmignore ├── .npmrc ├── README.md ├── index.js ├── package.json ├── src │ ├── checkpointer.ts │ ├── contract.ts │ ├── defaultcheckpointers.ts │ ├── errors │ │ ├── fabricerror.ts │ │ ├── timeouterror.ts │ │ └── transactionerror.ts │ ├── events.ts │ ├── gateway.ts │ ├── impl │ │ ├── ccp │ │ │ └── networkconfig.ts │ │ ├── event │ │ │ ├── allfortxstrategy.ts │ │ │ ├── anyfortxstrategy.ts │ │ │ ├── asyncnotifier.ts │ │ │ ├── blockeventsource.ts │ │ │ ├── commiteventfactory.ts │ │ │ ├── commitlistenersession.ts │ │ │ ├── contractlistenersession.ts │ │ │ ├── defaulteventhandlerstrategies.ts │ │ │ ├── eventservicemanager.ts │ │ │ ├── filteredblockeventfactory.ts │ │ │ ├── fullblockeventfactory.ts │ │ │ ├── fullcontracteventfactory.ts │ │ │ ├── fulltransactioneventfactory.ts │ │ │ ├── isolatedblocklistenersession.ts │ │ │ ├── listeners.ts │ │ │ ├── listenersession.ts │ │ │ ├── orderedblockqueue.ts │ │ │ ├── privateblockeventfactory.ts │ │ │ ├── sharedblocklistenersession.ts │ │ │ ├── transactioneventhandler.ts │ │ │ ├── transactioneventstrategy.ts │ │ │ └── transactionstatus.ts │ │ ├── filecheckpointer.ts │ │ ├── gatewayutils.ts │ │ ├── query │ │ │ ├── defaultqueryhandlerstrategies.ts │ │ │ ├── query.ts │ │ │ ├── queryhandler.ts │ │ │ ├── roundrobinqueryhandler.ts │ │ │ └── singlequeryhandler.ts │ │ └── wallet │ │ │ ├── couchdbwalletstore.ts │ │ │ ├── filesystemwalletstore.ts │ │ │ ├── hsmx509identity.ts │ │ │ ├── identity.ts │ │ │ ├── identitydata.ts │ │ │ ├── identityprovider.ts │ │ │ ├── identityproviderregistry.ts │ │ │ ├── inmemorywalletstore.ts │ │ │ ├── wallet.ts │ │ │ ├── wallets.ts │ │ │ ├── walletstore.ts │ │ │ └── x509identity.ts │ ├── logger.ts │ ├── network.ts │ └── transaction.ts ├── test │ ├── contract.js │ ├── gateway.js │ ├── impl │ │ ├── ccp │ │ │ └── networkconfig.js │ │ ├── event │ │ │ ├── asyncnotifier.spec.ts │ │ │ ├── blocklistener.spec.ts │ │ │ ├── commitlistener.spec.ts │ │ │ ├── contractlistener.spec.ts │ │ │ ├── defaulteventhandlerstrategies.spec.ts │ │ │ ├── eventstrategy.spec.ts │ │ │ ├── listeners.spec.ts │ │ │ ├── orderedblockqueue.spec.ts │ │ │ ├── stubcheckpointer.ts │ │ │ ├── stubeventservice.ts │ │ │ └── transactioneventhandler.spec.ts │ │ ├── filecheckpointer.spec.ts │ │ ├── query │ │ │ ├── defaultqueryhandlerstrategies.js │ │ │ ├── query.js │ │ │ └── queryhandlers.js │ │ └── wallet │ │ │ ├── identityprovider.spec.ts │ │ │ ├── identityproviderregistry.spec.ts │ │ │ ├── wallet-interop.spec.ts │ │ │ ├── wallet.spec.ts │ │ │ └── walletstore.spec.ts │ ├── network.js │ ├── testutils.ts │ ├── transaction.js │ └── wallet │ │ └── testuser.id ├── tsconfig.json ├── tsconfig.lint.json └── types │ └── index.d.ts ├── fabric-protos ├── .npmignore ├── .npmrc ├── README.md ├── bundle.js ├── fabric.proto ├── google-protos │ └── google │ │ └── protobuf │ │ ├── empty.proto │ │ └── timestamp.proto ├── grpc.js ├── index.js ├── package.json ├── protos │ ├── common │ │ ├── collection.proto │ │ ├── common.proto │ │ ├── configtx.proto │ │ ├── configuration.proto │ │ ├── ledger.proto │ │ └── policies.proto │ ├── discovery │ │ └── protocol.proto │ ├── gossip │ │ └── message.proto │ ├── ledger │ │ ├── queryresult │ │ │ └── kv_query_result.proto │ │ └── rwset │ │ │ ├── kvrwset │ │ │ └── kv_rwset.proto │ │ │ └── rwset.proto │ ├── msp │ │ ├── identities.proto │ │ ├── msp_config.proto │ │ └── msp_principal.proto │ ├── orderer │ │ ├── ab.proto │ │ ├── cluster.proto │ │ ├── configuration.proto │ │ ├── etcdraft │ │ │ ├── configuration.proto │ │ │ └── metadata.proto │ │ └── kafka.proto │ ├── peer │ │ ├── chaincode.proto │ │ ├── chaincode_event.proto │ │ ├── chaincode_shim.proto │ │ ├── collection.proto │ │ ├── configuration.proto │ │ ├── events.proto │ │ ├── lifecycle │ │ │ ├── chaincode_definition.proto │ │ │ ├── db.proto │ │ │ └── lifecycle.proto │ │ ├── peer.proto │ │ ├── policy.proto │ │ ├── proposal.proto │ │ ├── proposal_response.proto │ │ ├── query.proto │ │ ├── resources.proto │ │ ├── signed_cc_dep_spec.proto │ │ └── transaction.proto │ └── transientstore │ │ └── transientstore.proto └── types │ └── index.d.ts ├── package.json ├── release_notes ├── v1.0.0-beta.md ├── v1.0.0-rc1.txt ├── v1.0.0.txt ├── v1.0.1.txt ├── v1.0.2.txt ├── v1.1.0-alpha.txt ├── v1.1.0-preview.txt ├── v1.1.0.txt ├── v1.2.0.txt ├── v1.3.0.txt ├── v1.4.0-beta.txt ├── v1.4.0.txt ├── v2.0.0-alpha.txt ├── v2.0.0-beta.4.txt ├── v2.0.0-beta.txt ├── v2.1.0.txt ├── v2.2.0.txt ├── v2.2.1.txt ├── v2.2.10.txt ├── v2.2.11.txt ├── v2.2.12.txt ├── v2.2.13.txt ├── v2.2.14.txt ├── v2.2.15.txt ├── v2.2.16.txt ├── v2.2.2.txt ├── v2.2.3.txt ├── v2.2.4.txt ├── v2.2.5.txt ├── v2.2.6.txt ├── v2.2.7.txt ├── v2.2.8.txt └── v2.2.9.txt ├── scripts ├── ci_scripts │ ├── publishApiDocs.sh │ └── publishNpmPackages.sh ├── npm_scripts │ ├── checkLicense.sh │ ├── dockerClean.sh │ ├── generateCerts.js │ ├── runShellCommand.js │ ├── runTape.sh │ └── testFunctions.js └── utility │ └── fabric_images.sh └── test ├── README.md ├── fixtures ├── chaincode │ ├── goLang │ │ └── src │ │ │ └── github.com │ │ │ ├── example_cc │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── example_cc.go │ │ │ └── vendor │ │ │ │ ├── github.com │ │ │ │ ├── golang │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── clone.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── deprecated.go │ │ │ │ │ │ ├── discard.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── equal.go │ │ │ │ │ │ ├── extensions.go │ │ │ │ │ │ ├── lib.go │ │ │ │ │ │ ├── message_set.go │ │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ │ ├── properties.go │ │ │ │ │ │ ├── table_marshal.go │ │ │ │ │ │ ├── table_merge.go │ │ │ │ │ │ ├── table_unmarshal.go │ │ │ │ │ │ ├── text.go │ │ │ │ │ │ └── text_parser.go │ │ │ │ │ │ └── ptypes │ │ │ │ │ │ ├── any.go │ │ │ │ │ │ ├── any │ │ │ │ │ │ ├── any.pb.go │ │ │ │ │ │ └── any.proto │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration │ │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ │ └── duration.proto │ │ │ │ │ │ ├── timestamp.go │ │ │ │ │ │ └── timestamp │ │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ │ └── timestamp.proto │ │ │ │ └── hyperledger │ │ │ │ │ ├── fabric-chaincode-go │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── shim │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── config.go │ │ │ │ │ │ ├── response.go │ │ │ │ │ │ ├── shim.go │ │ │ │ │ │ └── stub.go │ │ │ │ │ └── fabric-protos-go │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── common │ │ │ │ │ ├── collection.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── configtx.pb.go │ │ │ │ │ ├── configuration.pb.go │ │ │ │ │ ├── ledger.pb.go │ │ │ │ │ └── policies.pb.go │ │ │ │ │ ├── ledger │ │ │ │ │ ├── queryresult │ │ │ │ │ │ └── kv_query_result.pb.go │ │ │ │ │ └── rwset │ │ │ │ │ │ └── rwset.pb.go │ │ │ │ │ ├── msp │ │ │ │ │ ├── identities.pb.go │ │ │ │ │ ├── msp_config.pb.go │ │ │ │ │ └── msp_principal.pb.go │ │ │ │ │ └── peer │ │ │ │ │ ├── chaincode.pb.go │ │ │ │ │ ├── chaincode_event.pb.go │ │ │ │ │ ├── chaincode_shim.pb.go │ │ │ │ │ ├── configuration.pb.go │ │ │ │ │ ├── events.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 │ │ │ │ │ └── transaction.pb.go │ │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── net │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── http │ │ │ │ │ │ └── httpguts │ │ │ │ │ │ │ ├── guts.go │ │ │ │ │ │ │ └── httplex.go │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── ciphers.go │ │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ │ ├── databuffer.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── flow.go │ │ │ │ │ │ ├── frame.go │ │ │ │ │ │ ├── go111.go │ │ │ │ │ │ ├── gotrack.go │ │ │ │ │ │ ├── headermap.go │ │ │ │ │ │ ├── hpack │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ │ └── tables.go │ │ │ │ │ │ ├── http2.go │ │ │ │ │ │ ├── not_go111.go │ │ │ │ │ │ ├── pipe.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ ├── write.go │ │ │ │ │ │ ├── writesched.go │ │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ │ └── writesched_random.go │ │ │ │ │ ├── idna │ │ │ │ │ │ ├── idna10.0.0.go │ │ │ │ │ │ ├── idna9.0.0.go │ │ │ │ │ │ ├── punycode.go │ │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ └── trieval.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── timeseries │ │ │ │ │ │ │ └── timeseries.go │ │ │ │ │ └── trace │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ ├── histogram.go │ │ │ │ │ │ └── trace.go │ │ │ │ │ ├── sys │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ └── unix │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── affinity_linux.go │ │ │ │ │ │ ├── aliases.go │ │ │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ │ ├── asm_freebsd_arm64.s │ │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ │ ├── asm_netbsd_arm64.s │ │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ │ ├── asm_openbsd_arm64.s │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ │ ├── dev_openbsd.go │ │ │ │ │ │ ├── dirent.go │ │ │ │ │ │ ├── endian_big.go │ │ │ │ │ │ ├── endian_little.go │ │ │ │ │ │ ├── env_unix.go │ │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ │ ├── fcntl.go │ │ │ │ │ │ ├── fcntl_darwin.go │ │ │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ ├── ioctl.go │ │ │ │ │ │ ├── mkall.sh │ │ │ │ │ │ ├── mkasm_darwin.go │ │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ │ ├── mkpost.go │ │ │ │ │ │ ├── mksyscall.go │ │ │ │ │ │ ├── mksyscall_aix_ppc.go │ │ │ │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ │ │ │ ├── mksyscall_solaris.go │ │ │ │ │ │ ├── mksysctl_openbsd.go │ │ │ │ │ │ ├── mksysnum.go │ │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ │ ├── pledge_openbsd.go │ │ │ │ │ │ ├── race.go │ │ │ │ │ │ ├── race0.go │ │ │ │ │ │ ├── readdirent_getdents.go │ │ │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ │ ├── str.go │ │ │ │ │ │ ├── syscall.go │ │ │ │ │ │ ├── syscall_aix.go │ │ │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ │ │ ├── timestruct.go │ │ │ │ │ │ ├── types_aix.go │ │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ │ ├── types_netbsd.go │ │ │ │ │ │ ├── types_openbsd.go │ │ │ │ │ │ ├── types_solaris.go │ │ │ │ │ │ ├── unveil_openbsd.go │ │ │ │ │ │ ├── xattr_bsd.go │ │ │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ │ ├── zptrace386_linux.go │ │ │ │ │ │ ├── zptracearm_linux.go │ │ │ │ │ │ ├── zptracemips_linux.go │ │ │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ │ │ ├── zsyscall_darwin_386.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ │ ├── zsyscall_darwin_386.s │ │ │ │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ │ ├── zsyscall_darwin_arm.s │ │ │ │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ │ └── text │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── collate │ │ │ │ │ ├── build │ │ │ │ │ │ ├── builder.go │ │ │ │ │ │ ├── colelem.go │ │ │ │ │ │ ├── contract.go │ │ │ │ │ │ ├── order.go │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ └── trie.go │ │ │ │ │ ├── collate.go │ │ │ │ │ ├── index.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── option.go │ │ │ │ │ ├── sort.go │ │ │ │ │ └── tables.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── colltab │ │ │ │ │ │ ├── collelem.go │ │ │ │ │ │ ├── colltab.go │ │ │ │ │ │ ├── contract.go │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ ├── numeric.go │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ └── weighter.go │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── code.go │ │ │ │ │ │ └── gen.go │ │ │ │ │ ├── language │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ ├── compact │ │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ │ ├── gen_index.go │ │ │ │ │ │ │ ├── gen_parents.go │ │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ │ ├── parents.go │ │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ │ └── tags.go │ │ │ │ │ │ ├── compose.go │ │ │ │ │ │ ├── coverage.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── gen_common.go │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ ├── lookup.go │ │ │ │ │ │ ├── match.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ └── tags.go │ │ │ │ │ ├── tag │ │ │ │ │ │ └── tag.go │ │ │ │ │ ├── triegen │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ ├── print.go │ │ │ │ │ │ └── triegen.go │ │ │ │ │ └── ucd │ │ │ │ │ │ └── ucd.go │ │ │ │ │ ├── language │ │ │ │ │ ├── coverage.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── go1_1.go │ │ │ │ │ ├── go1_2.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── match.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ │ ├── secure │ │ │ │ │ └── bidirule │ │ │ │ │ │ ├── bidirule.go │ │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ │ └── bidirule9.0.0.go │ │ │ │ │ ├── transform │ │ │ │ │ └── transform.go │ │ │ │ │ └── unicode │ │ │ │ │ ├── bidi │ │ │ │ │ ├── bidi.go │ │ │ │ │ ├── bracket.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_ranges.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── prop.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ └── trieval.go │ │ │ │ │ ├── cldr │ │ │ │ │ ├── base.go │ │ │ │ │ ├── cldr.go │ │ │ │ │ ├── collate.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── makexml.go │ │ │ │ │ ├── resolve.go │ │ │ │ │ ├── slice.go │ │ │ │ │ └── xml.go │ │ │ │ │ ├── norm │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── forminfo.go │ │ │ │ │ ├── input.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── readwriter.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── transform.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── triegen.go │ │ │ │ │ └── rangetable │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── merge.go │ │ │ │ │ ├── rangetable.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ └── tables9.0.0.go │ │ │ │ └── google.golang.org │ │ │ │ ├── genproto │ │ │ │ ├── LICENSE │ │ │ │ └── googleapis │ │ │ │ │ └── rpc │ │ │ │ │ └── status │ │ │ │ │ └── status.pb.go │ │ │ │ └── grpc │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── backoff.go │ │ │ │ ├── balancer.go │ │ │ │ ├── balancer │ │ │ │ ├── balancer.go │ │ │ │ ├── base │ │ │ │ │ ├── balancer.go │ │ │ │ │ └── base.go │ │ │ │ └── roundrobin │ │ │ │ │ └── roundrobin.go │ │ │ │ ├── balancer_conn_wrappers.go │ │ │ │ ├── balancer_v1_wrapper.go │ │ │ │ ├── binarylog │ │ │ │ └── grpc_binarylog_v1 │ │ │ │ │ └── binarylog.pb.go │ │ │ │ ├── call.go │ │ │ │ ├── clientconn.go │ │ │ │ ├── codec.go │ │ │ │ ├── codegen.sh │ │ │ │ ├── codes │ │ │ │ ├── code_string.go │ │ │ │ └── codes.go │ │ │ │ ├── connectivity │ │ │ │ └── connectivity.go │ │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── internal │ │ │ │ │ ├── syscallconn.go │ │ │ │ │ └── syscallconn_appengine.go │ │ │ │ └── tls13.go │ │ │ │ ├── dialoptions.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoding │ │ │ │ ├── encoding.go │ │ │ │ └── proto │ │ │ │ │ └── proto.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── grpclog │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ │ ├── install_gae.sh │ │ │ │ ├── interceptor.go │ │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── balancerload │ │ │ │ │ └── load.go │ │ │ │ ├── binarylog │ │ │ │ │ ├── binarylog.go │ │ │ │ │ ├── binarylog_testutil.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── method_logger.go │ │ │ │ │ ├── regenerate.sh │ │ │ │ │ ├── sink.go │ │ │ │ │ └── util.go │ │ │ │ ├── channelz │ │ │ │ │ ├── funcs.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_linux.go │ │ │ │ │ ├── types_nonlinux.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ └── util_nonlinux.go │ │ │ │ ├── envconfig │ │ │ │ │ └── envconfig.go │ │ │ │ ├── grpcrand │ │ │ │ │ └── grpcrand.go │ │ │ │ ├── grpcsync │ │ │ │ │ └── event.go │ │ │ │ ├── internal.go │ │ │ │ ├── syscall │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ └── syscall_nonlinux.go │ │ │ │ └── transport │ │ │ │ │ ├── bdp_estimator.go │ │ │ │ │ ├── controlbuf.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── flowcontrol.go │ │ │ │ │ ├── handler_server.go │ │ │ │ │ ├── http2_client.go │ │ │ │ │ ├── http2_server.go │ │ │ │ │ ├── http_util.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── transport.go │ │ │ │ ├── keepalive │ │ │ │ └── keepalive.go │ │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ │ ├── naming │ │ │ │ ├── dns_resolver.go │ │ │ │ └── naming.go │ │ │ │ ├── peer │ │ │ │ └── peer.go │ │ │ │ ├── picker_wrapper.go │ │ │ │ ├── pickfirst.go │ │ │ │ ├── preloader.go │ │ │ │ ├── proxy.go │ │ │ │ ├── resolver │ │ │ │ ├── dns │ │ │ │ │ └── dns_resolver.go │ │ │ │ ├── passthrough │ │ │ │ │ └── passthrough.go │ │ │ │ └── resolver.go │ │ │ │ ├── resolver_conn_wrapper.go │ │ │ │ ├── rpc_util.go │ │ │ │ ├── server.go │ │ │ │ ├── service_config.go │ │ │ │ ├── serviceconfig │ │ │ │ └── serviceconfig.go │ │ │ │ ├── stats │ │ │ │ ├── handlers.go │ │ │ │ └── stats.go │ │ │ │ ├── status │ │ │ │ └── status.go │ │ │ │ ├── stream.go │ │ │ │ ├── tap │ │ │ │ └── tap.go │ │ │ │ ├── trace.go │ │ │ │ ├── version.go │ │ │ │ └── vet.sh │ │ │ └── example_cc_private │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── META-INF │ │ │ └── statedb │ │ │ │ └── couchdb │ │ │ │ └── collections │ │ │ │ └── detailCol │ │ │ │ └── indexes │ │ │ │ └── indexOwner.json │ │ │ ├── collections_config.json │ │ │ ├── example_cc_private.go │ │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── proto │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── deprecated.go │ │ │ │ │ ├── discard.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── table_marshal.go │ │ │ │ │ ├── table_merge.go │ │ │ │ │ ├── table_unmarshal.go │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ │ │ └── ptypes │ │ │ │ │ ├── any.go │ │ │ │ │ ├── any │ │ │ │ │ ├── any.pb.go │ │ │ │ │ └── any.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ └── duration.proto │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ └── timestamp.proto │ │ │ └── hyperledger │ │ │ │ ├── fabric-chaincode-go │ │ │ │ ├── LICENSE │ │ │ │ └── shim │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── client.go │ │ │ │ │ └── config.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── shim.go │ │ │ │ │ └── stub.go │ │ │ │ └── fabric-protos-go │ │ │ │ ├── LICENSE │ │ │ │ ├── common │ │ │ │ ├── collection.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── configtx.pb.go │ │ │ │ ├── configuration.pb.go │ │ │ │ ├── ledger.pb.go │ │ │ │ └── policies.pb.go │ │ │ │ ├── ledger │ │ │ │ ├── queryresult │ │ │ │ │ └── kv_query_result.pb.go │ │ │ │ └── rwset │ │ │ │ │ └── rwset.pb.go │ │ │ │ ├── msp │ │ │ │ ├── identities.pb.go │ │ │ │ ├── msp_config.pb.go │ │ │ │ └── msp_principal.pb.go │ │ │ │ └── peer │ │ │ │ ├── chaincode.pb.go │ │ │ │ ├── chaincode_event.pb.go │ │ │ │ ├── chaincode_shim.pb.go │ │ │ │ ├── configuration.pb.go │ │ │ │ ├── events.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 │ │ │ │ └── transaction.pb.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── net │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── http │ │ │ │ │ └── httpguts │ │ │ │ │ │ ├── guts.go │ │ │ │ │ │ └── httplex.go │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ciphers.go │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ ├── databuffer.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── frame.go │ │ │ │ │ ├── go111.go │ │ │ │ │ ├── gotrack.go │ │ │ │ │ ├── headermap.go │ │ │ │ │ ├── hpack │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── http2.go │ │ │ │ │ ├── not_go111.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── write.go │ │ │ │ │ ├── writesched.go │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ └── writesched_random.go │ │ │ │ ├── idna │ │ │ │ │ ├── idna10.0.0.go │ │ │ │ │ ├── idna9.0.0.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── internal │ │ │ │ │ └── timeseries │ │ │ │ │ │ └── timeseries.go │ │ │ │ └── trace │ │ │ │ │ ├── events.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ └── trace.go │ │ │ │ ├── sys │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── unix │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── affinity_linux.go │ │ │ │ │ ├── aliases.go │ │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ ├── asm_freebsd_arm64.s │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ ├── asm_netbsd_arm64.s │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ ├── asm_openbsd_arm64.s │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ ├── dev_openbsd.go │ │ │ │ │ ├── dirent.go │ │ │ │ │ ├── endian_big.go │ │ │ │ │ ├── endian_little.go │ │ │ │ │ ├── env_unix.go │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ ├── fcntl.go │ │ │ │ │ ├── fcntl_darwin.go │ │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkasm_darwin.go │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mkpost.go │ │ │ │ │ ├── mksyscall.go │ │ │ │ │ ├── mksyscall_aix_ppc.go │ │ │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ │ │ ├── mksyscall_solaris.go │ │ │ │ │ ├── mksysctl_openbsd.go │ │ │ │ │ ├── mksysnum.go │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ ├── pledge_openbsd.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── readdirent_getdents.go │ │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_aix.go │ │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ │ ├── timestruct.go │ │ │ │ │ ├── types_aix.go │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ ├── types_netbsd.go │ │ │ │ │ ├── types_openbsd.go │ │ │ │ │ ├── types_solaris.go │ │ │ │ │ ├── unveil_openbsd.go │ │ │ │ │ ├── xattr_bsd.go │ │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ ├── zptrace386_linux.go │ │ │ │ │ ├── zptracearm_linux.go │ │ │ │ │ ├── zptracemips_linux.go │ │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ │ ├── zsyscall_darwin_386.1_11.go │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ ├── zsyscall_darwin_386.s │ │ │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ ├── zsyscall_darwin_arm.s │ │ │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── text │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── collate │ │ │ │ ├── build │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── colelem.go │ │ │ │ │ ├── contract.go │ │ │ │ │ ├── order.go │ │ │ │ │ ├── table.go │ │ │ │ │ └── trie.go │ │ │ │ ├── collate.go │ │ │ │ ├── index.go │ │ │ │ ├── maketables.go │ │ │ │ ├── option.go │ │ │ │ ├── sort.go │ │ │ │ └── tables.go │ │ │ │ ├── internal │ │ │ │ ├── colltab │ │ │ │ │ ├── collelem.go │ │ │ │ │ ├── colltab.go │ │ │ │ │ ├── contract.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── numeric.go │ │ │ │ │ ├── table.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── weighter.go │ │ │ │ ├── gen │ │ │ │ │ ├── code.go │ │ │ │ │ └── gen.go │ │ │ │ ├── language │ │ │ │ │ ├── common.go │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── compact │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── gen_index.go │ │ │ │ │ │ ├── gen_parents.go │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ ├── parents.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ └── tags.go │ │ │ │ │ ├── compose.go │ │ │ │ │ ├── coverage.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── lookup.go │ │ │ │ │ ├── match.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── tag │ │ │ │ │ └── tag.go │ │ │ │ ├── triegen │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── print.go │ │ │ │ │ └── triegen.go │ │ │ │ └── ucd │ │ │ │ │ └── ucd.go │ │ │ │ ├── language │ │ │ │ ├── coverage.go │ │ │ │ ├── doc.go │ │ │ │ ├── gen.go │ │ │ │ ├── go1_1.go │ │ │ │ ├── go1_2.go │ │ │ │ ├── language.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ ├── bidirule.go │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ └── bidirule9.0.0.go │ │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── collate.go │ │ │ │ ├── decode.go │ │ │ │ ├── makexml.go │ │ │ │ ├── resolve.go │ │ │ │ ├── slice.go │ │ │ │ └── xml.go │ │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── maketables.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ ├── trie.go │ │ │ │ └── triegen.go │ │ │ │ └── rangetable │ │ │ │ ├── gen.go │ │ │ │ ├── merge.go │ │ │ │ ├── rangetable.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ └── tables9.0.0.go │ │ │ └── google.golang.org │ │ │ ├── genproto │ │ │ ├── LICENSE │ │ │ └── googleapis │ │ │ │ └── rpc │ │ │ │ └── status │ │ │ │ └── status.pb.go │ │ │ └── grpc │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── balancer.go │ │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── base │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ └── roundrobin │ │ │ │ └── roundrobin.go │ │ │ ├── balancer_conn_wrappers.go │ │ │ ├── balancer_v1_wrapper.go │ │ │ ├── binarylog │ │ │ └── grpc_binarylog_v1 │ │ │ │ └── binarylog.pb.go │ │ │ ├── call.go │ │ │ ├── clientconn.go │ │ │ ├── codec.go │ │ │ ├── codegen.sh │ │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ │ ├── connectivity │ │ │ └── connectivity.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── internal │ │ │ │ ├── syscallconn.go │ │ │ │ └── syscallconn_appengine.go │ │ │ └── tls13.go │ │ │ ├── dialoptions.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── grpclog │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ │ ├── install_gae.sh │ │ │ ├── interceptor.go │ │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancerload │ │ │ │ └── load.go │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ ├── regenerate.sh │ │ │ │ ├── sink.go │ │ │ │ └── util.go │ │ │ ├── channelz │ │ │ │ ├── funcs.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_nonlinux.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_nonlinux.go │ │ │ ├── envconfig │ │ │ │ └── envconfig.go │ │ │ ├── grpcrand │ │ │ │ └── grpcrand.go │ │ │ ├── grpcsync │ │ │ │ └── event.go │ │ │ ├── internal.go │ │ │ ├── syscall │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ └── transport │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── log.go │ │ │ │ └── transport.go │ │ │ ├── keepalive │ │ │ └── keepalive.go │ │ │ ├── metadata │ │ │ └── metadata.go │ │ │ ├── naming │ │ │ ├── dns_resolver.go │ │ │ └── naming.go │ │ │ ├── peer │ │ │ └── peer.go │ │ │ ├── picker_wrapper.go │ │ │ ├── pickfirst.go │ │ │ ├── preloader.go │ │ │ ├── proxy.go │ │ │ ├── resolver │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── resolver.go │ │ │ ├── resolver_conn_wrapper.go │ │ │ ├── rpc_util.go │ │ │ ├── server.go │ │ │ ├── service_config.go │ │ │ ├── serviceconfig │ │ │ └── serviceconfig.go │ │ │ ├── stats │ │ │ ├── handlers.go │ │ │ └── stats.go │ │ │ ├── status │ │ │ └── status.go │ │ │ ├── stream.go │ │ │ ├── tap │ │ │ └── tap.go │ │ │ ├── trace.go │ │ │ ├── version.go │ │ │ └── vet.sh │ ├── metadata │ │ └── statedb │ │ │ └── couchdb │ │ │ └── indexes │ │ │ ├── index.json │ │ │ └── index.notjson │ └── node_cc │ │ └── example_cc │ │ ├── chaincode.js │ │ ├── npm-shrinkwrap.json │ │ └── package.json ├── credentials │ ├── couchdb.json │ └── local.json ├── crypto-material │ ├── README.md │ ├── config-base │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ └── generate.sh │ ├── config-update │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ └── generate.sh │ ├── config-v2 │ │ ├── configtx.yaml │ │ └── lifecyclechannel.tx │ ├── generateAll.sh │ └── mychannelator.json ├── docker-compose │ ├── docker-compose-base.yaml │ ├── docker-compose-tls-level-db.yaml │ ├── docker-compose-tls.yaml │ └── docker-compose.yaml ├── fabricca │ └── generateCSR.sh ├── profiles │ ├── caimport.json │ ├── network-ad.yaml │ ├── network-discovery.json │ ├── network-ts.yaml │ ├── network.json │ ├── network.yaml │ ├── network2.yaml │ ├── org1.yaml │ └── org2.yaml └── test-wallet │ └── x509-v1.id ├── integration ├── e2e │ └── config.json ├── fabric-ca-affiliation-service-tests.js ├── fabric-ca-certificate-service-tests.js ├── fabric-ca-identity-service-tests.js ├── fabric-ca-services-tests.js └── util.js ├── ts-fixtures ├── chaincode │ ├── goLang │ │ └── src │ │ │ └── github.com │ │ │ ├── legacyGo │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── legacy.go │ │ │ └── vendor │ │ │ │ ├── github.com │ │ │ │ ├── golang │ │ │ │ │ └── protobuf │ │ │ │ │ │ ├── AUTHORS │ │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── proto │ │ │ │ │ │ ├── clone.go │ │ │ │ │ │ ├── decode.go │ │ │ │ │ │ ├── deprecated.go │ │ │ │ │ │ ├── discard.go │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── equal.go │ │ │ │ │ │ ├── extensions.go │ │ │ │ │ │ ├── lib.go │ │ │ │ │ │ ├── message_set.go │ │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ │ ├── properties.go │ │ │ │ │ │ ├── table_marshal.go │ │ │ │ │ │ ├── table_merge.go │ │ │ │ │ │ ├── table_unmarshal.go │ │ │ │ │ │ ├── text.go │ │ │ │ │ │ └── text_parser.go │ │ │ │ │ │ └── ptypes │ │ │ │ │ │ ├── any.go │ │ │ │ │ │ ├── any │ │ │ │ │ │ ├── any.pb.go │ │ │ │ │ │ └── any.proto │ │ │ │ │ │ ├── doc.go │ │ │ │ │ │ ├── duration.go │ │ │ │ │ │ ├── duration │ │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ │ └── duration.proto │ │ │ │ │ │ ├── timestamp.go │ │ │ │ │ │ └── timestamp │ │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ │ └── timestamp.proto │ │ │ │ └── hyperledger │ │ │ │ │ ├── fabric-chaincode-go │ │ │ │ │ ├── LICENSE │ │ │ │ │ └── shim │ │ │ │ │ │ ├── handler.go │ │ │ │ │ │ ├── interfaces.go │ │ │ │ │ │ ├── internal │ │ │ │ │ │ ├── client.go │ │ │ │ │ │ └── config.go │ │ │ │ │ │ ├── response.go │ │ │ │ │ │ ├── shim.go │ │ │ │ │ │ └── stub.go │ │ │ │ │ └── fabric-protos-go │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── common │ │ │ │ │ ├── collection.pb.go │ │ │ │ │ ├── common.pb.go │ │ │ │ │ ├── configtx.pb.go │ │ │ │ │ ├── configuration.pb.go │ │ │ │ │ ├── ledger.pb.go │ │ │ │ │ └── policies.pb.go │ │ │ │ │ ├── ledger │ │ │ │ │ ├── queryresult │ │ │ │ │ │ └── kv_query_result.pb.go │ │ │ │ │ └── rwset │ │ │ │ │ │ └── rwset.pb.go │ │ │ │ │ ├── msp │ │ │ │ │ ├── identities.pb.go │ │ │ │ │ ├── msp_config.pb.go │ │ │ │ │ └── msp_principal.pb.go │ │ │ │ │ └── peer │ │ │ │ │ ├── chaincode.pb.go │ │ │ │ │ ├── chaincode_event.pb.go │ │ │ │ │ ├── chaincode_shim.pb.go │ │ │ │ │ ├── configuration.pb.go │ │ │ │ │ ├── events.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 │ │ │ │ │ └── transaction.pb.go │ │ │ │ ├── golang.org │ │ │ │ └── x │ │ │ │ │ ├── net │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── http │ │ │ │ │ │ └── httpguts │ │ │ │ │ │ │ ├── guts.go │ │ │ │ │ │ │ └── httplex.go │ │ │ │ │ ├── http2 │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── Dockerfile │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── README │ │ │ │ │ │ ├── ciphers.go │ │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ │ ├── databuffer.go │ │ │ │ │ │ ├── errors.go │ │ │ │ │ │ ├── flow.go │ │ │ │ │ │ ├── frame.go │ │ │ │ │ │ ├── go111.go │ │ │ │ │ │ ├── gotrack.go │ │ │ │ │ │ ├── headermap.go │ │ │ │ │ │ ├── hpack │ │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ │ └── tables.go │ │ │ │ │ │ ├── http2.go │ │ │ │ │ │ ├── not_go111.go │ │ │ │ │ │ ├── pipe.go │ │ │ │ │ │ ├── server.go │ │ │ │ │ │ ├── transport.go │ │ │ │ │ │ ├── write.go │ │ │ │ │ │ ├── writesched.go │ │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ │ └── writesched_random.go │ │ │ │ │ ├── idna │ │ │ │ │ │ ├── idna10.0.0.go │ │ │ │ │ │ ├── idna9.0.0.go │ │ │ │ │ │ ├── punycode.go │ │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ └── trieval.go │ │ │ │ │ ├── internal │ │ │ │ │ │ └── timeseries │ │ │ │ │ │ │ └── timeseries.go │ │ │ │ │ └── trace │ │ │ │ │ │ ├── events.go │ │ │ │ │ │ ├── histogram.go │ │ │ │ │ │ └── trace.go │ │ │ │ │ ├── sys │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ └── unix │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── affinity_linux.go │ │ │ │ │ │ ├── aliases.go │ │ │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ │ ├── asm_freebsd_arm64.s │ │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ │ ├── asm_netbsd_arm64.s │ │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ │ ├── asm_openbsd_arm64.s │ │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ │ ├── constants.go │ │ │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ │ ├── dev_openbsd.go │ │ │ │ │ │ ├── dirent.go │ │ │ │ │ │ ├── endian_big.go │ │ │ │ │ │ ├── endian_little.go │ │ │ │ │ │ ├── env_unix.go │ │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ │ ├── fcntl.go │ │ │ │ │ │ ├── fcntl_darwin.go │ │ │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ │ │ ├── gccgo.go │ │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ │ ├── ioctl.go │ │ │ │ │ │ ├── mkall.sh │ │ │ │ │ │ ├── mkasm_darwin.go │ │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ │ ├── mkpost.go │ │ │ │ │ │ ├── mksyscall.go │ │ │ │ │ │ ├── mksyscall_aix_ppc.go │ │ │ │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ │ │ │ ├── mksyscall_solaris.go │ │ │ │ │ │ ├── mksysctl_openbsd.go │ │ │ │ │ │ ├── mksysnum.go │ │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ │ ├── pledge_openbsd.go │ │ │ │ │ │ ├── race.go │ │ │ │ │ │ ├── race0.go │ │ │ │ │ │ ├── readdirent_getdents.go │ │ │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ │ ├── str.go │ │ │ │ │ │ ├── syscall.go │ │ │ │ │ │ ├── syscall_aix.go │ │ │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ │ │ ├── timestruct.go │ │ │ │ │ │ ├── types_aix.go │ │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ │ ├── types_netbsd.go │ │ │ │ │ │ ├── types_openbsd.go │ │ │ │ │ │ ├── types_solaris.go │ │ │ │ │ │ ├── unveil_openbsd.go │ │ │ │ │ │ ├── xattr_bsd.go │ │ │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ │ ├── zptrace386_linux.go │ │ │ │ │ │ ├── zptracearm_linux.go │ │ │ │ │ │ ├── zptracemips_linux.go │ │ │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ │ │ ├── zsyscall_darwin_386.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ │ ├── zsyscall_darwin_386.s │ │ │ │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ │ ├── zsyscall_darwin_arm.s │ │ │ │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ │ └── text │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── PATENTS │ │ │ │ │ ├── collate │ │ │ │ │ ├── build │ │ │ │ │ │ ├── builder.go │ │ │ │ │ │ ├── colelem.go │ │ │ │ │ │ ├── contract.go │ │ │ │ │ │ ├── order.go │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ └── trie.go │ │ │ │ │ ├── collate.go │ │ │ │ │ ├── index.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── option.go │ │ │ │ │ ├── sort.go │ │ │ │ │ └── tables.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── colltab │ │ │ │ │ │ ├── collelem.go │ │ │ │ │ │ ├── colltab.go │ │ │ │ │ │ ├── contract.go │ │ │ │ │ │ ├── iter.go │ │ │ │ │ │ ├── numeric.go │ │ │ │ │ │ ├── table.go │ │ │ │ │ │ ├── trie.go │ │ │ │ │ │ └── weighter.go │ │ │ │ │ ├── gen │ │ │ │ │ │ ├── code.go │ │ │ │ │ │ └── gen.go │ │ │ │ │ ├── language │ │ │ │ │ │ ├── common.go │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ ├── compact │ │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ │ ├── gen_index.go │ │ │ │ │ │ │ ├── gen_parents.go │ │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ │ ├── parents.go │ │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ │ └── tags.go │ │ │ │ │ │ ├── compose.go │ │ │ │ │ │ ├── coverage.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── gen_common.go │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ ├── lookup.go │ │ │ │ │ │ ├── match.go │ │ │ │ │ │ ├── parse.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ └── tags.go │ │ │ │ │ ├── tag │ │ │ │ │ │ └── tag.go │ │ │ │ │ ├── triegen │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ ├── print.go │ │ │ │ │ │ └── triegen.go │ │ │ │ │ └── ucd │ │ │ │ │ │ └── ucd.go │ │ │ │ │ ├── language │ │ │ │ │ ├── coverage.go │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── go1_1.go │ │ │ │ │ ├── go1_2.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── match.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ │ ├── secure │ │ │ │ │ └── bidirule │ │ │ │ │ │ ├── bidirule.go │ │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ │ └── bidirule9.0.0.go │ │ │ │ │ ├── transform │ │ │ │ │ └── transform.go │ │ │ │ │ └── unicode │ │ │ │ │ ├── bidi │ │ │ │ │ ├── bidi.go │ │ │ │ │ ├── bracket.go │ │ │ │ │ ├── core.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_ranges.go │ │ │ │ │ ├── gen_trieval.go │ │ │ │ │ ├── prop.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ └── trieval.go │ │ │ │ │ ├── cldr │ │ │ │ │ ├── base.go │ │ │ │ │ ├── cldr.go │ │ │ │ │ ├── collate.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── makexml.go │ │ │ │ │ ├── resolve.go │ │ │ │ │ ├── slice.go │ │ │ │ │ └── xml.go │ │ │ │ │ ├── norm │ │ │ │ │ ├── composition.go │ │ │ │ │ ├── forminfo.go │ │ │ │ │ ├── input.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── maketables.go │ │ │ │ │ ├── normalize.go │ │ │ │ │ ├── readwriter.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── transform.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── triegen.go │ │ │ │ │ └── rangetable │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── merge.go │ │ │ │ │ ├── rangetable.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ └── tables9.0.0.go │ │ │ │ └── google.golang.org │ │ │ │ ├── genproto │ │ │ │ ├── LICENSE │ │ │ │ └── googleapis │ │ │ │ │ └── rpc │ │ │ │ │ └── status │ │ │ │ │ └── status.pb.go │ │ │ │ └── grpc │ │ │ │ ├── .travis.yml │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTING.md │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── backoff.go │ │ │ │ ├── balancer.go │ │ │ │ ├── balancer │ │ │ │ ├── balancer.go │ │ │ │ ├── base │ │ │ │ │ ├── balancer.go │ │ │ │ │ └── base.go │ │ │ │ └── roundrobin │ │ │ │ │ └── roundrobin.go │ │ │ │ ├── balancer_conn_wrappers.go │ │ │ │ ├── balancer_v1_wrapper.go │ │ │ │ ├── binarylog │ │ │ │ └── grpc_binarylog_v1 │ │ │ │ │ └── binarylog.pb.go │ │ │ │ ├── call.go │ │ │ │ ├── clientconn.go │ │ │ │ ├── codec.go │ │ │ │ ├── codegen.sh │ │ │ │ ├── codes │ │ │ │ ├── code_string.go │ │ │ │ └── codes.go │ │ │ │ ├── connectivity │ │ │ │ └── connectivity.go │ │ │ │ ├── credentials │ │ │ │ ├── credentials.go │ │ │ │ ├── internal │ │ │ │ │ ├── syscallconn.go │ │ │ │ │ └── syscallconn_appengine.go │ │ │ │ └── tls13.go │ │ │ │ ├── dialoptions.go │ │ │ │ ├── doc.go │ │ │ │ ├── encoding │ │ │ │ ├── encoding.go │ │ │ │ └── proto │ │ │ │ │ └── proto.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── grpclog │ │ │ │ ├── grpclog.go │ │ │ │ ├── logger.go │ │ │ │ └── loggerv2.go │ │ │ │ ├── install_gae.sh │ │ │ │ ├── interceptor.go │ │ │ │ ├── internal │ │ │ │ ├── backoff │ │ │ │ │ └── backoff.go │ │ │ │ ├── balancerload │ │ │ │ │ └── load.go │ │ │ │ ├── binarylog │ │ │ │ │ ├── binarylog.go │ │ │ │ │ ├── binarylog_testutil.go │ │ │ │ │ ├── env_config.go │ │ │ │ │ ├── method_logger.go │ │ │ │ │ ├── regenerate.sh │ │ │ │ │ ├── sink.go │ │ │ │ │ └── util.go │ │ │ │ ├── channelz │ │ │ │ │ ├── funcs.go │ │ │ │ │ ├── types.go │ │ │ │ │ ├── types_linux.go │ │ │ │ │ ├── types_nonlinux.go │ │ │ │ │ ├── util_linux.go │ │ │ │ │ └── util_nonlinux.go │ │ │ │ ├── envconfig │ │ │ │ │ └── envconfig.go │ │ │ │ ├── grpcrand │ │ │ │ │ └── grpcrand.go │ │ │ │ ├── grpcsync │ │ │ │ │ └── event.go │ │ │ │ ├── internal.go │ │ │ │ ├── syscall │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ └── syscall_nonlinux.go │ │ │ │ └── transport │ │ │ │ │ ├── bdp_estimator.go │ │ │ │ │ ├── controlbuf.go │ │ │ │ │ ├── defaults.go │ │ │ │ │ ├── flowcontrol.go │ │ │ │ │ ├── handler_server.go │ │ │ │ │ ├── http2_client.go │ │ │ │ │ ├── http2_server.go │ │ │ │ │ ├── http_util.go │ │ │ │ │ ├── log.go │ │ │ │ │ └── transport.go │ │ │ │ ├── keepalive │ │ │ │ └── keepalive.go │ │ │ │ ├── metadata │ │ │ │ └── metadata.go │ │ │ │ ├── naming │ │ │ │ ├── dns_resolver.go │ │ │ │ └── naming.go │ │ │ │ ├── peer │ │ │ │ └── peer.go │ │ │ │ ├── picker_wrapper.go │ │ │ │ ├── pickfirst.go │ │ │ │ ├── preloader.go │ │ │ │ ├── proxy.go │ │ │ │ ├── resolver │ │ │ │ ├── dns │ │ │ │ │ └── dns_resolver.go │ │ │ │ ├── passthrough │ │ │ │ │ └── passthrough.go │ │ │ │ └── resolver.go │ │ │ │ ├── resolver_conn_wrapper.go │ │ │ │ ├── rpc_util.go │ │ │ │ ├── server.go │ │ │ │ ├── service_config.go │ │ │ │ ├── serviceconfig │ │ │ │ └── serviceconfig.go │ │ │ │ ├── stats │ │ │ │ ├── handlers.go │ │ │ │ └── stats.go │ │ │ │ ├── status │ │ │ │ └── status.go │ │ │ │ ├── stream.go │ │ │ │ ├── tap │ │ │ │ └── tap.go │ │ │ │ ├── trace.go │ │ │ │ ├── version.go │ │ │ │ └── vet.sh │ │ │ └── legacyGoPrivateData │ │ │ ├── Gopkg.lock │ │ │ ├── Gopkg.toml │ │ │ ├── META-INF │ │ │ └── statedb │ │ │ │ └── couchdb │ │ │ │ └── collections │ │ │ │ └── detailCol │ │ │ │ └── indexes │ │ │ │ └── indexOwner.json │ │ │ ├── collections_config.json │ │ │ ├── legacy_private_data.go │ │ │ └── vendor │ │ │ ├── github.com │ │ │ ├── golang │ │ │ │ └── protobuf │ │ │ │ │ ├── AUTHORS │ │ │ │ │ ├── CONTRIBUTORS │ │ │ │ │ ├── LICENSE │ │ │ │ │ ├── proto │ │ │ │ │ ├── clone.go │ │ │ │ │ ├── decode.go │ │ │ │ │ ├── deprecated.go │ │ │ │ │ ├── discard.go │ │ │ │ │ ├── encode.go │ │ │ │ │ ├── equal.go │ │ │ │ │ ├── extensions.go │ │ │ │ │ ├── lib.go │ │ │ │ │ ├── message_set.go │ │ │ │ │ ├── pointer_reflect.go │ │ │ │ │ ├── pointer_unsafe.go │ │ │ │ │ ├── properties.go │ │ │ │ │ ├── table_marshal.go │ │ │ │ │ ├── table_merge.go │ │ │ │ │ ├── table_unmarshal.go │ │ │ │ │ ├── text.go │ │ │ │ │ └── text_parser.go │ │ │ │ │ └── ptypes │ │ │ │ │ ├── any.go │ │ │ │ │ ├── any │ │ │ │ │ ├── any.pb.go │ │ │ │ │ └── any.proto │ │ │ │ │ ├── doc.go │ │ │ │ │ ├── duration.go │ │ │ │ │ ├── duration │ │ │ │ │ ├── duration.pb.go │ │ │ │ │ └── duration.proto │ │ │ │ │ ├── timestamp.go │ │ │ │ │ └── timestamp │ │ │ │ │ ├── timestamp.pb.go │ │ │ │ │ └── timestamp.proto │ │ │ └── hyperledger │ │ │ │ ├── fabric-chaincode-go │ │ │ │ ├── LICENSE │ │ │ │ └── shim │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── client.go │ │ │ │ │ └── config.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── shim.go │ │ │ │ │ └── stub.go │ │ │ │ └── fabric-protos-go │ │ │ │ ├── LICENSE │ │ │ │ ├── common │ │ │ │ ├── collection.pb.go │ │ │ │ ├── common.pb.go │ │ │ │ ├── configtx.pb.go │ │ │ │ ├── configuration.pb.go │ │ │ │ ├── ledger.pb.go │ │ │ │ └── policies.pb.go │ │ │ │ ├── ledger │ │ │ │ ├── queryresult │ │ │ │ │ └── kv_query_result.pb.go │ │ │ │ └── rwset │ │ │ │ │ └── rwset.pb.go │ │ │ │ ├── msp │ │ │ │ ├── identities.pb.go │ │ │ │ ├── msp_config.pb.go │ │ │ │ └── msp_principal.pb.go │ │ │ │ └── peer │ │ │ │ ├── chaincode.pb.go │ │ │ │ ├── chaincode_event.pb.go │ │ │ │ ├── chaincode_shim.pb.go │ │ │ │ ├── configuration.pb.go │ │ │ │ ├── events.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 │ │ │ │ └── transaction.pb.go │ │ │ ├── golang.org │ │ │ └── x │ │ │ │ ├── net │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── http │ │ │ │ │ └── httpguts │ │ │ │ │ │ ├── guts.go │ │ │ │ │ │ └── httplex.go │ │ │ │ ├── http2 │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── Dockerfile │ │ │ │ │ ├── Makefile │ │ │ │ │ ├── README │ │ │ │ │ ├── ciphers.go │ │ │ │ │ ├── client_conn_pool.go │ │ │ │ │ ├── databuffer.go │ │ │ │ │ ├── errors.go │ │ │ │ │ ├── flow.go │ │ │ │ │ ├── frame.go │ │ │ │ │ ├── go111.go │ │ │ │ │ ├── gotrack.go │ │ │ │ │ ├── headermap.go │ │ │ │ │ ├── hpack │ │ │ │ │ │ ├── encode.go │ │ │ │ │ │ ├── hpack.go │ │ │ │ │ │ ├── huffman.go │ │ │ │ │ │ └── tables.go │ │ │ │ │ ├── http2.go │ │ │ │ │ ├── not_go111.go │ │ │ │ │ ├── pipe.go │ │ │ │ │ ├── server.go │ │ │ │ │ ├── transport.go │ │ │ │ │ ├── write.go │ │ │ │ │ ├── writesched.go │ │ │ │ │ ├── writesched_priority.go │ │ │ │ │ └── writesched_random.go │ │ │ │ ├── idna │ │ │ │ │ ├── idna10.0.0.go │ │ │ │ │ ├── idna9.0.0.go │ │ │ │ │ ├── punycode.go │ │ │ │ │ ├── tables10.0.0.go │ │ │ │ │ ├── tables11.0.0.go │ │ │ │ │ ├── tables9.0.0.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── trieval.go │ │ │ │ ├── internal │ │ │ │ │ └── timeseries │ │ │ │ │ │ └── timeseries.go │ │ │ │ └── trace │ │ │ │ │ ├── events.go │ │ │ │ │ ├── histogram.go │ │ │ │ │ └── trace.go │ │ │ │ ├── sys │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ └── unix │ │ │ │ │ ├── .gitignore │ │ │ │ │ ├── README.md │ │ │ │ │ ├── affinity_linux.go │ │ │ │ │ ├── aliases.go │ │ │ │ │ ├── asm_aix_ppc64.s │ │ │ │ │ ├── asm_darwin_386.s │ │ │ │ │ ├── asm_darwin_amd64.s │ │ │ │ │ ├── asm_darwin_arm.s │ │ │ │ │ ├── asm_darwin_arm64.s │ │ │ │ │ ├── asm_dragonfly_amd64.s │ │ │ │ │ ├── asm_freebsd_386.s │ │ │ │ │ ├── asm_freebsd_amd64.s │ │ │ │ │ ├── asm_freebsd_arm.s │ │ │ │ │ ├── asm_freebsd_arm64.s │ │ │ │ │ ├── asm_linux_386.s │ │ │ │ │ ├── asm_linux_amd64.s │ │ │ │ │ ├── asm_linux_arm.s │ │ │ │ │ ├── asm_linux_arm64.s │ │ │ │ │ ├── asm_linux_mips64x.s │ │ │ │ │ ├── asm_linux_mipsx.s │ │ │ │ │ ├── asm_linux_ppc64x.s │ │ │ │ │ ├── asm_linux_riscv64.s │ │ │ │ │ ├── asm_linux_s390x.s │ │ │ │ │ ├── asm_netbsd_386.s │ │ │ │ │ ├── asm_netbsd_amd64.s │ │ │ │ │ ├── asm_netbsd_arm.s │ │ │ │ │ ├── asm_netbsd_arm64.s │ │ │ │ │ ├── asm_openbsd_386.s │ │ │ │ │ ├── asm_openbsd_amd64.s │ │ │ │ │ ├── asm_openbsd_arm.s │ │ │ │ │ ├── asm_openbsd_arm64.s │ │ │ │ │ ├── asm_solaris_amd64.s │ │ │ │ │ ├── bluetooth_linux.go │ │ │ │ │ ├── cap_freebsd.go │ │ │ │ │ ├── constants.go │ │ │ │ │ ├── dev_aix_ppc.go │ │ │ │ │ ├── dev_aix_ppc64.go │ │ │ │ │ ├── dev_darwin.go │ │ │ │ │ ├── dev_dragonfly.go │ │ │ │ │ ├── dev_freebsd.go │ │ │ │ │ ├── dev_linux.go │ │ │ │ │ ├── dev_netbsd.go │ │ │ │ │ ├── dev_openbsd.go │ │ │ │ │ ├── dirent.go │ │ │ │ │ ├── endian_big.go │ │ │ │ │ ├── endian_little.go │ │ │ │ │ ├── env_unix.go │ │ │ │ │ ├── errors_freebsd_386.go │ │ │ │ │ ├── errors_freebsd_amd64.go │ │ │ │ │ ├── errors_freebsd_arm.go │ │ │ │ │ ├── fcntl.go │ │ │ │ │ ├── fcntl_darwin.go │ │ │ │ │ ├── fcntl_linux_32bit.go │ │ │ │ │ ├── gccgo.go │ │ │ │ │ ├── gccgo_c.c │ │ │ │ │ ├── gccgo_linux_amd64.go │ │ │ │ │ ├── ioctl.go │ │ │ │ │ ├── mkall.sh │ │ │ │ │ ├── mkasm_darwin.go │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── mkpost.go │ │ │ │ │ ├── mksyscall.go │ │ │ │ │ ├── mksyscall_aix_ppc.go │ │ │ │ │ ├── mksyscall_aix_ppc64.go │ │ │ │ │ ├── mksyscall_solaris.go │ │ │ │ │ ├── mksysctl_openbsd.go │ │ │ │ │ ├── mksysnum.go │ │ │ │ │ ├── pagesize_unix.go │ │ │ │ │ ├── pledge_openbsd.go │ │ │ │ │ ├── race.go │ │ │ │ │ ├── race0.go │ │ │ │ │ ├── readdirent_getdents.go │ │ │ │ │ ├── readdirent_getdirentries.go │ │ │ │ │ ├── sockcmsg_linux.go │ │ │ │ │ ├── sockcmsg_unix.go │ │ │ │ │ ├── str.go │ │ │ │ │ ├── syscall.go │ │ │ │ │ ├── syscall_aix.go │ │ │ │ │ ├── syscall_aix_ppc.go │ │ │ │ │ ├── syscall_aix_ppc64.go │ │ │ │ │ ├── syscall_bsd.go │ │ │ │ │ ├── syscall_darwin.go │ │ │ │ │ ├── syscall_darwin_386.go │ │ │ │ │ ├── syscall_darwin_amd64.go │ │ │ │ │ ├── syscall_darwin_arm.go │ │ │ │ │ ├── syscall_darwin_arm64.go │ │ │ │ │ ├── syscall_darwin_libSystem.go │ │ │ │ │ ├── syscall_dragonfly.go │ │ │ │ │ ├── syscall_dragonfly_amd64.go │ │ │ │ │ ├── syscall_freebsd.go │ │ │ │ │ ├── syscall_freebsd_386.go │ │ │ │ │ ├── syscall_freebsd_amd64.go │ │ │ │ │ ├── syscall_freebsd_arm.go │ │ │ │ │ ├── syscall_freebsd_arm64.go │ │ │ │ │ ├── syscall_linux.go │ │ │ │ │ ├── syscall_linux_386.go │ │ │ │ │ ├── syscall_linux_amd64.go │ │ │ │ │ ├── syscall_linux_amd64_gc.go │ │ │ │ │ ├── syscall_linux_arm.go │ │ │ │ │ ├── syscall_linux_arm64.go │ │ │ │ │ ├── syscall_linux_gc.go │ │ │ │ │ ├── syscall_linux_gc_386.go │ │ │ │ │ ├── syscall_linux_gccgo_386.go │ │ │ │ │ ├── syscall_linux_gccgo_arm.go │ │ │ │ │ ├── syscall_linux_mips64x.go │ │ │ │ │ ├── syscall_linux_mipsx.go │ │ │ │ │ ├── syscall_linux_ppc64x.go │ │ │ │ │ ├── syscall_linux_riscv64.go │ │ │ │ │ ├── syscall_linux_s390x.go │ │ │ │ │ ├── syscall_linux_sparc64.go │ │ │ │ │ ├── syscall_netbsd.go │ │ │ │ │ ├── syscall_netbsd_386.go │ │ │ │ │ ├── syscall_netbsd_amd64.go │ │ │ │ │ ├── syscall_netbsd_arm.go │ │ │ │ │ ├── syscall_netbsd_arm64.go │ │ │ │ │ ├── syscall_openbsd.go │ │ │ │ │ ├── syscall_openbsd_386.go │ │ │ │ │ ├── syscall_openbsd_amd64.go │ │ │ │ │ ├── syscall_openbsd_arm.go │ │ │ │ │ ├── syscall_openbsd_arm64.go │ │ │ │ │ ├── syscall_solaris.go │ │ │ │ │ ├── syscall_solaris_amd64.go │ │ │ │ │ ├── syscall_unix.go │ │ │ │ │ ├── syscall_unix_gc.go │ │ │ │ │ ├── syscall_unix_gc_ppc64x.go │ │ │ │ │ ├── timestruct.go │ │ │ │ │ ├── types_aix.go │ │ │ │ │ ├── types_darwin.go │ │ │ │ │ ├── types_dragonfly.go │ │ │ │ │ ├── types_freebsd.go │ │ │ │ │ ├── types_netbsd.go │ │ │ │ │ ├── types_openbsd.go │ │ │ │ │ ├── types_solaris.go │ │ │ │ │ ├── unveil_openbsd.go │ │ │ │ │ ├── xattr_bsd.go │ │ │ │ │ ├── zerrors_aix_ppc.go │ │ │ │ │ ├── zerrors_aix_ppc64.go │ │ │ │ │ ├── zerrors_darwin_386.go │ │ │ │ │ ├── zerrors_darwin_amd64.go │ │ │ │ │ ├── zerrors_darwin_arm.go │ │ │ │ │ ├── zerrors_darwin_arm64.go │ │ │ │ │ ├── zerrors_dragonfly_amd64.go │ │ │ │ │ ├── zerrors_freebsd_386.go │ │ │ │ │ ├── zerrors_freebsd_amd64.go │ │ │ │ │ ├── zerrors_freebsd_arm.go │ │ │ │ │ ├── zerrors_freebsd_arm64.go │ │ │ │ │ ├── zerrors_linux_386.go │ │ │ │ │ ├── zerrors_linux_amd64.go │ │ │ │ │ ├── zerrors_linux_arm.go │ │ │ │ │ ├── zerrors_linux_arm64.go │ │ │ │ │ ├── zerrors_linux_mips.go │ │ │ │ │ ├── zerrors_linux_mips64.go │ │ │ │ │ ├── zerrors_linux_mips64le.go │ │ │ │ │ ├── zerrors_linux_mipsle.go │ │ │ │ │ ├── zerrors_linux_ppc64.go │ │ │ │ │ ├── zerrors_linux_ppc64le.go │ │ │ │ │ ├── zerrors_linux_riscv64.go │ │ │ │ │ ├── zerrors_linux_s390x.go │ │ │ │ │ ├── zerrors_linux_sparc64.go │ │ │ │ │ ├── zerrors_netbsd_386.go │ │ │ │ │ ├── zerrors_netbsd_amd64.go │ │ │ │ │ ├── zerrors_netbsd_arm.go │ │ │ │ │ ├── zerrors_netbsd_arm64.go │ │ │ │ │ ├── zerrors_openbsd_386.go │ │ │ │ │ ├── zerrors_openbsd_amd64.go │ │ │ │ │ ├── zerrors_openbsd_arm.go │ │ │ │ │ ├── zerrors_openbsd_arm64.go │ │ │ │ │ ├── zerrors_solaris_amd64.go │ │ │ │ │ ├── zptrace386_linux.go │ │ │ │ │ ├── zptracearm_linux.go │ │ │ │ │ ├── zptracemips_linux.go │ │ │ │ │ ├── zptracemipsle_linux.go │ │ │ │ │ ├── zsyscall_aix_ppc.go │ │ │ │ │ ├── zsyscall_aix_ppc64.go │ │ │ │ │ ├── zsyscall_aix_ppc64_gc.go │ │ │ │ │ ├── zsyscall_aix_ppc64_gccgo.go │ │ │ │ │ ├── zsyscall_darwin_386.1_11.go │ │ │ │ │ ├── zsyscall_darwin_386.go │ │ │ │ │ ├── zsyscall_darwin_386.s │ │ │ │ │ ├── zsyscall_darwin_amd64.1_11.go │ │ │ │ │ ├── zsyscall_darwin_amd64.go │ │ │ │ │ ├── zsyscall_darwin_amd64.s │ │ │ │ │ ├── zsyscall_darwin_arm.1_11.go │ │ │ │ │ ├── zsyscall_darwin_arm.go │ │ │ │ │ ├── zsyscall_darwin_arm.s │ │ │ │ │ ├── zsyscall_darwin_arm64.1_11.go │ │ │ │ │ ├── zsyscall_darwin_arm64.go │ │ │ │ │ ├── zsyscall_darwin_arm64.s │ │ │ │ │ ├── zsyscall_dragonfly_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_386.go │ │ │ │ │ ├── zsyscall_freebsd_amd64.go │ │ │ │ │ ├── zsyscall_freebsd_arm.go │ │ │ │ │ ├── zsyscall_freebsd_arm64.go │ │ │ │ │ ├── zsyscall_linux_386.go │ │ │ │ │ ├── zsyscall_linux_amd64.go │ │ │ │ │ ├── zsyscall_linux_arm.go │ │ │ │ │ ├── zsyscall_linux_arm64.go │ │ │ │ │ ├── zsyscall_linux_mips.go │ │ │ │ │ ├── zsyscall_linux_mips64.go │ │ │ │ │ ├── zsyscall_linux_mips64le.go │ │ │ │ │ ├── zsyscall_linux_mipsle.go │ │ │ │ │ ├── zsyscall_linux_ppc64.go │ │ │ │ │ ├── zsyscall_linux_ppc64le.go │ │ │ │ │ ├── zsyscall_linux_riscv64.go │ │ │ │ │ ├── zsyscall_linux_s390x.go │ │ │ │ │ ├── zsyscall_linux_sparc64.go │ │ │ │ │ ├── zsyscall_netbsd_386.go │ │ │ │ │ ├── zsyscall_netbsd_amd64.go │ │ │ │ │ ├── zsyscall_netbsd_arm.go │ │ │ │ │ ├── zsyscall_netbsd_arm64.go │ │ │ │ │ ├── zsyscall_openbsd_386.go │ │ │ │ │ ├── zsyscall_openbsd_amd64.go │ │ │ │ │ ├── zsyscall_openbsd_arm.go │ │ │ │ │ ├── zsyscall_openbsd_arm64.go │ │ │ │ │ ├── zsyscall_solaris_amd64.go │ │ │ │ │ ├── zsysctl_openbsd_386.go │ │ │ │ │ ├── zsysctl_openbsd_amd64.go │ │ │ │ │ ├── zsysctl_openbsd_arm.go │ │ │ │ │ ├── zsysctl_openbsd_arm64.go │ │ │ │ │ ├── zsysnum_darwin_386.go │ │ │ │ │ ├── zsysnum_darwin_amd64.go │ │ │ │ │ ├── zsysnum_darwin_arm.go │ │ │ │ │ ├── zsysnum_darwin_arm64.go │ │ │ │ │ ├── zsysnum_dragonfly_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_386.go │ │ │ │ │ ├── zsysnum_freebsd_amd64.go │ │ │ │ │ ├── zsysnum_freebsd_arm.go │ │ │ │ │ ├── zsysnum_freebsd_arm64.go │ │ │ │ │ ├── zsysnum_linux_386.go │ │ │ │ │ ├── zsysnum_linux_amd64.go │ │ │ │ │ ├── zsysnum_linux_arm.go │ │ │ │ │ ├── zsysnum_linux_arm64.go │ │ │ │ │ ├── zsysnum_linux_mips.go │ │ │ │ │ ├── zsysnum_linux_mips64.go │ │ │ │ │ ├── zsysnum_linux_mips64le.go │ │ │ │ │ ├── zsysnum_linux_mipsle.go │ │ │ │ │ ├── zsysnum_linux_ppc64.go │ │ │ │ │ ├── zsysnum_linux_ppc64le.go │ │ │ │ │ ├── zsysnum_linux_riscv64.go │ │ │ │ │ ├── zsysnum_linux_s390x.go │ │ │ │ │ ├── zsysnum_linux_sparc64.go │ │ │ │ │ ├── zsysnum_netbsd_386.go │ │ │ │ │ ├── zsysnum_netbsd_amd64.go │ │ │ │ │ ├── zsysnum_netbsd_arm.go │ │ │ │ │ ├── zsysnum_netbsd_arm64.go │ │ │ │ │ ├── zsysnum_openbsd_386.go │ │ │ │ │ ├── zsysnum_openbsd_amd64.go │ │ │ │ │ ├── zsysnum_openbsd_arm.go │ │ │ │ │ ├── zsysnum_openbsd_arm64.go │ │ │ │ │ ├── ztypes_aix_ppc.go │ │ │ │ │ ├── ztypes_aix_ppc64.go │ │ │ │ │ ├── ztypes_darwin_386.go │ │ │ │ │ ├── ztypes_darwin_amd64.go │ │ │ │ │ ├── ztypes_darwin_arm.go │ │ │ │ │ ├── ztypes_darwin_arm64.go │ │ │ │ │ ├── ztypes_dragonfly_amd64.go │ │ │ │ │ ├── ztypes_freebsd_386.go │ │ │ │ │ ├── ztypes_freebsd_amd64.go │ │ │ │ │ ├── ztypes_freebsd_arm.go │ │ │ │ │ ├── ztypes_freebsd_arm64.go │ │ │ │ │ ├── ztypes_linux_386.go │ │ │ │ │ ├── ztypes_linux_amd64.go │ │ │ │ │ ├── ztypes_linux_arm.go │ │ │ │ │ ├── ztypes_linux_arm64.go │ │ │ │ │ ├── ztypes_linux_mips.go │ │ │ │ │ ├── ztypes_linux_mips64.go │ │ │ │ │ ├── ztypes_linux_mips64le.go │ │ │ │ │ ├── ztypes_linux_mipsle.go │ │ │ │ │ ├── ztypes_linux_ppc64.go │ │ │ │ │ ├── ztypes_linux_ppc64le.go │ │ │ │ │ ├── ztypes_linux_riscv64.go │ │ │ │ │ ├── ztypes_linux_s390x.go │ │ │ │ │ ├── ztypes_linux_sparc64.go │ │ │ │ │ ├── ztypes_netbsd_386.go │ │ │ │ │ ├── ztypes_netbsd_amd64.go │ │ │ │ │ ├── ztypes_netbsd_arm.go │ │ │ │ │ ├── ztypes_netbsd_arm64.go │ │ │ │ │ ├── ztypes_openbsd_386.go │ │ │ │ │ ├── ztypes_openbsd_amd64.go │ │ │ │ │ ├── ztypes_openbsd_arm.go │ │ │ │ │ ├── ztypes_openbsd_arm64.go │ │ │ │ │ └── ztypes_solaris_amd64.go │ │ │ │ └── text │ │ │ │ ├── AUTHORS │ │ │ │ ├── CONTRIBUTORS │ │ │ │ ├── LICENSE │ │ │ │ ├── PATENTS │ │ │ │ ├── collate │ │ │ │ ├── build │ │ │ │ │ ├── builder.go │ │ │ │ │ ├── colelem.go │ │ │ │ │ ├── contract.go │ │ │ │ │ ├── order.go │ │ │ │ │ ├── table.go │ │ │ │ │ └── trie.go │ │ │ │ ├── collate.go │ │ │ │ ├── index.go │ │ │ │ ├── maketables.go │ │ │ │ ├── option.go │ │ │ │ ├── sort.go │ │ │ │ └── tables.go │ │ │ │ ├── internal │ │ │ │ ├── colltab │ │ │ │ │ ├── collelem.go │ │ │ │ │ ├── colltab.go │ │ │ │ │ ├── contract.go │ │ │ │ │ ├── iter.go │ │ │ │ │ ├── numeric.go │ │ │ │ │ ├── table.go │ │ │ │ │ ├── trie.go │ │ │ │ │ └── weighter.go │ │ │ │ ├── gen │ │ │ │ │ ├── code.go │ │ │ │ │ └── gen.go │ │ │ │ ├── language │ │ │ │ │ ├── common.go │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── compact │ │ │ │ │ │ ├── compact.go │ │ │ │ │ │ ├── gen.go │ │ │ │ │ │ ├── gen_index.go │ │ │ │ │ │ ├── gen_parents.go │ │ │ │ │ │ ├── language.go │ │ │ │ │ │ ├── parents.go │ │ │ │ │ │ ├── tables.go │ │ │ │ │ │ └── tags.go │ │ │ │ │ ├── compose.go │ │ │ │ │ ├── coverage.go │ │ │ │ │ ├── gen.go │ │ │ │ │ ├── gen_common.go │ │ │ │ │ ├── language.go │ │ │ │ │ ├── lookup.go │ │ │ │ │ ├── match.go │ │ │ │ │ ├── parse.go │ │ │ │ │ ├── tables.go │ │ │ │ │ └── tags.go │ │ │ │ ├── tag │ │ │ │ │ └── tag.go │ │ │ │ ├── triegen │ │ │ │ │ ├── compact.go │ │ │ │ │ ├── print.go │ │ │ │ │ └── triegen.go │ │ │ │ └── ucd │ │ │ │ │ └── ucd.go │ │ │ │ ├── language │ │ │ │ ├── coverage.go │ │ │ │ ├── doc.go │ │ │ │ ├── gen.go │ │ │ │ ├── go1_1.go │ │ │ │ ├── go1_2.go │ │ │ │ ├── language.go │ │ │ │ ├── match.go │ │ │ │ ├── parse.go │ │ │ │ ├── tables.go │ │ │ │ └── tags.go │ │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ ├── bidirule.go │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ └── bidirule9.0.0.go │ │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── gen.go │ │ │ │ ├── gen_ranges.go │ │ │ │ ├── gen_trieval.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ │ ├── cldr │ │ │ │ ├── base.go │ │ │ │ ├── cldr.go │ │ │ │ ├── collate.go │ │ │ │ ├── decode.go │ │ │ │ ├── makexml.go │ │ │ │ ├── resolve.go │ │ │ │ ├── slice.go │ │ │ │ └── xml.go │ │ │ │ ├── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── maketables.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ ├── trie.go │ │ │ │ └── triegen.go │ │ │ │ └── rangetable │ │ │ │ ├── gen.go │ │ │ │ ├── merge.go │ │ │ │ ├── rangetable.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ └── tables9.0.0.go │ │ │ └── google.golang.org │ │ │ ├── genproto │ │ │ ├── LICENSE │ │ │ └── googleapis │ │ │ │ └── rpc │ │ │ │ └── status │ │ │ │ └── status.pb.go │ │ │ └── grpc │ │ │ ├── .travis.yml │ │ │ ├── AUTHORS │ │ │ ├── CONTRIBUTING.md │ │ │ ├── LICENSE │ │ │ ├── Makefile │ │ │ ├── README.md │ │ │ ├── backoff.go │ │ │ ├── balancer.go │ │ │ ├── balancer │ │ │ ├── balancer.go │ │ │ ├── base │ │ │ │ ├── balancer.go │ │ │ │ └── base.go │ │ │ └── roundrobin │ │ │ │ └── roundrobin.go │ │ │ ├── balancer_conn_wrappers.go │ │ │ ├── balancer_v1_wrapper.go │ │ │ ├── binarylog │ │ │ └── grpc_binarylog_v1 │ │ │ │ └── binarylog.pb.go │ │ │ ├── call.go │ │ │ ├── clientconn.go │ │ │ ├── codec.go │ │ │ ├── codegen.sh │ │ │ ├── codes │ │ │ ├── code_string.go │ │ │ └── codes.go │ │ │ ├── connectivity │ │ │ └── connectivity.go │ │ │ ├── credentials │ │ │ ├── credentials.go │ │ │ ├── internal │ │ │ │ ├── syscallconn.go │ │ │ │ └── syscallconn_appengine.go │ │ │ └── tls13.go │ │ │ ├── dialoptions.go │ │ │ ├── doc.go │ │ │ ├── encoding │ │ │ ├── encoding.go │ │ │ └── proto │ │ │ │ └── proto.go │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── grpclog │ │ │ ├── grpclog.go │ │ │ ├── logger.go │ │ │ └── loggerv2.go │ │ │ ├── install_gae.sh │ │ │ ├── interceptor.go │ │ │ ├── internal │ │ │ ├── backoff │ │ │ │ └── backoff.go │ │ │ ├── balancerload │ │ │ │ └── load.go │ │ │ ├── binarylog │ │ │ │ ├── binarylog.go │ │ │ │ ├── binarylog_testutil.go │ │ │ │ ├── env_config.go │ │ │ │ ├── method_logger.go │ │ │ │ ├── regenerate.sh │ │ │ │ ├── sink.go │ │ │ │ └── util.go │ │ │ ├── channelz │ │ │ │ ├── funcs.go │ │ │ │ ├── types.go │ │ │ │ ├── types_linux.go │ │ │ │ ├── types_nonlinux.go │ │ │ │ ├── util_linux.go │ │ │ │ └── util_nonlinux.go │ │ │ ├── envconfig │ │ │ │ └── envconfig.go │ │ │ ├── grpcrand │ │ │ │ └── grpcrand.go │ │ │ ├── grpcsync │ │ │ │ └── event.go │ │ │ ├── internal.go │ │ │ ├── syscall │ │ │ │ ├── syscall_linux.go │ │ │ │ └── syscall_nonlinux.go │ │ │ └── transport │ │ │ │ ├── bdp_estimator.go │ │ │ │ ├── controlbuf.go │ │ │ │ ├── defaults.go │ │ │ │ ├── flowcontrol.go │ │ │ │ ├── handler_server.go │ │ │ │ ├── http2_client.go │ │ │ │ ├── http2_server.go │ │ │ │ ├── http_util.go │ │ │ │ ├── log.go │ │ │ │ └── transport.go │ │ │ ├── keepalive │ │ │ └── keepalive.go │ │ │ ├── metadata │ │ │ └── metadata.go │ │ │ ├── naming │ │ │ ├── dns_resolver.go │ │ │ └── naming.go │ │ │ ├── peer │ │ │ └── peer.go │ │ │ ├── picker_wrapper.go │ │ │ ├── pickfirst.go │ │ │ ├── preloader.go │ │ │ ├── proxy.go │ │ │ ├── resolver │ │ │ ├── dns │ │ │ │ └── dns_resolver.go │ │ │ ├── passthrough │ │ │ │ └── passthrough.go │ │ │ └── resolver.go │ │ │ ├── resolver_conn_wrapper.go │ │ │ ├── rpc_util.go │ │ │ ├── server.go │ │ │ ├── service_config.go │ │ │ ├── serviceconfig │ │ │ └── serviceconfig.go │ │ │ ├── stats │ │ │ ├── handlers.go │ │ │ └── stats.go │ │ │ ├── status │ │ │ └── status.go │ │ │ ├── stream.go │ │ │ ├── tap │ │ │ └── tap.go │ │ │ ├── trace.go │ │ │ ├── version.go │ │ │ └── vet.sh │ ├── java │ │ └── legacyJava │ │ │ ├── build.gradle │ │ │ ├── settings.gradle │ │ │ └── src │ │ │ └── main │ │ │ └── java │ │ │ └── org │ │ │ └── hyperledger │ │ │ └── fabric │ │ │ └── example │ │ │ └── SimpleChaincode.java │ └── node │ │ ├── events │ │ ├── index.js │ │ ├── lib │ │ │ └── events.js │ │ ├── metadata │ │ │ ├── .noignore │ │ │ └── collections.json │ │ └── package.json │ │ ├── fabcar │ │ ├── index.js │ │ ├── lib │ │ │ └── fabcar.js │ │ ├── metadata │ │ │ ├── .noignore │ │ │ └── collections.json │ │ └── package.json │ │ ├── fabcarUpgrade │ │ ├── index.js │ │ ├── lib │ │ │ └── fabcar.js │ │ ├── metadata │ │ │ └── .noignore │ │ └── package.json │ │ └── legacyNode │ │ ├── chaincode.js │ │ ├── metadata │ │ └── statedb │ │ │ └── couchdb │ │ │ └── indexes │ │ │ ├── index.json │ │ │ └── index.notjson │ │ └── package.json ├── crypto-material │ ├── README.md │ ├── config-base │ │ ├── configtx.yaml │ │ ├── core.yaml │ │ ├── crypto-config.yaml │ │ └── generate.sh │ ├── config-update │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ └── generate.sh │ ├── config-v2 │ │ ├── configtx.yaml │ │ ├── crypto-config.yaml │ │ └── generate.sh │ ├── generateAll.sh │ └── mychannelator.json ├── docker-compose │ ├── docker-compose-base.yaml │ ├── docker-compose-cli.yaml │ ├── docker-compose-tls.yaml │ └── docker-compose.yaml └── hsm │ └── softhsm2.conf └── ts-scenario ├── .gitignore ├── README.md ├── config ├── Org1.json ├── Org1.yaml ├── Org2.json ├── Org2.yaml ├── ccp-client-only.json ├── ccp-discovery.json ├── ccp-lifecycle-tls.json ├── ccp-lifecycle.json ├── ccp-tls.json ├── ccp.json └── policies.json ├── features ├── base_api_v1.feature ├── base_api_v2.feature ├── chaincode_lifecycle.feature.norun ├── channel_operations.feature.norun ├── client_only.feature ├── deprecated_sdk.feature.norun ├── discovery.feature ├── events.feature ├── gateway.feature ├── hsm-gateway.feature └── nontls-gateway.feature ├── src ├── handlers │ ├── sample-query-handler.ts │ └── sample-transaction-event-handler.ts ├── steps │ ├── base_api.ts │ ├── cli.ts │ ├── constants.ts │ ├── debug.ts │ ├── deprecated.ts │ ├── docker.ts │ ├── event-listeners.ts │ ├── lib │ │ ├── chaincode.ts │ │ ├── channel.ts │ │ ├── contract.ts │ │ ├── deprecatedSDK.ts │ │ ├── gateway.ts │ │ ├── listeners.ts │ │ ├── transactions.ts │ │ └── utility │ │ │ ├── adminUtils.ts │ │ │ ├── baseUtils.ts │ │ │ ├── clientUtils.ts │ │ │ ├── commandRunner.ts │ │ │ ├── commonConnectionProfileHelper.ts │ │ │ └── stateStore.ts │ ├── lifecycle.ts │ └── network-model.ts └── support │ └── hooks.ts └── tsconfig.json /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.eslintrc.json -------------------------------------------------------------------------------- /.github/settings.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.github/settings.yml -------------------------------------------------------------------------------- /.github/workflows/pull_request.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.github/workflows/pull_request.yml -------------------------------------------------------------------------------- /.github/workflows/push.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.github/workflows/push.yml -------------------------------------------------------------------------------- /.github/workflows/scheduled.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.github/workflows/scheduled.yml -------------------------------------------------------------------------------- /.github/workflows/test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.github/workflows/test.yml -------------------------------------------------------------------------------- /.github/workflows/vulnerability_scan.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.github/workflows/vulnerability_scan.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/README.md -------------------------------------------------------------------------------- /RELEASING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/RELEASING.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/SECURITY.md -------------------------------------------------------------------------------- /docs/custom_theme/searchbox.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/custom_theme/searchbox.html -------------------------------------------------------------------------------- /docs/images/sdk-node-pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/images/sdk-node-pipeline.png -------------------------------------------------------------------------------- /docs/images/standalone-app-developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/images/standalone-app-developer.png -------------------------------------------------------------------------------- /docs/images/web-app-developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/images/web-app-developer.png -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/jsdoc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/jsdoc.json -------------------------------------------------------------------------------- /docs/redirectTemplates/404.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/redirectTemplates/404.html -------------------------------------------------------------------------------- /docs/redirectTemplates/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/redirectTemplates/index.md -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/requirements.txt -------------------------------------------------------------------------------- /docs/tutorials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials.json -------------------------------------------------------------------------------- /docs/tutorials/commonconnectionprofile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/commonconnectionprofile.md -------------------------------------------------------------------------------- /docs/tutorials/discovery-fabric-network.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/discovery-fabric-network.md -------------------------------------------------------------------------------- /docs/tutorials/event-checkpointer.md.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/event-checkpointer.md.ignore -------------------------------------------------------------------------------- /docs/tutorials/grpc-settings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/grpc-settings.md -------------------------------------------------------------------------------- /docs/tutorials/handlers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/handlers.md -------------------------------------------------------------------------------- /docs/tutorials/listening-to-events.md.ignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/listening-to-events.md.ignore -------------------------------------------------------------------------------- /docs/tutorials/logging.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/logging.md -------------------------------------------------------------------------------- /docs/tutorials/migration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/migration.md -------------------------------------------------------------------------------- /docs/tutorials/query-peers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/query-peers.md -------------------------------------------------------------------------------- /docs/tutorials/sign-transaction-offline.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/sign-transaction-offline.md -------------------------------------------------------------------------------- /docs/tutorials/transaction-commit-events.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/transaction-commit-events.md -------------------------------------------------------------------------------- /docs/tutorials/tutorials.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/tutorials.json -------------------------------------------------------------------------------- /docs/tutorials/wallet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/docs/tutorials/wallet.md -------------------------------------------------------------------------------- /fabric-ca-client/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/.eslintignore -------------------------------------------------------------------------------- /fabric-ca-client/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/.npmignore -------------------------------------------------------------------------------- /fabric-ca-client/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /fabric-ca-client/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/README.md -------------------------------------------------------------------------------- /fabric-ca-client/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/config/default.json -------------------------------------------------------------------------------- /fabric-ca-client/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/index.js -------------------------------------------------------------------------------- /fabric-ca-client/lib/AffiliationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/lib/AffiliationService.js -------------------------------------------------------------------------------- /fabric-ca-client/lib/CertificateService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/lib/CertificateService.js -------------------------------------------------------------------------------- /fabric-ca-client/lib/FabricCAClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/lib/FabricCAClient.js -------------------------------------------------------------------------------- /fabric-ca-client/lib/FabricCAServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/lib/FabricCAServices.js -------------------------------------------------------------------------------- /fabric-ca-client/lib/IdentityService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/lib/IdentityService.js -------------------------------------------------------------------------------- /fabric-ca-client/lib/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/lib/helper.js -------------------------------------------------------------------------------- /fabric-ca-client/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/package.json -------------------------------------------------------------------------------- /fabric-ca-client/test/AffiliationService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/test/AffiliationService.js -------------------------------------------------------------------------------- /fabric-ca-client/test/CertificateService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/test/CertificateService.js -------------------------------------------------------------------------------- /fabric-ca-client/test/FabricCAClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/test/FabricCAClient.js -------------------------------------------------------------------------------- /fabric-ca-client/test/FabricCAServices.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/test/FabricCAServices.js -------------------------------------------------------------------------------- /fabric-ca-client/test/IdentityService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/test/IdentityService.js -------------------------------------------------------------------------------- /fabric-ca-client/test/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/test/helper.js -------------------------------------------------------------------------------- /fabric-ca-client/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-ca-client/types/index.d.ts -------------------------------------------------------------------------------- /fabric-common/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/.eslintignore -------------------------------------------------------------------------------- /fabric-common/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/.npmignore -------------------------------------------------------------------------------- /fabric-common/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /fabric-common/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/README.md -------------------------------------------------------------------------------- /fabric-common/config/default.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/config/default.json -------------------------------------------------------------------------------- /fabric-common/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/index.js -------------------------------------------------------------------------------- /fabric-common/lib/BaseClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/BaseClient.js -------------------------------------------------------------------------------- /fabric-common/lib/BlockDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/BlockDecoder.js -------------------------------------------------------------------------------- /fabric-common/lib/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Channel.js -------------------------------------------------------------------------------- /fabric-common/lib/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Client.js -------------------------------------------------------------------------------- /fabric-common/lib/Commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Commit.js -------------------------------------------------------------------------------- /fabric-common/lib/Committer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Committer.js -------------------------------------------------------------------------------- /fabric-common/lib/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Config.js -------------------------------------------------------------------------------- /fabric-common/lib/CryptoAlgorithms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/CryptoAlgorithms.js -------------------------------------------------------------------------------- /fabric-common/lib/CryptoSuite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/CryptoSuite.js -------------------------------------------------------------------------------- /fabric-common/lib/Discoverer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Discoverer.js -------------------------------------------------------------------------------- /fabric-common/lib/DiscoveryHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/DiscoveryHandler.js -------------------------------------------------------------------------------- /fabric-common/lib/DiscoveryResultsProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/DiscoveryResultsProcessor.js -------------------------------------------------------------------------------- /fabric-common/lib/DiscoveryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/DiscoveryService.js -------------------------------------------------------------------------------- /fabric-common/lib/Endorsement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Endorsement.js -------------------------------------------------------------------------------- /fabric-common/lib/Endorser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Endorser.js -------------------------------------------------------------------------------- /fabric-common/lib/Endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Endpoint.js -------------------------------------------------------------------------------- /fabric-common/lib/EventListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/EventListener.js -------------------------------------------------------------------------------- /fabric-common/lib/EventService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/EventService.js -------------------------------------------------------------------------------- /fabric-common/lib/Eventer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Eventer.js -------------------------------------------------------------------------------- /fabric-common/lib/Hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Hash.js -------------------------------------------------------------------------------- /fabric-common/lib/HashPrimitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/HashPrimitives.js -------------------------------------------------------------------------------- /fabric-common/lib/Identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Identity.js -------------------------------------------------------------------------------- /fabric-common/lib/IdentityContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/IdentityContext.js -------------------------------------------------------------------------------- /fabric-common/lib/Key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Key.js -------------------------------------------------------------------------------- /fabric-common/lib/KeyValueStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/KeyValueStore.js -------------------------------------------------------------------------------- /fabric-common/lib/Proposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Proposal.js -------------------------------------------------------------------------------- /fabric-common/lib/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Query.js -------------------------------------------------------------------------------- /fabric-common/lib/ServiceAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/ServiceAction.js -------------------------------------------------------------------------------- /fabric-common/lib/ServiceEndpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/ServiceEndpoint.js -------------------------------------------------------------------------------- /fabric-common/lib/ServiceHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/ServiceHandler.js -------------------------------------------------------------------------------- /fabric-common/lib/Signer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Signer.js -------------------------------------------------------------------------------- /fabric-common/lib/SigningIdentity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/SigningIdentity.js -------------------------------------------------------------------------------- /fabric-common/lib/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/User.js -------------------------------------------------------------------------------- /fabric-common/lib/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/Utils.js -------------------------------------------------------------------------------- /fabric-common/lib/hash/hash_sha2_256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/hash/hash_sha2_256.js -------------------------------------------------------------------------------- /fabric-common/lib/hash/hash_sha2_384.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/hash/hash_sha2_384.js -------------------------------------------------------------------------------- /fabric-common/lib/impl/CryptoKeyStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/impl/CryptoKeyStore.js -------------------------------------------------------------------------------- /fabric-common/lib/impl/CryptoSuite_ECDSA_AES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/impl/CryptoSuite_ECDSA_AES.js -------------------------------------------------------------------------------- /fabric-common/lib/impl/InMemoryKeyValueStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/impl/InMemoryKeyValueStore.js -------------------------------------------------------------------------------- /fabric-common/lib/impl/aes/pkcs11_key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/impl/aes/pkcs11_key.js -------------------------------------------------------------------------------- /fabric-common/lib/impl/bccsp_pkcs11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/impl/bccsp_pkcs11.js -------------------------------------------------------------------------------- /fabric-common/lib/impl/ecdsa/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/impl/ecdsa/key.js -------------------------------------------------------------------------------- /fabric-common/lib/impl/ecdsa/pkcs11_key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/lib/impl/ecdsa/pkcs11_key.js -------------------------------------------------------------------------------- /fabric-common/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/package.json -------------------------------------------------------------------------------- /fabric-common/test/BaseClient.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/BaseClient.js -------------------------------------------------------------------------------- /fabric-common/test/BlockDecoder.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/BlockDecoder.js -------------------------------------------------------------------------------- /fabric-common/test/Channel.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Channel.js -------------------------------------------------------------------------------- /fabric-common/test/Client.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Client.js -------------------------------------------------------------------------------- /fabric-common/test/Commit.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Commit.js -------------------------------------------------------------------------------- /fabric-common/test/Committer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Committer.js -------------------------------------------------------------------------------- /fabric-common/test/Config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Config.js -------------------------------------------------------------------------------- /fabric-common/test/CryptoSuite.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/CryptoSuite.js -------------------------------------------------------------------------------- /fabric-common/test/Discoverer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Discoverer.js -------------------------------------------------------------------------------- /fabric-common/test/DiscoveryHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/DiscoveryHandler.js -------------------------------------------------------------------------------- /fabric-common/test/DiscoveryResultsProcessor.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/DiscoveryResultsProcessor.js -------------------------------------------------------------------------------- /fabric-common/test/DiscoveryService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/DiscoveryService.js -------------------------------------------------------------------------------- /fabric-common/test/Endorsement.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Endorsement.js -------------------------------------------------------------------------------- /fabric-common/test/Endorser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Endorser.js -------------------------------------------------------------------------------- /fabric-common/test/Endpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Endpoint.js -------------------------------------------------------------------------------- /fabric-common/test/EventListener.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/EventListener.js -------------------------------------------------------------------------------- /fabric-common/test/EventService.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/EventService.js -------------------------------------------------------------------------------- /fabric-common/test/Eventer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Eventer.js -------------------------------------------------------------------------------- /fabric-common/test/Hash.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Hash.js -------------------------------------------------------------------------------- /fabric-common/test/HashPrimitives.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/HashPrimitives.js -------------------------------------------------------------------------------- /fabric-common/test/Identity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Identity.js -------------------------------------------------------------------------------- /fabric-common/test/IdentityContext.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/IdentityContext.js -------------------------------------------------------------------------------- /fabric-common/test/Key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Key.js -------------------------------------------------------------------------------- /fabric-common/test/KeyValueStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/KeyValueStore.js -------------------------------------------------------------------------------- /fabric-common/test/Proposal.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Proposal.js -------------------------------------------------------------------------------- /fabric-common/test/Query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Query.js -------------------------------------------------------------------------------- /fabric-common/test/ServiceAction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/ServiceAction.js -------------------------------------------------------------------------------- /fabric-common/test/ServiceEndpoint.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/ServiceEndpoint.js -------------------------------------------------------------------------------- /fabric-common/test/ServiceHandler.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/ServiceHandler.js -------------------------------------------------------------------------------- /fabric-common/test/Signer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Signer.js -------------------------------------------------------------------------------- /fabric-common/test/SigningIdentity.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/SigningIdentity.js -------------------------------------------------------------------------------- /fabric-common/test/TestUtils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/TestUtils.js -------------------------------------------------------------------------------- /fabric-common/test/User.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/User.js -------------------------------------------------------------------------------- /fabric-common/test/Utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/Utils.js -------------------------------------------------------------------------------- /fabric-common/test/data/cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/data/cert.pem -------------------------------------------------------------------------------- /fabric-common/test/data/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/data/key.pem -------------------------------------------------------------------------------- /fabric-common/test/hash/hash_sha2_256.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/hash/hash_sha2_256.js -------------------------------------------------------------------------------- /fabric-common/test/hash/hash_sha2_384.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/hash/hash_sha2_384.js -------------------------------------------------------------------------------- /fabric-common/test/impl/CryptoSuite_ECDSA_AES.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/impl/CryptoSuite_ECDSA_AES.js -------------------------------------------------------------------------------- /fabric-common/test/impl/InMemoryKeyValueStore.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/impl/InMemoryKeyValueStore.js -------------------------------------------------------------------------------- /fabric-common/test/impl/bccsp_pkcs11.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/impl/bccsp_pkcs11.js -------------------------------------------------------------------------------- /fabric-common/test/impl/ecdsa/key.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/impl/ecdsa/key.js -------------------------------------------------------------------------------- /fabric-common/test/impl/pkcs11jsStub.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/test/impl/pkcs11jsStub.js -------------------------------------------------------------------------------- /fabric-common/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/types/index.d.ts -------------------------------------------------------------------------------- /fabric-common/types/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-common/types/tsconfig.json -------------------------------------------------------------------------------- /fabric-network/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/.npmignore -------------------------------------------------------------------------------- /fabric-network/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /fabric-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/README.md -------------------------------------------------------------------------------- /fabric-network/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/index.js -------------------------------------------------------------------------------- /fabric-network/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/package.json -------------------------------------------------------------------------------- /fabric-network/src/checkpointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/checkpointer.ts -------------------------------------------------------------------------------- /fabric-network/src/contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/contract.ts -------------------------------------------------------------------------------- /fabric-network/src/defaultcheckpointers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/defaultcheckpointers.ts -------------------------------------------------------------------------------- /fabric-network/src/errors/fabricerror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/errors/fabricerror.ts -------------------------------------------------------------------------------- /fabric-network/src/errors/timeouterror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/errors/timeouterror.ts -------------------------------------------------------------------------------- /fabric-network/src/errors/transactionerror.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/errors/transactionerror.ts -------------------------------------------------------------------------------- /fabric-network/src/events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/events.ts -------------------------------------------------------------------------------- /fabric-network/src/gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/gateway.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/ccp/networkconfig.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/ccp/networkconfig.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/allfortxstrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/allfortxstrategy.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/anyfortxstrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/anyfortxstrategy.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/asyncnotifier.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/asyncnotifier.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/blockeventsource.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/blockeventsource.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/commiteventfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/commiteventfactory.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/commitlistenersession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/commitlistenersession.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/contractlistenersession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/contractlistenersession.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/defaulteventhandlerstrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/defaulteventhandlerstrategies.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/eventservicemanager.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/eventservicemanager.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/filteredblockeventfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/filteredblockeventfactory.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/fullblockeventfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/fullblockeventfactory.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/fullcontracteventfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/fullcontracteventfactory.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/fulltransactioneventfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/fulltransactioneventfactory.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/isolatedblocklistenersession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/isolatedblocklistenersession.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/listeners.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/listenersession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/listenersession.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/orderedblockqueue.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/orderedblockqueue.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/privateblockeventfactory.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/privateblockeventfactory.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/sharedblocklistenersession.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/sharedblocklistenersession.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/transactioneventhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/transactioneventhandler.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/transactioneventstrategy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/transactioneventstrategy.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/event/transactionstatus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/event/transactionstatus.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/filecheckpointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/filecheckpointer.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/gatewayutils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/gatewayutils.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/query/defaultqueryhandlerstrategies.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/query/defaultqueryhandlerstrategies.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/query/query.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/query/query.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/query/queryhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/query/queryhandler.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/query/roundrobinqueryhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/query/roundrobinqueryhandler.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/query/singlequeryhandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/query/singlequeryhandler.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/couchdbwalletstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/couchdbwalletstore.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/filesystemwalletstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/filesystemwalletstore.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/hsmx509identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/hsmx509identity.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/identity.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/identitydata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/identitydata.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/identityprovider.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/identityprovider.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/identityproviderregistry.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/identityproviderregistry.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/inmemorywalletstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/inmemorywalletstore.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/wallet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/wallet.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/wallets.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/wallets.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/walletstore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/walletstore.ts -------------------------------------------------------------------------------- /fabric-network/src/impl/wallet/x509identity.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/impl/wallet/x509identity.ts -------------------------------------------------------------------------------- /fabric-network/src/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/logger.ts -------------------------------------------------------------------------------- /fabric-network/src/network.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/network.ts -------------------------------------------------------------------------------- /fabric-network/src/transaction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/src/transaction.ts -------------------------------------------------------------------------------- /fabric-network/test/contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/contract.js -------------------------------------------------------------------------------- /fabric-network/test/gateway.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/gateway.js -------------------------------------------------------------------------------- /fabric-network/test/impl/ccp/networkconfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/ccp/networkconfig.js -------------------------------------------------------------------------------- /fabric-network/test/impl/event/asyncnotifier.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/asyncnotifier.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/blocklistener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/blocklistener.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/commitlistener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/commitlistener.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/contractlistener.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/contractlistener.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/defaulteventhandlerstrategies.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/defaulteventhandlerstrategies.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/eventstrategy.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/eventstrategy.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/listeners.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/listeners.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/orderedblockqueue.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/orderedblockqueue.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/stubcheckpointer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/stubcheckpointer.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/stubeventservice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/stubeventservice.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/event/transactioneventhandler.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/event/transactioneventhandler.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/filecheckpointer.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/filecheckpointer.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/query/defaultqueryhandlerstrategies.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/query/defaultqueryhandlerstrategies.js -------------------------------------------------------------------------------- /fabric-network/test/impl/query/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/query/query.js -------------------------------------------------------------------------------- /fabric-network/test/impl/query/queryhandlers.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/query/queryhandlers.js -------------------------------------------------------------------------------- /fabric-network/test/impl/wallet/identityprovider.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/wallet/identityprovider.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/wallet/identityproviderregistry.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/wallet/identityproviderregistry.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/wallet/wallet-interop.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/wallet/wallet-interop.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/wallet/wallet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/wallet/wallet.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/impl/wallet/walletstore.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/impl/wallet/walletstore.spec.ts -------------------------------------------------------------------------------- /fabric-network/test/network.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/network.js -------------------------------------------------------------------------------- /fabric-network/test/testutils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/testutils.ts -------------------------------------------------------------------------------- /fabric-network/test/transaction.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/transaction.js -------------------------------------------------------------------------------- /fabric-network/test/wallet/testuser.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/test/wallet/testuser.id -------------------------------------------------------------------------------- /fabric-network/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/tsconfig.json -------------------------------------------------------------------------------- /fabric-network/tsconfig.lint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/tsconfig.lint.json -------------------------------------------------------------------------------- /fabric-network/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-network/types/index.d.ts -------------------------------------------------------------------------------- /fabric-protos/.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/.npmignore -------------------------------------------------------------------------------- /fabric-protos/.npmrc: -------------------------------------------------------------------------------- 1 | engine-strict=true 2 | -------------------------------------------------------------------------------- /fabric-protos/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/README.md -------------------------------------------------------------------------------- /fabric-protos/bundle.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/bundle.js -------------------------------------------------------------------------------- /fabric-protos/fabric.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/fabric.proto -------------------------------------------------------------------------------- /fabric-protos/google-protos/google/protobuf/empty.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/google-protos/google/protobuf/empty.proto -------------------------------------------------------------------------------- /fabric-protos/google-protos/google/protobuf/timestamp.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/google-protos/google/protobuf/timestamp.proto -------------------------------------------------------------------------------- /fabric-protos/grpc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/grpc.js -------------------------------------------------------------------------------- /fabric-protos/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/index.js -------------------------------------------------------------------------------- /fabric-protos/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/package.json -------------------------------------------------------------------------------- /fabric-protos/protos/common/collection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/common/collection.proto -------------------------------------------------------------------------------- /fabric-protos/protos/common/common.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/common/common.proto -------------------------------------------------------------------------------- /fabric-protos/protos/common/configtx.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/common/configtx.proto -------------------------------------------------------------------------------- /fabric-protos/protos/common/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/common/configuration.proto -------------------------------------------------------------------------------- /fabric-protos/protos/common/ledger.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/common/ledger.proto -------------------------------------------------------------------------------- /fabric-protos/protos/common/policies.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/common/policies.proto -------------------------------------------------------------------------------- /fabric-protos/protos/discovery/protocol.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/discovery/protocol.proto -------------------------------------------------------------------------------- /fabric-protos/protos/gossip/message.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/gossip/message.proto -------------------------------------------------------------------------------- /fabric-protos/protos/ledger/queryresult/kv_query_result.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/ledger/queryresult/kv_query_result.proto -------------------------------------------------------------------------------- /fabric-protos/protos/ledger/rwset/kvrwset/kv_rwset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/ledger/rwset/kvrwset/kv_rwset.proto -------------------------------------------------------------------------------- /fabric-protos/protos/ledger/rwset/rwset.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/ledger/rwset/rwset.proto -------------------------------------------------------------------------------- /fabric-protos/protos/msp/identities.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/msp/identities.proto -------------------------------------------------------------------------------- /fabric-protos/protos/msp/msp_config.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/msp/msp_config.proto -------------------------------------------------------------------------------- /fabric-protos/protos/msp/msp_principal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/msp/msp_principal.proto -------------------------------------------------------------------------------- /fabric-protos/protos/orderer/ab.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/orderer/ab.proto -------------------------------------------------------------------------------- /fabric-protos/protos/orderer/cluster.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/orderer/cluster.proto -------------------------------------------------------------------------------- /fabric-protos/protos/orderer/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/orderer/configuration.proto -------------------------------------------------------------------------------- /fabric-protos/protos/orderer/etcdraft/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/orderer/etcdraft/configuration.proto -------------------------------------------------------------------------------- /fabric-protos/protos/orderer/etcdraft/metadata.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/orderer/etcdraft/metadata.proto -------------------------------------------------------------------------------- /fabric-protos/protos/orderer/kafka.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/orderer/kafka.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/chaincode.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/chaincode.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/chaincode_event.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/chaincode_event.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/chaincode_shim.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/chaincode_shim.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/collection.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/collection.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/configuration.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/configuration.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/events.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/events.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/lifecycle/chaincode_definition.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/lifecycle/chaincode_definition.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/lifecycle/db.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/lifecycle/db.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/lifecycle/lifecycle.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/lifecycle/lifecycle.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/peer.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/peer.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/policy.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/policy.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/proposal.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/proposal.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/proposal_response.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/proposal_response.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/query.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/query.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/resources.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/resources.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/signed_cc_dep_spec.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/signed_cc_dep_spec.proto -------------------------------------------------------------------------------- /fabric-protos/protos/peer/transaction.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/peer/transaction.proto -------------------------------------------------------------------------------- /fabric-protos/protos/transientstore/transientstore.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/protos/transientstore/transientstore.proto -------------------------------------------------------------------------------- /fabric-protos/types/index.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/fabric-protos/types/index.d.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/package.json -------------------------------------------------------------------------------- /release_notes/v1.0.0-beta.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.0.0-beta.md -------------------------------------------------------------------------------- /release_notes/v1.0.0-rc1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.0.0-rc1.txt -------------------------------------------------------------------------------- /release_notes/v1.0.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.0.0.txt -------------------------------------------------------------------------------- /release_notes/v1.0.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.0.1.txt -------------------------------------------------------------------------------- /release_notes/v1.0.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.0.2.txt -------------------------------------------------------------------------------- /release_notes/v1.1.0-alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.1.0-alpha.txt -------------------------------------------------------------------------------- /release_notes/v1.1.0-preview.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.1.0-preview.txt -------------------------------------------------------------------------------- /release_notes/v1.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.1.0.txt -------------------------------------------------------------------------------- /release_notes/v1.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.2.0.txt -------------------------------------------------------------------------------- /release_notes/v1.3.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.3.0.txt -------------------------------------------------------------------------------- /release_notes/v1.4.0-beta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.4.0-beta.txt -------------------------------------------------------------------------------- /release_notes/v1.4.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v1.4.0.txt -------------------------------------------------------------------------------- /release_notes/v2.0.0-alpha.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.0.0-alpha.txt -------------------------------------------------------------------------------- /release_notes/v2.0.0-beta.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.0.0-beta.4.txt -------------------------------------------------------------------------------- /release_notes/v2.0.0-beta.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.0.0-beta.txt -------------------------------------------------------------------------------- /release_notes/v2.1.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.1.0.txt -------------------------------------------------------------------------------- /release_notes/v2.2.0.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.0.txt -------------------------------------------------------------------------------- /release_notes/v2.2.1.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.1.txt -------------------------------------------------------------------------------- /release_notes/v2.2.10.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.10.txt -------------------------------------------------------------------------------- /release_notes/v2.2.11.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.11.txt -------------------------------------------------------------------------------- /release_notes/v2.2.12.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.12.txt -------------------------------------------------------------------------------- /release_notes/v2.2.13.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.13.txt -------------------------------------------------------------------------------- /release_notes/v2.2.14.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.14.txt -------------------------------------------------------------------------------- /release_notes/v2.2.15.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.15.txt -------------------------------------------------------------------------------- /release_notes/v2.2.16.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.16.txt -------------------------------------------------------------------------------- /release_notes/v2.2.2.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.2.txt -------------------------------------------------------------------------------- /release_notes/v2.2.3.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.3.txt -------------------------------------------------------------------------------- /release_notes/v2.2.4.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.4.txt -------------------------------------------------------------------------------- /release_notes/v2.2.5.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.5.txt -------------------------------------------------------------------------------- /release_notes/v2.2.6.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.6.txt -------------------------------------------------------------------------------- /release_notes/v2.2.7.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.7.txt -------------------------------------------------------------------------------- /release_notes/v2.2.8.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.8.txt -------------------------------------------------------------------------------- /release_notes/v2.2.9.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/release_notes/v2.2.9.txt -------------------------------------------------------------------------------- /scripts/ci_scripts/publishApiDocs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/ci_scripts/publishApiDocs.sh -------------------------------------------------------------------------------- /scripts/ci_scripts/publishNpmPackages.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/ci_scripts/publishNpmPackages.sh -------------------------------------------------------------------------------- /scripts/npm_scripts/checkLicense.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/npm_scripts/checkLicense.sh -------------------------------------------------------------------------------- /scripts/npm_scripts/dockerClean.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/npm_scripts/dockerClean.sh -------------------------------------------------------------------------------- /scripts/npm_scripts/generateCerts.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/npm_scripts/generateCerts.js -------------------------------------------------------------------------------- /scripts/npm_scripts/runShellCommand.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/npm_scripts/runShellCommand.js -------------------------------------------------------------------------------- /scripts/npm_scripts/runTape.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/npm_scripts/runTape.sh -------------------------------------------------------------------------------- /scripts/npm_scripts/testFunctions.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/npm_scripts/testFunctions.js -------------------------------------------------------------------------------- /scripts/utility/fabric_images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/scripts/utility/fabric_images.sh -------------------------------------------------------------------------------- /test/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/README.md -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/Gopkg.lock -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/Gopkg.toml -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/example_cc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/example_cc.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mksyscall.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mksysnum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/mksysnum.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/collate.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/collate.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/tables.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/Gopkg.lock -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/Gopkg.toml -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/collections_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/collections_config.json -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/example_cc_private.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/example_cc_private.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /test/fixtures/chaincode/goLang/src/github.com/example_cc_private/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /test/fixtures/chaincode/metadata/statedb/couchdb/indexes/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/metadata/statedb/couchdb/indexes/index.json -------------------------------------------------------------------------------- /test/fixtures/chaincode/metadata/statedb/couchdb/indexes/index.notjson: -------------------------------------------------------------------------------- 1 | not json -------------------------------------------------------------------------------- /test/fixtures/chaincode/node_cc/example_cc/chaincode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/node_cc/example_cc/chaincode.js -------------------------------------------------------------------------------- /test/fixtures/chaincode/node_cc/example_cc/npm-shrinkwrap.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/node_cc/example_cc/npm-shrinkwrap.json -------------------------------------------------------------------------------- /test/fixtures/chaincode/node_cc/example_cc/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/chaincode/node_cc/example_cc/package.json -------------------------------------------------------------------------------- /test/fixtures/credentials/couchdb.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/credentials/couchdb.json -------------------------------------------------------------------------------- /test/fixtures/credentials/local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/credentials/local.json -------------------------------------------------------------------------------- /test/fixtures/crypto-material/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/README.md -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-base/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-base/configtx.yaml -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-base/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-base/crypto-config.yaml -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-base/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-base/generate.sh -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-update/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-update/configtx.yaml -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-update/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-update/crypto-config.yaml -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-update/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-update/generate.sh -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-v2/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-v2/configtx.yaml -------------------------------------------------------------------------------- /test/fixtures/crypto-material/config-v2/lifecyclechannel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/config-v2/lifecyclechannel.tx -------------------------------------------------------------------------------- /test/fixtures/crypto-material/generateAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/generateAll.sh -------------------------------------------------------------------------------- /test/fixtures/crypto-material/mychannelator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/crypto-material/mychannelator.json -------------------------------------------------------------------------------- /test/fixtures/docker-compose/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/docker-compose/docker-compose-base.yaml -------------------------------------------------------------------------------- /test/fixtures/docker-compose/docker-compose-tls-level-db.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/docker-compose/docker-compose-tls-level-db.yaml -------------------------------------------------------------------------------- /test/fixtures/docker-compose/docker-compose-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/docker-compose/docker-compose-tls.yaml -------------------------------------------------------------------------------- /test/fixtures/docker-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/docker-compose/docker-compose.yaml -------------------------------------------------------------------------------- /test/fixtures/fabricca/generateCSR.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/fabricca/generateCSR.sh -------------------------------------------------------------------------------- /test/fixtures/profiles/caimport.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/caimport.json -------------------------------------------------------------------------------- /test/fixtures/profiles/network-ad.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/network-ad.yaml -------------------------------------------------------------------------------- /test/fixtures/profiles/network-discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/network-discovery.json -------------------------------------------------------------------------------- /test/fixtures/profiles/network-ts.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/network-ts.yaml -------------------------------------------------------------------------------- /test/fixtures/profiles/network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/network.json -------------------------------------------------------------------------------- /test/fixtures/profiles/network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/network.yaml -------------------------------------------------------------------------------- /test/fixtures/profiles/network2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/network2.yaml -------------------------------------------------------------------------------- /test/fixtures/profiles/org1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/org1.yaml -------------------------------------------------------------------------------- /test/fixtures/profiles/org2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/profiles/org2.yaml -------------------------------------------------------------------------------- /test/fixtures/test-wallet/x509-v1.id: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/fixtures/test-wallet/x509-v1.id -------------------------------------------------------------------------------- /test/integration/e2e/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/integration/e2e/config.json -------------------------------------------------------------------------------- /test/integration/fabric-ca-affiliation-service-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/integration/fabric-ca-affiliation-service-tests.js -------------------------------------------------------------------------------- /test/integration/fabric-ca-certificate-service-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/integration/fabric-ca-certificate-service-tests.js -------------------------------------------------------------------------------- /test/integration/fabric-ca-identity-service-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/integration/fabric-ca-identity-service-tests.js -------------------------------------------------------------------------------- /test/integration/fabric-ca-services-tests.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/integration/fabric-ca-services-tests.js -------------------------------------------------------------------------------- /test/integration/util.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/integration/util.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/Gopkg.lock -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/Gopkg.toml -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/legacy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/legacy.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mkpost.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mkpost.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mksyscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mksyscall.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mksysnum.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/mksysnum.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/types_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/types_aix.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/index.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/index.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/option.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/option.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/sort.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/sort.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/collate/tables.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/doc.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/gen.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/gen.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/go1_1.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/go1_1.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/go1_2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/go1_2.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/match.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/match.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/parse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/parse.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/tags.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/golang.org/x/text/language/tags.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGo/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/Gopkg.lock -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/Gopkg.toml -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/collections_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/collections_config.json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/legacy_private_data.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/legacy_private_data.go -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/goLang/src/github.com/legacyGoPrivateData/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/java/legacyJava/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/java/legacyJava/build.gradle -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/java/legacyJava/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = 'fabric-chaincode-example-gradle' 2 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/events/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/events/index.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/events/lib/events.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/events/lib/events.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/events/metadata/.noignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/events/metadata/collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/events/metadata/collections.json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/events/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/events/package.json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcar/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/fabcar/index.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcar/lib/fabcar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/fabcar/lib/fabcar.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcar/metadata/.noignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcar/metadata/collections.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/fabcar/metadata/collections.json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcar/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/fabcar/package.json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcarUpgrade/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/fabcarUpgrade/index.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcarUpgrade/lib/fabcar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/fabcarUpgrade/lib/fabcar.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcarUpgrade/metadata/.noignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/fabcarUpgrade/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/fabcarUpgrade/package.json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/legacyNode/chaincode.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/legacyNode/chaincode.js -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/legacyNode/metadata/statedb/couchdb/indexes/index.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/legacyNode/metadata/statedb/couchdb/indexes/index.json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/legacyNode/metadata/statedb/couchdb/indexes/index.notjson: -------------------------------------------------------------------------------- 1 | not json -------------------------------------------------------------------------------- /test/ts-fixtures/chaincode/node/legacyNode/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/chaincode/node/legacyNode/package.json -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/README.md -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-base/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-base/configtx.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-base/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-base/core.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-base/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-base/crypto-config.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-base/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-base/generate.sh -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-update/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-update/configtx.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-update/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-update/crypto-config.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-update/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-update/generate.sh -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-v2/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-v2/configtx.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-v2/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-v2/crypto-config.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/config-v2/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/config-v2/generate.sh -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/generateAll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/generateAll.sh -------------------------------------------------------------------------------- /test/ts-fixtures/crypto-material/mychannelator.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/crypto-material/mychannelator.json -------------------------------------------------------------------------------- /test/ts-fixtures/docker-compose/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/docker-compose/docker-compose-base.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/docker-compose/docker-compose-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/docker-compose/docker-compose-cli.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/docker-compose/docker-compose-tls.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/docker-compose/docker-compose-tls.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/docker-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/docker-compose/docker-compose.yaml -------------------------------------------------------------------------------- /test/ts-fixtures/hsm/softhsm2.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-fixtures/hsm/softhsm2.conf -------------------------------------------------------------------------------- /test/ts-scenario/.gitignore: -------------------------------------------------------------------------------- 1 | lib/** 2 | -------------------------------------------------------------------------------- /test/ts-scenario/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/README.md -------------------------------------------------------------------------------- /test/ts-scenario/config/Org1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/Org1.json -------------------------------------------------------------------------------- /test/ts-scenario/config/Org1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/Org1.yaml -------------------------------------------------------------------------------- /test/ts-scenario/config/Org2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/Org2.json -------------------------------------------------------------------------------- /test/ts-scenario/config/Org2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/Org2.yaml -------------------------------------------------------------------------------- /test/ts-scenario/config/ccp-client-only.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/ccp-client-only.json -------------------------------------------------------------------------------- /test/ts-scenario/config/ccp-discovery.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/ccp-discovery.json -------------------------------------------------------------------------------- /test/ts-scenario/config/ccp-lifecycle-tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/ccp-lifecycle-tls.json -------------------------------------------------------------------------------- /test/ts-scenario/config/ccp-lifecycle.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/ccp-lifecycle.json -------------------------------------------------------------------------------- /test/ts-scenario/config/ccp-tls.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/ccp-tls.json -------------------------------------------------------------------------------- /test/ts-scenario/config/ccp.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/ccp.json -------------------------------------------------------------------------------- /test/ts-scenario/config/policies.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/config/policies.json -------------------------------------------------------------------------------- /test/ts-scenario/features/base_api_v1.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/base_api_v1.feature -------------------------------------------------------------------------------- /test/ts-scenario/features/base_api_v2.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/base_api_v2.feature -------------------------------------------------------------------------------- /test/ts-scenario/features/chaincode_lifecycle.feature.norun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/chaincode_lifecycle.feature.norun -------------------------------------------------------------------------------- /test/ts-scenario/features/channel_operations.feature.norun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/channel_operations.feature.norun -------------------------------------------------------------------------------- /test/ts-scenario/features/client_only.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/client_only.feature -------------------------------------------------------------------------------- /test/ts-scenario/features/deprecated_sdk.feature.norun: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/deprecated_sdk.feature.norun -------------------------------------------------------------------------------- /test/ts-scenario/features/discovery.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/discovery.feature -------------------------------------------------------------------------------- /test/ts-scenario/features/events.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/events.feature -------------------------------------------------------------------------------- /test/ts-scenario/features/gateway.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/gateway.feature -------------------------------------------------------------------------------- /test/ts-scenario/features/hsm-gateway.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/hsm-gateway.feature -------------------------------------------------------------------------------- /test/ts-scenario/features/nontls-gateway.feature: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/features/nontls-gateway.feature -------------------------------------------------------------------------------- /test/ts-scenario/src/handlers/sample-query-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/handlers/sample-query-handler.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/handlers/sample-transaction-event-handler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/handlers/sample-transaction-event-handler.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/base_api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/base_api.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/cli.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/cli.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/constants.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/debug.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/debug.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/deprecated.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/docker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/docker.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/event-listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/event-listeners.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/chaincode.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/chaincode.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/channel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/channel.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/contract.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/contract.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/deprecatedSDK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/deprecatedSDK.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/gateway.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/gateway.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/listeners.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/listeners.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/transactions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/transactions.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/utility/adminUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/utility/adminUtils.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/utility/baseUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/utility/baseUtils.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/utility/clientUtils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/utility/clientUtils.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/utility/commandRunner.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/utility/commandRunner.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/utility/commonConnectionProfileHelper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/utility/commonConnectionProfileHelper.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lib/utility/stateStore.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lib/utility/stateStore.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/lifecycle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/lifecycle.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/steps/network-model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/steps/network-model.ts -------------------------------------------------------------------------------- /test/ts-scenario/src/support/hooks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/src/support/hooks.ts -------------------------------------------------------------------------------- /test/ts-scenario/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger/fabric-sdk-node/HEAD/test/ts-scenario/tsconfig.json --------------------------------------------------------------------------------