├── Quary Commands ├── README.md ├── UsefulReferances.txt ├── chaincode-docker-devmode ├── README.rst ├── docker-compose-simple.yaml ├── msp │ ├── admincerts │ │ └── admincert.pem │ ├── cacerts │ │ └── cacert.pem │ ├── config.yaml │ ├── keystore │ │ └── key.pem │ └── signcerts │ │ └── peer.pem ├── myc.block ├── myc.tx ├── orderer.block └── script.sh ├── chaincode ├── chaincode └── crop_chaincode.go ├── network ├── .env ├── README.md ├── base │ ├── docker-compose-base.yaml │ └── peer-base.yaml ├── bin │ ├── configtxgen │ ├── configtxlator │ ├── cryptogen │ ├── get-docker-images.sh │ ├── orderer │ └── peer ├── byfn.sh ├── channel-artifacts │ ├── .gitkeep │ ├── Org1MSPanchors.tx │ ├── Org2MSPanchors.tx │ ├── channel.tx │ └── genesis.block ├── configtx.yaml ├── crypto-config.yaml ├── crypto-config │ ├── ordererOrganizations │ │ └── example.com │ │ │ ├── ca │ │ │ ├── ca.example.com-cert.pem │ │ │ └── f0acb53cd98ee0f679b64273f6d188c80cbeeea127f06b2ef2b47264dd9ca68c_sk │ │ │ ├── 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 │ │ │ │ │ └── 6a3146540ceb7bf8865858f77bda4fc43fb3af5e14941ca5dac515f86a4a6c5b_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── e6143c013202ca959e89faf6c0c1aee02fbaa90b876851c36e294df0248571d2_sk │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── users │ │ │ └── Admin@example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 2e15c8e385596813544d7ef5af02901b688b9b77ee5ae0a9051493529fed55c3_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 │ │ │ ├── 33d928195738d4eb66990e1210a230063ae176a980c1b6794236fb64745a50db_sk │ │ │ └── ca.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 │ │ │ │ │ │ └── d6a62759edb61ff894dcd4d714d6d4a8777a0f8327850882e8298bb5082d4e1f_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 │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── f4bbb168887ea9d9c1c29c382f2f849c0913422ca9c4afa235f680c699bdd9af_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer1.org1.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ ├── tlsca │ │ │ ├── e3d35111715f0a1c2e96f931bb984fd9f885a8c68467cdb9fe34c89ebd36ae9c_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 │ │ │ │ │ └── 27b8b916aae8b3ce9175a5458f95f45f4cb69ce2a495487502ac78f8ef5c4fc5_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 │ │ │ │ └── 25034203bdfd425c2479e79529ea0bc4f7a68906d8c5eb626941289cefcef90e_sk │ │ │ ├── signcerts │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ └── org2.example.com │ │ ├── ca │ │ ├── 01e6e90a4a5303b7715f70d794f32838ab84b525128f67fe47a4ddd0ae05d48e_sk │ │ └── ca.org2.example.com-cert.pem │ │ ├── msp │ │ ├── admincerts │ │ │ └── Admin@org2.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org2.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org2.example.com-cert.pem │ │ ├── peers │ │ ├── peer0.org2.example.com │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── dad08e9dd5b1b49de5a16bee3e7af63c4e19b6c5ef28ec9255bc5810dd1e858a_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 │ │ │ ├── admincerts │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── faac4c04692e7bd5f1598639292f80cea6e5401abfd59344a74eedbfc23b9857_sk │ │ │ ├── signcerts │ │ │ │ └── peer1.org2.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── tlsca │ │ ├── 0977d4fd9dbe455909bafb60df0938ca3c7af4ac1e7eb4f3251648789b9dd35a_sk │ │ └── tlsca.org2.example.com-cert.pem │ │ └── users │ │ ├── Admin@org2.example.com │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org2.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 8cccc1c4eab4d9734ffb6166c1e18ed7457cbedfab98cf88a0e4d4037d95ce6d_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ └── User1@org2.example.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── User1@org2.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org2.example.com-cert.pem │ │ ├── keystore │ │ │ └── c1f5e40f74935f5f819ebe4a76b9f74e15bd88d52753c71867c30e6e5eaa3afa_sk │ │ ├── signcerts │ │ │ └── User1@org2.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org2.example.com-cert.pem │ │ └── tls │ │ ├── ca.crt │ │ ├── server.crt │ │ └── server.key ├── docker-compose-cli.yaml ├── docker-compose-couch.yaml ├── docker-compose-e2e-template.yaml ├── docker-compose-e2e.yaml └── scripts │ └── script.sh ├── project related files ├── .~lock.Application Ideas for Moon Project for Internship Students 20180106.docx# └── Application Ideas for Moon Project for Internship Students 20180106.docx ├── test results ├── 01 chaincode of marble result ├── 02 chaincode of marble result 2 ├── 03 marble chaincode testing summery └── 04 experiment result on running the chaincode in fabric sample network └── testfiles ├── learningJson.go ├── test.go ├── test2 └── test2.go /Quary Commands: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/Quary Commands -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/README.md -------------------------------------------------------------------------------- /UsefulReferances.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/UsefulReferances.txt -------------------------------------------------------------------------------- /chaincode-docker-devmode/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/README.rst -------------------------------------------------------------------------------- /chaincode-docker-devmode/docker-compose-simple.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/docker-compose-simple.yaml -------------------------------------------------------------------------------- /chaincode-docker-devmode/msp/admincerts/admincert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/msp/admincerts/admincert.pem -------------------------------------------------------------------------------- /chaincode-docker-devmode/msp/cacerts/cacert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/msp/cacerts/cacert.pem -------------------------------------------------------------------------------- /chaincode-docker-devmode/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/msp/config.yaml -------------------------------------------------------------------------------- /chaincode-docker-devmode/msp/keystore/key.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/msp/keystore/key.pem -------------------------------------------------------------------------------- /chaincode-docker-devmode/msp/signcerts/peer.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/msp/signcerts/peer.pem -------------------------------------------------------------------------------- /chaincode-docker-devmode/myc.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/myc.block -------------------------------------------------------------------------------- /chaincode-docker-devmode/myc.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/myc.tx -------------------------------------------------------------------------------- /chaincode-docker-devmode/orderer.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/orderer.block -------------------------------------------------------------------------------- /chaincode-docker-devmode/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode-docker-devmode/script.sh -------------------------------------------------------------------------------- /chaincode/chaincode: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode/chaincode -------------------------------------------------------------------------------- /chaincode/crop_chaincode.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/chaincode/crop_chaincode.go -------------------------------------------------------------------------------- /network/.env: -------------------------------------------------------------------------------- 1 | COMPOSE_PROJECT_NAME=net 2 | -------------------------------------------------------------------------------- /network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/README.md -------------------------------------------------------------------------------- /network/base/docker-compose-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/base/docker-compose-base.yaml -------------------------------------------------------------------------------- /network/base/peer-base.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/base/peer-base.yaml -------------------------------------------------------------------------------- /network/bin/configtxgen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/bin/configtxgen -------------------------------------------------------------------------------- /network/bin/configtxlator: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/bin/configtxlator -------------------------------------------------------------------------------- /network/bin/cryptogen: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/bin/cryptogen -------------------------------------------------------------------------------- /network/bin/get-docker-images.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/bin/get-docker-images.sh -------------------------------------------------------------------------------- /network/bin/orderer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/bin/orderer -------------------------------------------------------------------------------- /network/bin/peer: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/bin/peer -------------------------------------------------------------------------------- /network/byfn.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/byfn.sh -------------------------------------------------------------------------------- /network/channel-artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /network/channel-artifacts/Org1MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/channel-artifacts/Org1MSPanchors.tx -------------------------------------------------------------------------------- /network/channel-artifacts/Org2MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/channel-artifacts/Org2MSPanchors.tx -------------------------------------------------------------------------------- /network/channel-artifacts/channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/channel-artifacts/channel.tx -------------------------------------------------------------------------------- /network/channel-artifacts/genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/channel-artifacts/genesis.block -------------------------------------------------------------------------------- /network/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/configtx.yaml -------------------------------------------------------------------------------- /network/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config.yaml -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/ca/f0acb53cd98ee0f679b64273f6d188c80cbeeea127f06b2ef2b47264dd9ca68c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/ca/f0acb53cd98ee0f679b64273f6d188c80cbeeea127f06b2ef2b47264dd9ca68c_sk -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/6a3146540ceb7bf8865858f77bda4fc43fb3af5e14941ca5dac515f86a4a6c5b_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/6a3146540ceb7bf8865858f77bda4fc43fb3af5e14941ca5dac515f86a4a6c5b_sk -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/tlsca/e6143c013202ca959e89faf6c0c1aee02fbaa90b876851c36e294df0248571d2_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/tlsca/e6143c013202ca959e89faf6c0c1aee02fbaa90b876851c36e294df0248571d2_sk -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/2e15c8e385596813544d7ef5af02901b688b9b77ee5ae0a9051493529fed55c3_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/2e15c8e385596813544d7ef5af02901b688b9b77ee5ae0a9051493529fed55c3_sk -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/ca/33d928195738d4eb66990e1210a230063ae176a980c1b6794236fb64745a50db_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/ca/33d928195738d4eb66990e1210a230063ae176a980c1b6794236fb64745a50db_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/d6a62759edb61ff894dcd4d714d6d4a8777a0f8327850882e8298bb5082d4e1f_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/d6a62759edb61ff894dcd4d714d6d4a8777a0f8327850882e8298bb5082d4e1f_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/f4bbb168887ea9d9c1c29c382f2f849c0913422ca9c4afa235f680c699bdd9af_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/f4bbb168887ea9d9c1c29c382f2f849c0913422ca9c4afa235f680c699bdd9af_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/tlsca/e3d35111715f0a1c2e96f931bb984fd9f885a8c68467cdb9fe34c89ebd36ae9c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/tlsca/e3d35111715f0a1c2e96f931bb984fd9f885a8c68467cdb9fe34c89ebd36ae9c_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/27b8b916aae8b3ce9175a5458f95f45f4cb69ce2a495487502ac78f8ef5c4fc5_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/27b8b916aae8b3ce9175a5458f95f45f4cb69ce2a495487502ac78f8ef5c4fc5_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/25034203bdfd425c2479e79529ea0bc4f7a68906d8c5eb626941289cefcef90e_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/25034203bdfd425c2479e79529ea0bc4f7a68906d8c5eb626941289cefcef90e_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/ca/01e6e90a4a5303b7715f70d794f32838ab84b525128f67fe47a4ddd0ae05d48e_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/ca/01e6e90a4a5303b7715f70d794f32838ab84b525128f67fe47a4ddd0ae05d48e_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/dad08e9dd5b1b49de5a16bee3e7af63c4e19b6c5ef28ec9255bc5810dd1e858a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/dad08e9dd5b1b49de5a16bee3e7af63c4e19b6c5ef28ec9255bc5810dd1e858a_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/faac4c04692e7bd5f1598639292f80cea6e5401abfd59344a74eedbfc23b9857_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/faac4c04692e7bd5f1598639292f80cea6e5401abfd59344a74eedbfc23b9857_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/tlsca/0977d4fd9dbe455909bafb60df0938ca3c7af4ac1e7eb4f3251648789b9dd35a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/tlsca/0977d4fd9dbe455909bafb60df0938ca3c7af4ac1e7eb4f3251648789b9dd35a_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/8cccc1c4eab4d9734ffb6166c1e18ed7457cbedfab98cf88a0e4d4037d95ce6d_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/8cccc1c4eab4d9734ffb6166c1e18ed7457cbedfab98cf88a0e4d4037d95ce6d_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/server.key -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/c1f5e40f74935f5f819ebe4a76b9f74e15bd88d52753c71867c30e6e5eaa3afa_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/c1f5e40f74935f5f819ebe4a76b9f74e15bd88d52753c71867c30e6e5eaa3afa_sk -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/server.key -------------------------------------------------------------------------------- /network/docker-compose-cli.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/docker-compose-cli.yaml -------------------------------------------------------------------------------- /network/docker-compose-couch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/docker-compose-couch.yaml -------------------------------------------------------------------------------- /network/docker-compose-e2e-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/docker-compose-e2e-template.yaml -------------------------------------------------------------------------------- /network/docker-compose-e2e.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/docker-compose-e2e.yaml -------------------------------------------------------------------------------- /network/scripts/script.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/network/scripts/script.sh -------------------------------------------------------------------------------- /project related files/.~lock.Application Ideas for Moon Project for Internship Students 20180106.docx#: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/project related files/.~lock.Application Ideas for Moon Project for Internship Students 20180106.docx# -------------------------------------------------------------------------------- /project related files/Application Ideas for Moon Project for Internship Students 20180106.docx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/project related files/Application Ideas for Moon Project for Internship Students 20180106.docx -------------------------------------------------------------------------------- /test results/01 chaincode of marble result: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/test results/01 chaincode of marble result -------------------------------------------------------------------------------- /test results/02 chaincode of marble result 2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/test results/02 chaincode of marble result 2 -------------------------------------------------------------------------------- /test results/03 marble chaincode testing summery: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/test results/03 marble chaincode testing summery -------------------------------------------------------------------------------- /test results/04 experiment result on running the chaincode in fabric sample network: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/test results/04 experiment result on running the chaincode in fabric sample network -------------------------------------------------------------------------------- /testfiles/learningJson.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/testfiles/learningJson.go -------------------------------------------------------------------------------- /testfiles/test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/testfiles/test.go -------------------------------------------------------------------------------- /testfiles/test2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/testfiles/test2 -------------------------------------------------------------------------------- /testfiles/test2.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/manilpuri9/hyperledger-fabric-precision-farming/HEAD/testfiles/test2.go --------------------------------------------------------------------------------