├── .github ├── scripts │ ├── deploy-chaincode.sh │ └── run-benchmark.sh └── workflows │ └── fabric-tests.yaml ├── .gitignore ├── CODEOWNERS ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── benchmarks ├── api │ ├── README.md │ └── fabric │ │ ├── .gitignore │ │ ├── README.md │ │ ├── base.yaml │ │ ├── create-asset-100.yaml │ │ ├── create-asset-16k.yaml │ │ ├── create-asset-batch.yaml │ │ ├── create-asset.yaml │ │ ├── create-private-asset.yaml │ │ ├── delete-asset-batch.yaml │ │ ├── delete-asset.yaml │ │ ├── empty-contract-1of.yaml │ │ ├── empty-contract-2of.yaml │ │ ├── fixed-tps-runs.yaml │ │ ├── get-asset-batch.yaml │ │ ├── get-asset.yaml │ │ ├── get-private-asset.yaml │ │ ├── mixed-range-query-pagination.yaml │ │ ├── mixed-rich-query-pagination.yaml │ │ ├── no-op.yaml │ │ ├── read-write-asset.yaml │ │ ├── test.yaml │ │ └── workloads │ │ ├── batch-create-asset.js │ │ ├── batch-delete-asset.js │ │ ├── batch-get-asset.js │ │ ├── create-asset.js │ │ ├── create-private-asset.js │ │ ├── delete-asset.js │ │ ├── empty-contract.js │ │ ├── get-asset.js │ │ ├── get-private-asset.js │ │ ├── helper.js │ │ ├── mixed-range-query-asset.js │ │ ├── mixed-rich-query-asset.js │ │ ├── range-query-asset.js │ │ ├── read-write-assets │ │ ├── delete-preloaded-assets.js │ │ ├── preload-assets.js │ │ └── read-write-assets.js │ │ └── rich-query-asset.js ├── samples │ ├── README.md │ └── fabric │ │ ├── README.md │ │ ├── fabcar │ │ ├── changeCarOwner.js │ │ ├── config.yaml │ │ ├── createCar.js │ │ ├── queryAllCars.js │ │ └── queryCar.js │ │ └── marbles │ │ ├── config.yaml │ │ ├── init.js │ │ └── query.js └── scenario │ ├── README.md │ ├── simple │ ├── config.yaml │ ├── open.js │ ├── query.js │ ├── transfer.js │ └── utils │ │ ├── operation-base.js │ │ └── simple-state.js │ └── smallbank │ ├── README.md │ ├── config.yaml │ ├── create.js │ ├── modify.js │ ├── query.js │ └── utils │ ├── operation-base.js │ └── smallbank.js ├── networks ├── fabric │ ├── README.md │ └── test-network.yaml └── prometheus-grafana │ ├── README.md │ ├── docker-compose-bare.yaml │ ├── docker-compose-fabric.yaml │ ├── grafana │ ├── config.monitoring │ └── provisioning │ │ ├── dashboards │ │ ├── dashboard.yml │ │ └── docker-and-system.json │ │ └── datasources │ │ └── datasource.yml │ ├── grafana_db │ └── grafana.db │ └── prometheus │ ├── prometheus-bare.yml │ └── prometheus-fabric.yml └── src └── fabric ├── api ├── fixed-asset-base │ ├── collections-config.json │ ├── go │ │ ├── META-INF │ │ │ └── statedb │ │ │ │ └── couchdb │ │ │ │ └── indexes │ │ │ │ └── indexOwner.json │ │ ├── assets │ │ │ └── FixedAsset.go │ │ ├── contracts │ │ │ └── FixedAssetContract.go │ │ ├── go.mod │ │ ├── go.sum │ │ ├── main.go │ │ ├── utils │ │ │ ├── Context.go │ │ │ ├── QueryResponse.go │ │ │ └── ResponseMetadata.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 │ │ │ │ │ ├── chaincodeserver.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ └── server.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 │ │ │ │ │ ├── mkerrors.sh │ │ │ │ │ ├── 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 │ │ │ │ │ ├── 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 │ │ │ │ ├── secure │ │ │ │ └── bidirule │ │ │ │ │ ├── bidirule.go │ │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ │ └── bidirule9.0.0.go │ │ │ │ ├── transform │ │ │ │ └── transform.go │ │ │ │ └── unicode │ │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.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 │ │ │ └── modules.txt │ └── node │ │ ├── META-INF │ │ └── statedb │ │ │ └── couchdb │ │ │ └── indexes │ │ │ └── indexOwner.json │ │ ├── fixed-asset-base.js │ │ └── package.json └── fixed-asset │ ├── collections-config.json │ ├── go │ ├── FixedAssetContract.go │ ├── META-INF │ │ └── statedb │ │ │ └── couchdb │ │ │ └── indexes │ │ │ └── indexOwner.json │ ├── assets │ │ └── FixedAsset.go │ ├── go.mod │ ├── go.sum │ ├── utils │ │ ├── QueryResponse.go │ │ └── ResponseMetadata.go │ └── vendor │ │ ├── github.com │ │ ├── PuerkitoBio │ │ │ ├── purell │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── purell.go │ │ │ └── urlesc │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ └── urlesc.go │ │ ├── go-openapi │ │ │ ├── jsonpointer │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── pointer.go │ │ │ ├── jsonreference │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── reference.go │ │ │ ├── spec │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── bindata.go │ │ │ │ ├── cache.go │ │ │ │ ├── contact_info.go │ │ │ │ ├── debug.go │ │ │ │ ├── expander.go │ │ │ │ ├── external_docs.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── header.go │ │ │ │ ├── info.go │ │ │ │ ├── items.go │ │ │ │ ├── license.go │ │ │ │ ├── normalizer.go │ │ │ │ ├── operation.go │ │ │ │ ├── parameter.go │ │ │ │ ├── path_item.go │ │ │ │ ├── paths.go │ │ │ │ ├── ref.go │ │ │ │ ├── response.go │ │ │ │ ├── responses.go │ │ │ │ ├── schema.go │ │ │ │ ├── schema_loader.go │ │ │ │ ├── security_scheme.go │ │ │ │ ├── spec.go │ │ │ │ ├── swagger.go │ │ │ │ ├── tag.go │ │ │ │ ├── unused.go │ │ │ │ └── xml_object.go │ │ │ └── swag │ │ │ │ ├── .editorconfig │ │ │ │ ├── .gitignore │ │ │ │ ├── .golangci.yml │ │ │ │ ├── .travis.yml │ │ │ │ ├── CODE_OF_CONDUCT.md │ │ │ │ ├── LICENSE │ │ │ │ ├── README.md │ │ │ │ ├── convert.go │ │ │ │ ├── convert_types.go │ │ │ │ ├── doc.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── json.go │ │ │ │ ├── loading.go │ │ │ │ ├── name_lexem.go │ │ │ │ ├── net.go │ │ │ │ ├── path.go │ │ │ │ ├── post_go18.go │ │ │ │ ├── post_go19.go │ │ │ │ ├── pre_go18.go │ │ │ │ ├── pre_go19.go │ │ │ │ ├── split.go │ │ │ │ ├── util.go │ │ │ │ └── yaml.go │ │ ├── gobuffalo │ │ │ ├── envy │ │ │ │ ├── .gitignore │ │ │ │ ├── .gometalinter.json │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── SHOULDERS.md │ │ │ │ ├── azure-pipelines.yml │ │ │ │ ├── azure-tests.yml │ │ │ │ ├── azure.sh │ │ │ │ ├── env │ │ │ │ ├── envy.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ └── version.go │ │ │ ├── packd │ │ │ │ ├── .gitignore │ │ │ │ ├── .gometalinter.json │ │ │ │ ├── LICENSE │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── SHOULDERS.md │ │ │ │ ├── azure-pipelines.yml │ │ │ │ ├── azure-tests.yml │ │ │ │ ├── file.go │ │ │ │ ├── file_info.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── interfaces.go │ │ │ │ ├── internal │ │ │ │ │ └── takeon │ │ │ │ │ │ └── github.com │ │ │ │ │ │ └── markbates │ │ │ │ │ │ └── errx │ │ │ │ │ │ ├── .gitignore │ │ │ │ │ │ ├── LICENSE │ │ │ │ │ │ ├── Makefile │ │ │ │ │ │ ├── SHOULDERS.md │ │ │ │ │ │ ├── azure-pipelines.yml │ │ │ │ │ │ ├── azure-tests.yml │ │ │ │ │ │ ├── errx.go │ │ │ │ │ │ └── version.go │ │ │ │ ├── map.go │ │ │ │ ├── memory_box.go │ │ │ │ ├── skip_walker.go │ │ │ │ └── version.go │ │ │ └── packr │ │ │ │ ├── .codeclimate.yml │ │ │ │ ├── .gitignore │ │ │ │ ├── .gometalinter.json │ │ │ │ ├── .goreleaser.yml │ │ │ │ ├── .goreleaser.yml.plush │ │ │ │ ├── LICENSE.txt │ │ │ │ ├── Makefile │ │ │ │ ├── README.md │ │ │ │ ├── SHOULDERS.md │ │ │ │ ├── azure-pipelines.yml │ │ │ │ ├── azure-tests.yml │ │ │ │ ├── box.go │ │ │ │ ├── env.go │ │ │ │ ├── file.go │ │ │ │ ├── go.mod │ │ │ │ ├── go.sum │ │ │ │ ├── packr.go │ │ │ │ ├── version.go │ │ │ │ └── walk.go │ │ ├── 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 │ │ │ │ ├── pkg │ │ │ │ │ ├── attrmgr │ │ │ │ │ │ └── attrmgr.go │ │ │ │ │ └── cid │ │ │ │ │ │ ├── README.md │ │ │ │ │ │ ├── cid.go │ │ │ │ │ │ └── interfaces.go │ │ │ │ └── shim │ │ │ │ │ ├── chaincodeserver.go │ │ │ │ │ ├── handler.go │ │ │ │ │ ├── interfaces.go │ │ │ │ │ ├── internal │ │ │ │ │ ├── client.go │ │ │ │ │ ├── config.go │ │ │ │ │ └── server.go │ │ │ │ │ ├── response.go │ │ │ │ │ ├── shim.go │ │ │ │ │ └── stub.go │ │ │ ├── fabric-contract-api-go │ │ │ │ ├── LICENSE │ │ │ │ ├── contractapi │ │ │ │ │ ├── contract.go │ │ │ │ │ ├── contract_chaincode.go │ │ │ │ │ ├── system_contract.go │ │ │ │ │ ├── transaction_context.go │ │ │ │ │ └── utils │ │ │ │ │ │ └── undefined_interface.go │ │ │ │ ├── internal │ │ │ │ │ ├── contract_function.go │ │ │ │ │ ├── transaction_handler.go │ │ │ │ │ ├── types │ │ │ │ │ │ └── types.go │ │ │ │ │ ├── types_handler.go │ │ │ │ │ └── utils │ │ │ │ │ │ └── utils.go │ │ │ │ ├── metadata │ │ │ │ │ ├── a_metadata-packr.go │ │ │ │ │ ├── ioutils.go │ │ │ │ │ ├── metadata.go │ │ │ │ │ └── schema.go │ │ │ │ └── serializer │ │ │ │ │ ├── json_transaction_serializer.go │ │ │ │ │ └── transaction_serializer.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 │ │ │ │ ├── collection.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 │ │ ├── joho │ │ │ └── godotenv │ │ │ │ ├── .gitignore │ │ │ │ ├── .travis.yml │ │ │ │ ├── LICENCE │ │ │ │ ├── README.md │ │ │ │ └── godotenv.go │ │ ├── mailru │ │ │ └── easyjson │ │ │ │ ├── LICENSE │ │ │ │ ├── buffer │ │ │ │ └── pool.go │ │ │ │ ├── jlexer │ │ │ │ ├── bytestostr.go │ │ │ │ ├── bytestostr_nounsafe.go │ │ │ │ ├── error.go │ │ │ │ └── lexer.go │ │ │ │ └── jwriter │ │ │ │ └── writer.go │ │ ├── rogpeppe │ │ │ └── go-internal │ │ │ │ ├── LICENSE │ │ │ │ ├── modfile │ │ │ │ ├── gopkgin.go │ │ │ │ ├── print.go │ │ │ │ ├── read.go │ │ │ │ └── rule.go │ │ │ │ ├── module │ │ │ │ └── module.go │ │ │ │ └── semver │ │ │ │ └── semver.go │ │ └── xeipuuv │ │ │ ├── gojsonpointer │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ ├── README.md │ │ │ └── pointer.go │ │ │ ├── gojsonreference │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ ├── README.md │ │ │ └── reference.go │ │ │ └── gojsonschema │ │ │ ├── .gitignore │ │ │ ├── .travis.yml │ │ │ ├── LICENSE-APACHE-2.0.txt │ │ │ ├── README.md │ │ │ ├── draft.go │ │ │ ├── errors.go │ │ │ ├── format_checkers.go │ │ │ ├── glide.yaml │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── internalLog.go │ │ │ ├── jsonContext.go │ │ │ ├── jsonLoader.go │ │ │ ├── locales.go │ │ │ ├── result.go │ │ │ ├── schema.go │ │ │ ├── schemaLoader.go │ │ │ ├── schemaPool.go │ │ │ ├── schemaReferencePool.go │ │ │ ├── schemaType.go │ │ │ ├── subSchema.go │ │ │ ├── types.go │ │ │ ├── utils.go │ │ │ └── validation.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 │ │ │ │ ├── mkerrors.sh │ │ │ │ ├── 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 │ │ │ │ ├── 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 │ │ │ ├── secure │ │ │ └── bidirule │ │ │ │ ├── bidirule.go │ │ │ │ ├── bidirule10.0.0.go │ │ │ │ └── bidirule9.0.0.go │ │ │ ├── transform │ │ │ └── transform.go │ │ │ ├── unicode │ │ │ ├── bidi │ │ │ │ ├── bidi.go │ │ │ │ ├── bracket.go │ │ │ │ ├── core.go │ │ │ │ ├── prop.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ └── trieval.go │ │ │ └── norm │ │ │ │ ├── composition.go │ │ │ │ ├── forminfo.go │ │ │ │ ├── input.go │ │ │ │ ├── iter.go │ │ │ │ ├── normalize.go │ │ │ │ ├── readwriter.go │ │ │ │ ├── tables10.0.0.go │ │ │ │ ├── tables11.0.0.go │ │ │ │ ├── tables9.0.0.go │ │ │ │ ├── transform.go │ │ │ │ └── trie.go │ │ │ └── width │ │ │ ├── kind_string.go │ │ │ ├── tables10.0.0.go │ │ │ ├── tables11.0.0.go │ │ │ ├── tables9.0.0.go │ │ │ ├── transform.go │ │ │ ├── trieval.go │ │ │ └── width.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 │ │ ├── gopkg.in │ │ └── yaml.v2 │ │ │ ├── .travis.yml │ │ │ ├── LICENSE │ │ │ ├── LICENSE.libyaml │ │ │ ├── NOTICE │ │ │ ├── README.md │ │ │ ├── apic.go │ │ │ ├── decode.go │ │ │ ├── emitterc.go │ │ │ ├── encode.go │ │ │ ├── go.mod │ │ │ ├── parserc.go │ │ │ ├── readerc.go │ │ │ ├── resolve.go │ │ │ ├── scannerc.go │ │ │ ├── sorter.go │ │ │ ├── writerc.go │ │ │ ├── yaml.go │ │ │ ├── yamlh.go │ │ │ └── yamlprivateh.go │ │ └── modules.txt │ ├── java │ ├── .gitignore │ ├── META-INF │ │ └── statedb │ │ │ └── couchdb │ │ │ └── indexes │ │ │ └── indexOwner.json │ ├── README.md │ ├── build.gradle │ ├── gradle │ │ └── wrapper │ │ │ ├── gradle-wrapper.jar │ │ │ └── gradle-wrapper.properties │ ├── gradlew │ ├── gradlew.bat │ ├── settings.gradle │ └── src │ │ └── main │ │ └── java │ │ └── org │ │ └── example │ │ ├── FixedAsset.java │ │ ├── FixedAssetContract.java │ │ ├── QueryResponse.java │ │ └── ResponseMetadata.java │ └── node │ ├── META-INF │ └── statedb │ │ └── couchdb │ │ └── indexes │ │ └── indexOwner.json │ ├── index.js │ ├── lib │ └── fixed-asset.js │ └── package.json ├── samples ├── README.md ├── fabcar │ ├── go │ │ ├── fabcar.go │ │ ├── go.mod │ │ └── go.sum │ ├── java │ │ ├── README.md │ │ ├── build.gradle │ │ ├── config │ │ │ └── checkstyle │ │ │ │ ├── checkstyle.xml │ │ │ │ └── suppressions.xml │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ ├── settings.gradle │ │ └── src │ │ │ ├── main │ │ │ └── java │ │ │ │ └── org │ │ │ │ └── hyperledger │ │ │ │ └── fabric │ │ │ │ └── samples │ │ │ │ └── fabcar │ │ │ │ ├── Car.java │ │ │ │ └── FabCar.java │ │ │ └── test │ │ │ └── java │ │ │ └── org │ │ │ └── hyperledger │ │ │ └── fabric │ │ │ └── samples │ │ │ └── fabcar │ │ │ ├── CarTest.java │ │ │ └── FabCarTest.java │ └── node │ │ ├── .editorconfig │ │ ├── .eslintignore │ │ ├── .eslintrc.js │ │ ├── .gitignore │ │ ├── index.js │ │ ├── lib │ │ └── fabcar.js │ │ └── package.json ├── marbles-norichquery │ ├── go │ │ ├── go.mod │ │ ├── go.sum │ │ └── marbles.go │ └── node │ │ ├── marbles.js │ │ └── package.json └── marbles │ ├── go │ ├── META-INF │ │ └── statedb │ │ │ └── couchdb │ │ │ └── indexes │ │ │ └── indexOwner.json │ ├── go.mod │ ├── go.sum │ └── marbles.go │ └── node │ ├── META-INF │ └── statedb │ │ └── couchdb │ │ └── indexes │ │ └── indexOwner.json │ ├── marbles.js │ └── package.json └── scenario ├── simple ├── go │ ├── go.mod │ ├── go.sum │ └── simpletest.go └── node │ ├── package.json │ └── simpletest.js └── smallbank └── go ├── go.mod ├── go.sum └── smallbank.go /.github/scripts/deploy-chaincode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/.github/scripts/deploy-chaincode.sh -------------------------------------------------------------------------------- /.github/scripts/run-benchmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/.github/scripts/run-benchmark.sh -------------------------------------------------------------------------------- /.github/workflows/fabric-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/.github/workflows/fabric-tests.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @hyperledger/caliper-committers 2 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/SECURITY.md -------------------------------------------------------------------------------- /benchmarks/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/README.md -------------------------------------------------------------------------------- /benchmarks/api/fabric/.gitignore: -------------------------------------------------------------------------------- 1 | bin 2 | config 3 | -------------------------------------------------------------------------------- /benchmarks/api/fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/README.md -------------------------------------------------------------------------------- /benchmarks/api/fabric/base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/base.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/create-asset-100.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/create-asset-100.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/create-asset-16k.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/create-asset-16k.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/create-asset-batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/create-asset-batch.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/create-asset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/create-asset.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/create-private-asset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/create-private-asset.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/delete-asset-batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/delete-asset-batch.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/delete-asset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/delete-asset.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/empty-contract-1of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/empty-contract-1of.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/empty-contract-2of.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/empty-contract-2of.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/fixed-tps-runs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/fixed-tps-runs.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/get-asset-batch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/get-asset-batch.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/get-asset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/get-asset.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/get-private-asset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/get-private-asset.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/mixed-range-query-pagination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/mixed-range-query-pagination.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/mixed-rich-query-pagination.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/mixed-rich-query-pagination.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/no-op.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/no-op.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/read-write-asset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/read-write-asset.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/test.yaml -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/batch-create-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/batch-create-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/batch-delete-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/batch-delete-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/batch-get-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/batch-get-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/create-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/create-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/create-private-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/create-private-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/delete-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/delete-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/empty-contract.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/empty-contract.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/get-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/get-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/get-private-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/get-private-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/helper.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/mixed-range-query-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/mixed-range-query-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/mixed-rich-query-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/mixed-rich-query-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/range-query-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/range-query-asset.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/read-write-assets/delete-preloaded-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/read-write-assets/delete-preloaded-assets.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/read-write-assets/preload-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/read-write-assets/preload-assets.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/read-write-assets/read-write-assets.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/read-write-assets/read-write-assets.js -------------------------------------------------------------------------------- /benchmarks/api/fabric/workloads/rich-query-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/api/fabric/workloads/rich-query-asset.js -------------------------------------------------------------------------------- /benchmarks/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/README.md -------------------------------------------------------------------------------- /benchmarks/samples/fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/README.md -------------------------------------------------------------------------------- /benchmarks/samples/fabric/fabcar/changeCarOwner.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/fabcar/changeCarOwner.js -------------------------------------------------------------------------------- /benchmarks/samples/fabric/fabcar/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/fabcar/config.yaml -------------------------------------------------------------------------------- /benchmarks/samples/fabric/fabcar/createCar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/fabcar/createCar.js -------------------------------------------------------------------------------- /benchmarks/samples/fabric/fabcar/queryAllCars.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/fabcar/queryAllCars.js -------------------------------------------------------------------------------- /benchmarks/samples/fabric/fabcar/queryCar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/fabcar/queryCar.js -------------------------------------------------------------------------------- /benchmarks/samples/fabric/marbles/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/marbles/config.yaml -------------------------------------------------------------------------------- /benchmarks/samples/fabric/marbles/init.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/marbles/init.js -------------------------------------------------------------------------------- /benchmarks/samples/fabric/marbles/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/samples/fabric/marbles/query.js -------------------------------------------------------------------------------- /benchmarks/scenario/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/README.md -------------------------------------------------------------------------------- /benchmarks/scenario/simple/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/simple/config.yaml -------------------------------------------------------------------------------- /benchmarks/scenario/simple/open.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/simple/open.js -------------------------------------------------------------------------------- /benchmarks/scenario/simple/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/simple/query.js -------------------------------------------------------------------------------- /benchmarks/scenario/simple/transfer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/simple/transfer.js -------------------------------------------------------------------------------- /benchmarks/scenario/simple/utils/operation-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/simple/utils/operation-base.js -------------------------------------------------------------------------------- /benchmarks/scenario/simple/utils/simple-state.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/simple/utils/simple-state.js -------------------------------------------------------------------------------- /benchmarks/scenario/smallbank/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/smallbank/README.md -------------------------------------------------------------------------------- /benchmarks/scenario/smallbank/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/smallbank/config.yaml -------------------------------------------------------------------------------- /benchmarks/scenario/smallbank/create.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/smallbank/create.js -------------------------------------------------------------------------------- /benchmarks/scenario/smallbank/modify.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/smallbank/modify.js -------------------------------------------------------------------------------- /benchmarks/scenario/smallbank/query.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/smallbank/query.js -------------------------------------------------------------------------------- /benchmarks/scenario/smallbank/utils/operation-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/smallbank/utils/operation-base.js -------------------------------------------------------------------------------- /benchmarks/scenario/smallbank/utils/smallbank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/benchmarks/scenario/smallbank/utils/smallbank.js -------------------------------------------------------------------------------- /networks/fabric/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/fabric/README.md -------------------------------------------------------------------------------- /networks/fabric/test-network.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/fabric/test-network.yaml -------------------------------------------------------------------------------- /networks/prometheus-grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/README.md -------------------------------------------------------------------------------- /networks/prometheus-grafana/docker-compose-bare.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/docker-compose-bare.yaml -------------------------------------------------------------------------------- /networks/prometheus-grafana/docker-compose-fabric.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/docker-compose-fabric.yaml -------------------------------------------------------------------------------- /networks/prometheus-grafana/grafana/config.monitoring: -------------------------------------------------------------------------------- 1 | GF_SECURITY_ADMIN_PASSWORD=admin 2 | GF_USERS_ALLOW_SIGN_UP=false 3 | -------------------------------------------------------------------------------- /networks/prometheus-grafana/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /networks/prometheus-grafana/grafana/provisioning/dashboards/docker-and-system.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/grafana/provisioning/dashboards/docker-and-system.json -------------------------------------------------------------------------------- /networks/prometheus-grafana/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /networks/prometheus-grafana/grafana_db/grafana.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/grafana_db/grafana.db -------------------------------------------------------------------------------- /networks/prometheus-grafana/prometheus/prometheus-bare.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/prometheus/prometheus-bare.yml -------------------------------------------------------------------------------- /networks/prometheus-grafana/prometheus/prometheus-fabric.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/networks/prometheus-grafana/prometheus/prometheus-fabric.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/collections-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/collections-config.json -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/assets/FixedAsset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/assets/FixedAsset.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/contracts/FixedAssetContract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/contracts/FixedAssetContract.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/main.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/utils/Context.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/utils/Context.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/utils/QueryResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/utils/QueryResponse.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/utils/ResponseMetadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/utils/ResponseMetadata.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/install_gae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/install_gae.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/go/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/go/vendor/modules.txt -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/node/fixed-asset-base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/node/fixed-asset-base.js -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset-base/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset-base/node/package.json -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/collections-config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/collections-config.json -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/FixedAssetContract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/FixedAssetContract.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/META-INF/statedb/couchdb/indexes/indexOwner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/META-INF/statedb/couchdb/indexes/indexOwner.json -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/assets/FixedAsset.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/assets/FixedAsset.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/utils/QueryResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/utils/QueryResponse.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/utils/ResponseMetadata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/utils/ResponseMetadata.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/.gitignore -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/purell.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/purell/purell.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/urlesc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/PuerkitoBio/urlesc/urlesc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonpointer/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonpointer/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonpointer/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonpointer/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonpointer/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonpointer/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonpointer/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonreference/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonreference/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonreference/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonreference/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/jsonreference/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/.editorconfig -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | coverage.out 3 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/.golangci.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/bindata.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/bindata.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/cache.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/cache.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/contact_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/contact_info.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/debug.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/debug.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/expander.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/expander.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/header.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/header.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/info.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/items.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/items.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/license.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/license.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/normalizer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/normalizer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/operation.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/operation.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/parameter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/parameter.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/path_item.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/path_item.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/paths.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/paths.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/ref.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/ref.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/response.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/response.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/responses.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/responses.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/schema.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/spec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/spec.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/swagger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/swagger.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/tag.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/tag.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/unused.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/unused.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/xml_object.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/spec/xml_object.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/.editorconfig -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/.gitignore: -------------------------------------------------------------------------------- 1 | secrets.yml 2 | vendor 3 | Godeps 4 | .idea 5 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/.golangci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/.golangci.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/convert.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/convert.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/doc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/json.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/json.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/loading.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/loading.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/name_lexem.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/name_lexem.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/net.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/net.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/path.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/path.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/post_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/post_go18.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/post_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/post_go19.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/pre_go18.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/pre_go18.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/pre_go19.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/pre_go19.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/split.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/split.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/util.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/go-openapi/swag/yaml.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/.gitignore -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/LICENSE.txt -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/Makefile -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/SHOULDERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/SHOULDERS.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/azure-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/azure-tests.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/azure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/azure.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/env -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/envy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/envy.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/envy/version.go: -------------------------------------------------------------------------------- 1 | package envy 2 | 3 | const Version = "v1.7.0" 4 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/.gitignore -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/Makefile -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/SHOULDERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/SHOULDERS.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/azure-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/azure-tests.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/file.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/file_info.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/file_info.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/interfaces.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/interfaces.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/map.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/map.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/memory_box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/memory_box.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/skip_walker.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/skip_walker.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packd/version.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/.gitignore -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/.goreleaser.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/.goreleaser.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/LICENSE.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/LICENSE.txt -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/Makefile -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/SHOULDERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/SHOULDERS.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/azure-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/azure-tests.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/box.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/box.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/env.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/env.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/file.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/file.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/packr.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/packr.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/version.go: -------------------------------------------------------------------------------- 1 | package packr 2 | 3 | const Version = "v1.30.1" 4 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/walk.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/gobuffalo/packr/walk.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/clone.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/clone.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/decode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/encode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/equal.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/equal.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/lib.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/text.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/proto/text.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/ptypes/any.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/ptypes/any.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/ptypes/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/golang/protobuf/ptypes/doc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/LICENCE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/godotenv.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/joho/godotenv/godotenv.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/buffer/pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/buffer/pool.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/jlexer/error.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/jlexer/error.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/jlexer/lexer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/mailru/easyjson/jlexer/lexer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/rogpeppe/go-internal/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/rogpeppe/go-internal/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonpointer/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonpointer/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/.gitignore: -------------------------------------------------------------------------------- 1 | *.sw[nop] 2 | *.iml 3 | .vscode/ 4 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/draft.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/draft.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/errors.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/glide.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/glide.yaml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/locales.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/locales.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/result.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/result.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/schema.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/schema.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/types.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/types.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/github.com/xeipuuv/gojsonschema/utils.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/PATENTS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http/httpguts/guts.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http/httpguts/guts.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http/httpguts/httplex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http/httpguts/httplex.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/.gitignore: -------------------------------------------------------------------------------- 1 | *~ 2 | h2i/h2i 3 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/Dockerfile -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/Makefile: -------------------------------------------------------------------------------- 1 | curlimage: 2 | docker build -t gohttp2/curl . 3 | 4 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/README: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/README -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/ciphers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/ciphers.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/client_conn_pool.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/client_conn_pool.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/databuffer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/databuffer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/errors.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/errors.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/flow.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/flow.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/frame.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/frame.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/go111.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/gotrack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/gotrack.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/headermap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/headermap.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/encode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/hpack.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/hpack.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/huffman.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/huffman.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/tables.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/hpack/tables.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/http2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/http2.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/not_go111.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/not_go111.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/pipe.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/pipe.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/server.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/transport.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/transport.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/write.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/write.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/writesched.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/http2/writesched.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/idna10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/idna10.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/idna9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/idna9.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/punycode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/punycode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/tables10.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/tables11.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/tables9.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/trie.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/idna/trieval.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/trace/events.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/trace/events.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/trace/histogram.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/trace/histogram.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/trace/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/net/trace/trace.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/PATENTS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/.gitignore: -------------------------------------------------------------------------------- 1 | _obj/ 2 | unix.test 3 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/affinity_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/affinity_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/aliases.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/aliases.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_aix_ppc64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_darwin_arm64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_freebsd_arm64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_arm64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_mips64x.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_mipsx.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_ppc64x.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_riscv64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_s390x.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_linux_s390x.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_netbsd_arm64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_386.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_386.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_arm.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_openbsd_arm64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/asm_solaris_amd64.s -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/bluetooth_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/bluetooth_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/cap_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/cap_freebsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/constants.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/constants.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_aix_ppc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_aix_ppc64.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_darwin.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_dragonfly.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_freebsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_netbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dev_openbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dirent.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/dirent.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/endian_big.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/endian_big.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/endian_little.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/endian_little.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/env_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/env_unix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/fcntl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/fcntl.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/fcntl_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/fcntl_darwin.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/fcntl_linux_32bit.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/gccgo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/gccgo.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/gccgo_c.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/gccgo_c.c -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/gccgo_linux_amd64.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ioctl.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ioctl.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/mkall.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/mkall.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/mkerrors.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/mkerrors.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/pagesize_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/pagesize_unix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/pledge_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/pledge_openbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/race.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/race.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/race0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/race0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/sockcmsg_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/sockcmsg_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/sockcmsg_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/sockcmsg_unix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/str.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/str.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_aix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_aix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_aix_ppc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_aix_ppc64.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_bsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_darwin.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_darwin.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_dragonfly.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_dragonfly.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_freebsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_freebsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux_386.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux_arm.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_linux_gc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_netbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_netbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_openbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_solaris.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_solaris.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_unix.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_unix.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_unix_gc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/syscall_unix_gc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/timestruct.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/timestruct.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/unveil_openbsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/unveil_openbsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/xattr_bsd.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/xattr_bsd.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_aix_ppc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_aix_ppc64.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_linux_386.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zerrors_linux_arm.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zptrace386_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zptrace386_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zptracearm_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zptracearm_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zptracemips_linux.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zptracemips_linux.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zsyscall_aix_ppc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zsysnum_linux_386.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/zsysnum_linux_arm.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_aix_ppc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_aix_ppc64.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_darwin_386.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_darwin_arm.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_linux_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_linux_386.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_linux_arm.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_linux_mips.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_netbsd_386.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/sys/unix/ztypes_netbsd_arm.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/AUTHORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/AUTHORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/CONTRIBUTORS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/CONTRIBUTORS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/PATENTS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/PATENTS -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/transform/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/transform/transform.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/bidi.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/bidi.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/bracket.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/bracket.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/core.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/core.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/prop.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/prop.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/bidi/trieval.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/forminfo.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/forminfo.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/input.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/input.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/iter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/iter.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/trie.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/unicode/norm/trie.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/kind_string.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/kind_string.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/tables10.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/tables10.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/tables11.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/tables11.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/tables9.0.0.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/tables9.0.0.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/transform.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/transform.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/trieval.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/trieval.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/width.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/golang.org/x/text/width/width.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/genproto/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/genproto/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/AUTHORS: -------------------------------------------------------------------------------- 1 | Google Inc. 2 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/CONTRIBUTING.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/Makefile -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/backoff.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/backoff.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/balancer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/balancer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/call.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/call.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/clientconn.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/clientconn.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/codec.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/codec.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/codegen.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/codegen.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/codes/codes.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/codes/codes.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/dialoptions.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/dialoptions.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/doc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/go.sum -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/grpclog/grpclog.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/grpclog/grpclog.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/grpclog/logger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/grpclog/logger.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/grpclog/loggerv2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/grpclog/loggerv2.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/install_gae.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/install_gae.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/interceptor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/interceptor.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/naming/naming.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/naming/naming.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/peer/peer.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/peer/peer.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/picker_wrapper.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/picker_wrapper.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/pickfirst.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/pickfirst.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/preloader.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/preloader.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/proxy.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/proxy.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/rpc_util.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/rpc_util.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/server.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/service_config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/service_config.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/stats/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/stats/handlers.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/stats/stats.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/stats/stats.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/status/status.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/status/status.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/stream.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/stream.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/tap/tap.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/tap/tap.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/trace.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/trace.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/version.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/version.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/vet.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/google.golang.org/grpc/vet.sh -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/.travis.yml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/LICENSE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/LICENSE.libyaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/LICENSE.libyaml -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/NOTICE -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/README.md -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/apic.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/apic.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/decode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/decode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/emitterc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/emitterc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/encode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/encode.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/go.mod -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/parserc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/parserc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/readerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/readerc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/resolve.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/resolve.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/scannerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/scannerc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/sorter.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/sorter.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/writerc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/writerc.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/yaml.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/yaml.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/yamlh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/yamlh.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/yamlprivateh.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/gopkg.in/yaml.v2/yamlprivateh.go -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/go/vendor/modules.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/go/vendor/modules.txt -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/.gitignore: -------------------------------------------------------------------------------- 1 | # 2 | # SPDX-License-Identifier: Apache-2.0 3 | # 4 | 5 | /.gradle/ 6 | /build/ 7 | 8 | **/*.class 9 | .vscode 10 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/README.md: -------------------------------------------------------------------------------- 1 | # FixedAsset Hyperledger Fabric Java contract for Performance Testing 2 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/build.gradle -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/gradlew -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/gradlew.bat -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/settings.gradle: -------------------------------------------------------------------------------- 1 | /* 2 | * SPDX-License-Identifier: Apache-2.0 3 | */ 4 | rootProject.name = 'fixed-asset' 5 | 6 | -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/src/main/java/org/example/FixedAsset.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/src/main/java/org/example/FixedAsset.java -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/src/main/java/org/example/QueryResponse.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/src/main/java/org/example/QueryResponse.java -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/java/src/main/java/org/example/ResponseMetadata.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/java/src/main/java/org/example/ResponseMetadata.java -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/node/index.js -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/node/lib/fixed-asset.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/node/lib/fixed-asset.js -------------------------------------------------------------------------------- /src/fabric/api/fixed-asset/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/api/fixed-asset/node/package.json -------------------------------------------------------------------------------- /src/fabric/samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/README.md -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/go/fabcar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/go/fabcar.go -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/go/go.mod -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/go/go.sum -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/README.md -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/build.gradle -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/config/checkstyle/checkstyle.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/config/checkstyle/checkstyle.xml -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/config/checkstyle/suppressions.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/config/checkstyle/suppressions.xml -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/gradlew -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/gradlew.bat -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/java/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/java/settings.gradle -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/node/.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/node/.editorconfig -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/node/.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/node/.eslintignore -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/node/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/node/.eslintrc.js -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/node/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/node/.gitignore -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/node/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/node/index.js -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/node/lib/fabcar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/node/lib/fabcar.js -------------------------------------------------------------------------------- /src/fabric/samples/fabcar/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/fabcar/node/package.json -------------------------------------------------------------------------------- /src/fabric/samples/marbles-norichquery/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles-norichquery/go/go.mod -------------------------------------------------------------------------------- /src/fabric/samples/marbles-norichquery/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles-norichquery/go/go.sum -------------------------------------------------------------------------------- /src/fabric/samples/marbles-norichquery/go/marbles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles-norichquery/go/marbles.go -------------------------------------------------------------------------------- /src/fabric/samples/marbles-norichquery/node/marbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles-norichquery/node/marbles.js -------------------------------------------------------------------------------- /src/fabric/samples/marbles-norichquery/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles-norichquery/node/package.json -------------------------------------------------------------------------------- /src/fabric/samples/marbles/go/META-INF/statedb/couchdb/indexes/indexOwner.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles/go/META-INF/statedb/couchdb/indexes/indexOwner.json -------------------------------------------------------------------------------- /src/fabric/samples/marbles/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles/go/go.mod -------------------------------------------------------------------------------- /src/fabric/samples/marbles/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles/go/go.sum -------------------------------------------------------------------------------- /src/fabric/samples/marbles/go/marbles.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles/go/marbles.go -------------------------------------------------------------------------------- /src/fabric/samples/marbles/node/marbles.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles/node/marbles.js -------------------------------------------------------------------------------- /src/fabric/samples/marbles/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/samples/marbles/node/package.json -------------------------------------------------------------------------------- /src/fabric/scenario/simple/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/simple/go/go.mod -------------------------------------------------------------------------------- /src/fabric/scenario/simple/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/simple/go/go.sum -------------------------------------------------------------------------------- /src/fabric/scenario/simple/go/simpletest.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/simple/go/simpletest.go -------------------------------------------------------------------------------- /src/fabric/scenario/simple/node/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/simple/node/package.json -------------------------------------------------------------------------------- /src/fabric/scenario/simple/node/simpletest.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/simple/node/simpletest.js -------------------------------------------------------------------------------- /src/fabric/scenario/smallbank/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/smallbank/go/go.mod -------------------------------------------------------------------------------- /src/fabric/scenario/smallbank/go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/smallbank/go/go.sum -------------------------------------------------------------------------------- /src/fabric/scenario/smallbank/go/smallbank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-caliper/caliper-benchmarks/HEAD/src/fabric/scenario/smallbank/go/smallbank.go --------------------------------------------------------------------------------