├── .gitattributes ├── .github └── workflows │ ├── build.yml │ └── unit-tests.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Makefile ├── api ├── grpc │ └── server.go └── rest │ ├── handlers.go │ ├── router.go │ └── router_test.go ├── blockhandler ├── blockhandler.go └── blockhandler_test.go ├── client ├── example │ └── client.go ├── fabex_client.go └── fabex_client_test.go ├── config └── config.go ├── configs ├── config.yaml └── connection-profile.yaml ├── db ├── cassandra-compose │ └── docker-compose.yaml ├── cassandra.go ├── db.go ├── mongo-compose │ ├── docker-compose.yaml │ └── mongo-entrypoint │ │ └── init.sh └── mongodb.go ├── engine.go ├── entrypoint.sh ├── fabex.go ├── fabex.png ├── go.mod ├── go.sum ├── helpers └── helpers.go ├── ledgerclient ├── ledgerclient.go └── ledgerclient_mock.go ├── log └── log.go ├── models └── models.go ├── proto ├── compile.sh ├── fabex.pb.go ├── fabex.proto └── fabex_grpc.pb.go ├── readme.md ├── tests ├── basic-network │ ├── .env │ ├── README.md │ ├── config │ │ ├── channel.tx │ │ └── genesis.block │ ├── configtx.yaml │ ├── connection.json │ ├── connection.yaml │ ├── crypto-config.yaml │ ├── crypto-config │ │ ├── ordererOrganizations │ │ │ └── example.com │ │ │ │ ├── ca │ │ │ │ ├── a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ ├── orderers │ │ │ │ └── orderer.example.com │ │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── 4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ │ ├── tlsca │ │ │ │ ├── 8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── users │ │ │ │ └── Admin@example.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ └── peerOrganizations │ │ │ └── org1.example.com │ │ │ ├── ca │ │ │ ├── 4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk │ │ │ ├── ca.org1.example.com-cert.pem │ │ │ └── org1.example.com-cert.pem │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ ├── peers │ │ │ └── peer0.org1.example.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── users │ │ │ ├── Admin@org1.example.com │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ └── User1@org1.example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk │ │ │ ├── signcerts │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ ├── docker-compose.yml │ ├── generate.sh │ ├── init.sh │ ├── start.sh │ ├── stop.sh │ └── teardown.sh ├── chaincode │ └── fabcar │ │ └── go │ │ ├── fabcar.go │ │ ├── go.mod │ │ └── vendor.tar.gz ├── config-integration-tests.yaml ├── config.yaml ├── connection-integration-tests.yaml ├── connection.yaml ├── custom.block ├── db │ └── mongo-compose │ │ ├── docker-compose.yaml │ │ └── mongo-entrypoint │ │ └── init.sh ├── fabcar │ ├── .gitignore │ ├── startFabric.sh │ └── stopFabric.sh └── first-network │ ├── .env │ ├── .gitignore │ ├── README.md │ ├── base │ ├── docker-compose-base.yaml │ └── peer-base.yaml │ ├── byfn.sh │ ├── ccp-generate.sh │ ├── ccp-template.json │ ├── ccp-template.yaml │ ├── channel-artifacts │ ├── .gitkeep │ ├── Org1MSPanchors.tx │ ├── Org2MSPanchors.tx │ ├── channel.tx │ └── genesis.block │ ├── configtx.yaml │ ├── connection-org1.json │ ├── connection-org1.yaml │ ├── connection-org2.json │ ├── connection-org2.yaml │ ├── connection-org3.json │ ├── connection-org3.yaml │ ├── crypto-config.yaml │ ├── crypto-config │ ├── ordererOrganizations │ │ └── example.com │ │ │ ├── ca │ │ │ ├── ad44ef200259b9080f6541645c134c0c36f020a30ed4a92a0f3192e7b62becca_sk │ │ │ └── ca.example.com-cert.pem │ │ │ ├── msp │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ ├── config.yaml │ │ │ └── tlscacerts │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ ├── orderers │ │ │ ├── orderer.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── 87cbec4bb7a120c6c96ff5c1c3054496f8bea5b1ec748e05ac60b85d1668d650_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ ├── orderer2.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── dadadc3add857bbe240c5942fb00fd569dc1e6781fdda11a57695969833581cb_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── orderer2.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ ├── orderer3.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── e00d682b62538f6b7481e2aa3821a41c9ead20f65846d88ac4279717da8d7321_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── orderer3.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ ├── orderer4.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── dd848af6736940085f3241acd6c49d0b18e7844af3e7b330e7e8f07374489f23_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── orderer4.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ └── orderer5.example.com │ │ │ │ ├── msp │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ ├── config.yaml │ │ │ │ ├── keystore │ │ │ │ │ └── 7411251f1a731ab04de3a7e2924603be3d16a21fcbeef0bb3bd4500fea3b1155_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── orderer5.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── e4349bbff6b998e067a4f37fcf9c56027878a38e03edebbc60a0a385887ee529_sk │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── users │ │ │ └── Admin@example.com │ │ │ ├── msp │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── 3b6452b5a5745c454f4d768207e1014bd2e6c9d5dec68a13f1042bb15815f168_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ └── peerOrganizations │ │ ├── org1.example.com │ │ ├── ca │ │ │ ├── ca.org1.example.com-cert.pem │ │ │ └── e80d0c36d9f7fa0253b90c7a38776cd973a17d81d23fae7810cdbb458fff627b_sk │ │ ├── msp │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── config.yaml │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ ├── peers │ │ │ ├── peer0.org1.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── 3a0e6fa72be3aa5251bfc3ab3bdc74c0c9875be9eacb5a658621faa8d1d88ee6_sk │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ │ ├── ca.crt │ │ │ │ │ ├── server.crt │ │ │ │ │ └── server.key │ │ │ └── peer1.org1.example.com │ │ │ │ ├── msp │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ ├── config.yaml │ │ │ │ ├── keystore │ │ │ │ │ └── 6ab7eb53aa9e4720b91d8641135a0b68aa8a18b4202f6a5dae2eb5d9699a69cf_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer1.org1.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ ├── tlsca │ │ │ ├── 79feb2668935a2ea0cd4e5061a5fa66e36ac5e64d7f525538ff4eb1b52aff9c8_sk │ │ │ └── tlsca.org1.example.com-cert.pem │ │ └── users │ │ │ ├── Admin@org1.example.com │ │ │ ├── msp │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ ├── config.yaml │ │ │ │ ├── keystore │ │ │ │ │ └── 8d5def0509aeed231be9d8009b98e5d116f86d612c9aba4149ece4ed8a678ed3_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── client.crt │ │ │ │ └── client.key │ │ │ └── User1@org1.example.com │ │ │ ├── msp │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── f3bab8d15f43fff5b5210fc32f3c11c777b379242dc4ce7c1c5f9acd822bed7b_sk │ │ │ ├── signcerts │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ │ └── org2.example.com │ │ ├── ca │ │ ├── be56e4e499a68688e977769b531cedf9f0d740bbc6bc729cc69fb3aee65713a4_sk │ │ └── ca.org2.example.com-cert.pem │ │ ├── msp │ │ ├── cacerts │ │ │ └── ca.org2.example.com-cert.pem │ │ ├── config.yaml │ │ └── tlscacerts │ │ │ └── tlsca.org2.example.com-cert.pem │ │ ├── peers │ │ ├── peer0.org2.example.com │ │ │ ├── msp │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ ├── config.yaml │ │ │ │ ├── keystore │ │ │ │ │ └── 86d1746a69649b2b2169973969a074910031bd6594349bc5547d43cb9a853be9_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer0.org2.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ └── peer1.org2.example.com │ │ │ ├── msp │ │ │ ├── cacerts │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── e6fada98f7ed6f71a989d805ad1cc44e50f89559bfe67b162b3d0911b76bc450_sk │ │ │ ├── signcerts │ │ │ │ └── peer1.org2.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── tlsca │ │ ├── 1a7ac2f22809b5bb1c4fb21674bf7df4ede031ac6293fecf3e13215b617d41b1_sk │ │ └── tlsca.org2.example.com-cert.pem │ │ └── users │ │ ├── Admin@org2.example.com │ │ ├── msp │ │ │ ├── cacerts │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── 6739c808b3b579da716ad4d2be23fd022718993ed301b40ddeeeb7d7177f1a10_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ │ └── User1@org2.example.com │ │ ├── msp │ │ ├── cacerts │ │ │ └── ca.org2.example.com-cert.pem │ │ ├── config.yaml │ │ ├── keystore │ │ │ └── 7b976c7a529a903985b147703dc39220392f4fa636acf5192eed9b9f3490763c_sk │ │ ├── signcerts │ │ │ └── User1@org2.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org2.example.com-cert.pem │ │ └── tls │ │ ├── ca.crt │ │ ├── client.crt │ │ └── client.key │ ├── docker-compose-ca.yaml │ ├── docker-compose-cli.yaml │ ├── docker-compose-couch-org3.yaml │ ├── docker-compose-couch.yaml │ ├── docker-compose-e2e-template.yaml │ ├── docker-compose-etcdraft2.yaml │ ├── docker-compose-kafka.yaml │ ├── docker-compose-org3.yaml │ ├── eyfn.sh │ └── scripts │ ├── capabilities.json │ ├── script.sh │ ├── step1org3.sh │ ├── step2org3.sh │ ├── step3org3.sh │ ├── testorg3.sh │ ├── upgrade_to_v14.sh │ └── utils.sh ├── ui.png └── ui ├── img ├── angle-double-left-solid.svg └── angle-double-right-solid.svg ├── index.html ├── index.js └── styles.css /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/unit-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/.github/workflows/unit-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/Makefile -------------------------------------------------------------------------------- /api/grpc/server.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/api/grpc/server.go -------------------------------------------------------------------------------- /api/rest/handlers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/api/rest/handlers.go -------------------------------------------------------------------------------- /api/rest/router.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/api/rest/router.go -------------------------------------------------------------------------------- /api/rest/router_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/api/rest/router_test.go -------------------------------------------------------------------------------- /blockhandler/blockhandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/blockhandler/blockhandler.go -------------------------------------------------------------------------------- /blockhandler/blockhandler_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/blockhandler/blockhandler_test.go -------------------------------------------------------------------------------- /client/example/client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/client/example/client.go -------------------------------------------------------------------------------- /client/fabex_client.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/client/fabex_client.go -------------------------------------------------------------------------------- /client/fabex_client_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/client/fabex_client_test.go -------------------------------------------------------------------------------- /config/config.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/config/config.go -------------------------------------------------------------------------------- /configs/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/configs/config.yaml -------------------------------------------------------------------------------- /configs/connection-profile.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/configs/connection-profile.yaml -------------------------------------------------------------------------------- /db/cassandra-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/db/cassandra-compose/docker-compose.yaml -------------------------------------------------------------------------------- /db/cassandra.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/db/cassandra.go -------------------------------------------------------------------------------- /db/db.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/db/db.go -------------------------------------------------------------------------------- /db/mongo-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/db/mongo-compose/docker-compose.yaml -------------------------------------------------------------------------------- /db/mongo-compose/mongo-entrypoint/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/db/mongo-compose/mongo-entrypoint/init.sh -------------------------------------------------------------------------------- /db/mongodb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/db/mongodb.go -------------------------------------------------------------------------------- /engine.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/engine.go -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | /app/fabex -------------------------------------------------------------------------------- /fabex.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/fabex.go -------------------------------------------------------------------------------- /fabex.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/fabex.png -------------------------------------------------------------------------------- /go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/go.mod -------------------------------------------------------------------------------- /go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/go.sum -------------------------------------------------------------------------------- /helpers/helpers.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/helpers/helpers.go -------------------------------------------------------------------------------- /ledgerclient/ledgerclient.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ledgerclient/ledgerclient.go -------------------------------------------------------------------------------- /ledgerclient/ledgerclient_mock.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ledgerclient/ledgerclient_mock.go -------------------------------------------------------------------------------- /log/log.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/log/log.go -------------------------------------------------------------------------------- /models/models.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/models/models.go -------------------------------------------------------------------------------- /proto/compile.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/proto/compile.sh -------------------------------------------------------------------------------- /proto/fabex.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/proto/fabex.pb.go -------------------------------------------------------------------------------- /proto/fabex.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/proto/fabex.proto -------------------------------------------------------------------------------- /proto/fabex_grpc.pb.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/proto/fabex_grpc.pb.go -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/readme.md -------------------------------------------------------------------------------- /tests/basic-network/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=net 2 | -------------------------------------------------------------------------------- /tests/basic-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/README.md -------------------------------------------------------------------------------- /tests/basic-network/config/channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/config/channel.tx -------------------------------------------------------------------------------- /tests/basic-network/config/genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/config/genesis.block -------------------------------------------------------------------------------- /tests/basic-network/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/configtx.yaml -------------------------------------------------------------------------------- /tests/basic-network/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/connection.json -------------------------------------------------------------------------------- /tests/basic-network/connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/connection.yaml -------------------------------------------------------------------------------- /tests/basic-network/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config.yaml -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/ca/a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/ca/a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/tlsca/8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/tlsca/8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/basic-network/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/docker-compose.yml -------------------------------------------------------------------------------- /tests/basic-network/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/generate.sh -------------------------------------------------------------------------------- /tests/basic-network/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/init.sh -------------------------------------------------------------------------------- /tests/basic-network/start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/start.sh -------------------------------------------------------------------------------- /tests/basic-network/stop.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/stop.sh -------------------------------------------------------------------------------- /tests/basic-network/teardown.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/basic-network/teardown.sh -------------------------------------------------------------------------------- /tests/chaincode/fabcar/go/fabcar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/chaincode/fabcar/go/fabcar.go -------------------------------------------------------------------------------- /tests/chaincode/fabcar/go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/chaincode/fabcar/go/go.mod -------------------------------------------------------------------------------- /tests/chaincode/fabcar/go/vendor.tar.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/chaincode/fabcar/go/vendor.tar.gz -------------------------------------------------------------------------------- /tests/config-integration-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/config-integration-tests.yaml -------------------------------------------------------------------------------- /tests/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/config.yaml -------------------------------------------------------------------------------- /tests/connection-integration-tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/connection-integration-tests.yaml -------------------------------------------------------------------------------- /tests/connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/connection.yaml -------------------------------------------------------------------------------- /tests/custom.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/custom.block -------------------------------------------------------------------------------- /tests/db/mongo-compose/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/db/mongo-compose/docker-compose.yaml -------------------------------------------------------------------------------- /tests/db/mongo-compose/mongo-entrypoint/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/db/mongo-compose/mongo-entrypoint/init.sh -------------------------------------------------------------------------------- /tests/fabcar/.gitignore: -------------------------------------------------------------------------------- 1 | /node_modules/ 2 | /package-lock.json 3 | /hfc-key-store/ 4 | -------------------------------------------------------------------------------- /tests/fabcar/startFabric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/fabcar/startFabric.sh -------------------------------------------------------------------------------- /tests/fabcar/stopFabric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/fabcar/stopFabric.sh -------------------------------------------------------------------------------- /tests/first-network/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=net 2 | IMAGE_TAG=latest 3 | SYS_CHANNEL=byfn-sys-channel 4 | -------------------------------------------------------------------------------- /tests/first-network/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/.gitignore -------------------------------------------------------------------------------- /tests/first-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/README.md -------------------------------------------------------------------------------- /tests/first-network/base/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/base/docker-compose-base.yaml -------------------------------------------------------------------------------- /tests/first-network/base/peer-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/base/peer-base.yaml -------------------------------------------------------------------------------- /tests/first-network/byfn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/byfn.sh -------------------------------------------------------------------------------- /tests/first-network/ccp-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/ccp-generate.sh -------------------------------------------------------------------------------- /tests/first-network/ccp-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/ccp-template.json -------------------------------------------------------------------------------- /tests/first-network/ccp-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/ccp-template.yaml -------------------------------------------------------------------------------- /tests/first-network/channel-artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/first-network/channel-artifacts/Org1MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/channel-artifacts/Org1MSPanchors.tx -------------------------------------------------------------------------------- /tests/first-network/channel-artifacts/Org2MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/channel-artifacts/Org2MSPanchors.tx -------------------------------------------------------------------------------- /tests/first-network/channel-artifacts/channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/channel-artifacts/channel.tx -------------------------------------------------------------------------------- /tests/first-network/channel-artifacts/genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/channel-artifacts/genesis.block -------------------------------------------------------------------------------- /tests/first-network/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/configtx.yaml -------------------------------------------------------------------------------- /tests/first-network/connection-org1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/connection-org1.json -------------------------------------------------------------------------------- /tests/first-network/connection-org1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/connection-org1.yaml -------------------------------------------------------------------------------- /tests/first-network/connection-org2.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/connection-org2.json -------------------------------------------------------------------------------- /tests/first-network/connection-org2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/connection-org2.yaml -------------------------------------------------------------------------------- /tests/first-network/connection-org3.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/connection-org3.json -------------------------------------------------------------------------------- /tests/first-network/connection-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/connection-org3.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/ca/ad44ef200259b9080f6541645c134c0c36f020a30ed4a92a0f3192e7b62becca_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/ca/ad44ef200259b9080f6541645c134c0c36f020a30ed4a92a0f3192e7b62becca_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/87cbec4bb7a120c6c96ff5c1c3054496f8bea5b1ec748e05ac60b85d1668d650_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/87cbec4bb7a120c6c96ff5c1c3054496f8bea5b1ec748e05ac60b85d1668d650_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/keystore/dadadc3add857bbe240c5942fb00fd569dc1e6781fdda11a57695969833581cb_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/keystore/dadadc3add857bbe240c5942fb00fd569dc1e6781fdda11a57695969833581cb_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/signcerts/orderer2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/signcerts/orderer2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer2.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/keystore/e00d682b62538f6b7481e2aa3821a41c9ead20f65846d88ac4279717da8d7321_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/keystore/e00d682b62538f6b7481e2aa3821a41c9ead20f65846d88ac4279717da8d7321_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/signcerts/orderer3.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/signcerts/orderer3.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer3.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/keystore/dd848af6736940085f3241acd6c49d0b18e7844af3e7b330e7e8f07374489f23_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/keystore/dd848af6736940085f3241acd6c49d0b18e7844af3e7b330e7e8f07374489f23_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/signcerts/orderer4.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/signcerts/orderer4.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer4.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/keystore/7411251f1a731ab04de3a7e2924603be3d16a21fcbeef0bb3bd4500fea3b1155_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/keystore/7411251f1a731ab04de3a7e2924603be3d16a21fcbeef0bb3bd4500fea3b1155_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/signcerts/orderer5.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/signcerts/orderer5.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/orderers/orderer5.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/tlsca/e4349bbff6b998e067a4f37fcf9c56027878a38e03edebbc60a0a385887ee529_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/tlsca/e4349bbff6b998e067a4f37fcf9c56027878a38e03edebbc60a0a385887ee529_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/3b6452b5a5745c454f4d768207e1014bd2e6c9d5dec68a13f1042bb15815f168_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/3b6452b5a5745c454f4d768207e1014bd2e6c9d5dec68a13f1042bb15815f168_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/ca/e80d0c36d9f7fa0253b90c7a38776cd973a17d81d23fae7810cdbb458fff627b_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/ca/e80d0c36d9f7fa0253b90c7a38776cd973a17d81d23fae7810cdbb458fff627b_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/3a0e6fa72be3aa5251bfc3ab3bdc74c0c9875be9eacb5a658621faa8d1d88ee6_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/3a0e6fa72be3aa5251bfc3ab3bdc74c0c9875be9eacb5a658621faa8d1d88ee6_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/6ab7eb53aa9e4720b91d8641135a0b68aa8a18b4202f6a5dae2eb5d9699a69cf_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/6ab7eb53aa9e4720b91d8641135a0b68aa8a18b4202f6a5dae2eb5d9699a69cf_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/tlsca/79feb2668935a2ea0cd4e5061a5fa66e36ac5e64d7f525538ff4eb1b52aff9c8_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/tlsca/79feb2668935a2ea0cd4e5061a5fa66e36ac5e64d7f525538ff4eb1b52aff9c8_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/8d5def0509aeed231be9d8009b98e5d116f86d612c9aba4149ece4ed8a678ed3_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/8d5def0509aeed231be9d8009b98e5d116f86d612c9aba4149ece4ed8a678ed3_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3bab8d15f43fff5b5210fc32f3c11c777b379242dc4ce7c1c5f9acd822bed7b_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/f3bab8d15f43fff5b5210fc32f3c11c777b379242dc4ce7c1c5f9acd822bed7b_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/ca/be56e4e499a68688e977769b531cedf9f0d740bbc6bc729cc69fb3aee65713a4_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/ca/be56e4e499a68688e977769b531cedf9f0d740bbc6bc729cc69fb3aee65713a4_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/86d1746a69649b2b2169973969a074910031bd6594349bc5547d43cb9a853be9_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/86d1746a69649b2b2169973969a074910031bd6594349bc5547d43cb9a853be9_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/e6fada98f7ed6f71a989d805ad1cc44e50f89559bfe67b162b3d0911b76bc450_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/e6fada98f7ed6f71a989d805ad1cc44e50f89559bfe67b162b3d0911b76bc450_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/tlsca/1a7ac2f22809b5bb1c4fb21674bf7df4ede031ac6293fecf3e13215b617d41b1_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/tlsca/1a7ac2f22809b5bb1c4fb21674bf7df4ede031ac6293fecf3e13215b617d41b1_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/6739c808b3b579da716ad4d2be23fd022718993ed301b40ddeeeb7d7177f1a10_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/6739c808b3b579da716ad4d2be23fd022718993ed301b40ddeeeb7d7177f1a10_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/7b976c7a529a903985b147703dc39220392f4fa636acf5192eed9b9f3490763c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/7b976c7a529a903985b147703dc39220392f4fa636acf5192eed9b9f3490763c_sk -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt -------------------------------------------------------------------------------- /tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key -------------------------------------------------------------------------------- /tests/first-network/docker-compose-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-ca.yaml -------------------------------------------------------------------------------- /tests/first-network/docker-compose-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-cli.yaml -------------------------------------------------------------------------------- /tests/first-network/docker-compose-couch-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-couch-org3.yaml -------------------------------------------------------------------------------- /tests/first-network/docker-compose-couch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-couch.yaml -------------------------------------------------------------------------------- /tests/first-network/docker-compose-e2e-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-e2e-template.yaml -------------------------------------------------------------------------------- /tests/first-network/docker-compose-etcdraft2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-etcdraft2.yaml -------------------------------------------------------------------------------- /tests/first-network/docker-compose-kafka.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-kafka.yaml -------------------------------------------------------------------------------- /tests/first-network/docker-compose-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/docker-compose-org3.yaml -------------------------------------------------------------------------------- /tests/first-network/eyfn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/eyfn.sh -------------------------------------------------------------------------------- /tests/first-network/scripts/capabilities.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/capabilities.json -------------------------------------------------------------------------------- /tests/first-network/scripts/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/script.sh -------------------------------------------------------------------------------- /tests/first-network/scripts/step1org3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/step1org3.sh -------------------------------------------------------------------------------- /tests/first-network/scripts/step2org3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/step2org3.sh -------------------------------------------------------------------------------- /tests/first-network/scripts/step3org3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/step3org3.sh -------------------------------------------------------------------------------- /tests/first-network/scripts/testorg3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/testorg3.sh -------------------------------------------------------------------------------- /tests/first-network/scripts/upgrade_to_v14.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/upgrade_to_v14.sh -------------------------------------------------------------------------------- /tests/first-network/scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/tests/first-network/scripts/utils.sh -------------------------------------------------------------------------------- /ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ui.png -------------------------------------------------------------------------------- /ui/img/angle-double-left-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ui/img/angle-double-left-solid.svg -------------------------------------------------------------------------------- /ui/img/angle-double-right-solid.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ui/img/angle-double-right-solid.svg -------------------------------------------------------------------------------- /ui/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ui/index.html -------------------------------------------------------------------------------- /ui/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ui/index.js -------------------------------------------------------------------------------- /ui/styles.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hyperledger-labs/fabex/HEAD/ui/styles.css --------------------------------------------------------------------------------