├── .gitignore ├── LICENSE ├── README.md ├── application ├── connprofile.json ├── package-lock.json ├── package.json └── vstest4.js ├── chaincode ├── META-INF │ └── statedb │ │ └── couchdb │ │ └── indexes │ │ ├── indexBrand.json │ │ └── indexId.json ├── collections_config.json └── vehiclesharing.go ├── configtx.yaml ├── configtx_onlinepay └── configtx.yaml ├── deployed ├── client │ ├── chaincode │ │ └── vehiclesharing │ │ │ ├── META-INF │ │ │ └── statedb │ │ │ │ └── couchdb │ │ │ │ └── indexes │ │ │ │ ├── indexBrand.json │ │ │ │ └── indexId.json │ │ │ ├── collections_config.json │ │ │ └── vehiclesharing.go │ ├── channel-artifacts │ │ ├── onlinepayorg.json │ │ └── vehiclesharing_channel.tx │ ├── docker-compose-prod-client.yaml │ ├── mymsp │ │ ├── localmsp │ │ │ ├── admin@bctest.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── admin@bctest.example.com.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.bctest.example.com.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── admin@bctest.example.com.key │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── admin@bctest.example.com.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.bctest.example.com.pem │ │ │ │ └── tls │ │ │ │ │ ├── tls-admin@bctest.example.com.key │ │ │ │ │ ├── tls-admin@bctest.example.com.pem │ │ │ │ │ └── tlsca.bctest.example.com.pem │ │ │ ├── admin@onlinepay.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── admin@onlinepay.example.com.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.onlinepay.example.com.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── admin@onlinepay.example.com.key │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── admin@onlinepay.example.com.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.onlinepay.example.com.pem │ │ │ │ └── tls │ │ │ │ │ ├── tls-admin@onlinepay.example.com.key │ │ │ │ │ ├── tls-admin@onlinepay.example.com.pem │ │ │ │ │ └── tlsca.onlinepay.example.com.pem │ │ │ ├── admin@sharing.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── admin@sharing.example.com.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.sharing.example.com.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── admin@sharing.example.com.key │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── admin@sharing.example.com.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.sharing.example.com.pem │ │ │ │ └── tls │ │ │ │ │ ├── tls-admin@sharing.example.com.key │ │ │ │ │ ├── tls-admin@sharing.example.com.pem │ │ │ │ │ └── tlsca.sharing.example.com.pem │ │ │ ├── admin@vehicle.example.com │ │ │ │ ├── msp │ │ │ │ │ ├── admincerts │ │ │ │ │ │ └── admin@vehicle.example.com.pem │ │ │ │ │ ├── cacerts │ │ │ │ │ │ └── ca.vehicle.example.com.pem │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── admin@vehicle.example.com.key │ │ │ │ │ ├── signcerts │ │ │ │ │ │ └── admin@vehicle.example.com.pem │ │ │ │ │ └── tlscacerts │ │ │ │ │ │ └── tlsca.vehicle.example.com.pem │ │ │ │ └── tls │ │ │ │ │ ├── tls-admin@vehicle.example.com.key │ │ │ │ │ ├── tls-admin@vehicle.example.com.pem │ │ │ │ │ └── tlsca.vehicle.example.com.pem │ │ │ └── alice@sharing.example.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── alice@sharing.example.com.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.sharing.example.com.pem │ │ │ │ ├── keystore │ │ │ │ │ └── alice@sharing.example.com.key │ │ │ │ ├── signcerts │ │ │ │ │ └── alice@sharing.example.com.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.sharing.example.com.pem │ │ │ │ └── tls │ │ │ │ ├── tls-alice@sharing.example.com.key │ │ │ │ ├── tls-alice@sharing.example.com.pem │ │ │ │ └── tlsca.sharing.example.com.pem │ │ └── orgmsp │ │ │ ├── orderer.bctest.example.com │ │ │ └── msp │ │ │ │ ├── admincerts │ │ │ │ └── admin@bctest.example.com.pem │ │ │ │ ├── cacerts │ │ │ │ └── ca.bctest.example.com.pem │ │ │ │ └── tlscacerts │ │ │ │ └── tlsca.bctest.example.com.pem │ │ │ ├── peer0.onlinepay.example.com │ │ │ └── msp │ │ │ │ ├── admincerts │ │ │ │ └── admin@onlinepay.example.com.pem │ │ │ │ ├── cacerts │ │ │ │ └── ca.onlinepay.example.com.pem │ │ │ │ ├── config.yaml │ │ │ │ └── tlscacerts │ │ │ │ └── tlsca.onlinepay.example.com.pem │ │ │ ├── peer0.sharing.example.com │ │ │ └── msp │ │ │ │ ├── admincerts │ │ │ │ └── admin@sharing.example.com.pem │ │ │ │ ├── cacerts │ │ │ │ └── ca.sharing.example.com.pem │ │ │ │ ├── config.yaml │ │ │ │ └── tlscacerts │ │ │ │ └── tlsca.sharing.example.com.pem │ │ │ └── peer0.vehicle.example.com │ │ │ └── msp │ │ │ ├── admincerts │ │ │ └── admin@vehicle.example.com.pem │ │ │ ├── cacerts │ │ │ └── ca.vehicle.example.com.pem │ │ │ ├── config.yaml │ │ │ └── tlscacerts │ │ │ └── tlsca.vehicle.example.com.pem │ └── utils │ │ └── setparas.sh ├── orderer │ ├── channel-artifacts │ │ └── vehiclesharing_genesis.block │ ├── docker-compose-prod-orderer.yaml │ └── mymsp │ │ └── localmsp │ │ └── orderer.bctest.example.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── admin@bctest.example.com.pem │ │ ├── cacerts │ │ │ └── ca.bctest.example.com.pem │ │ ├── keystore │ │ │ └── orderer.bctest.example.com.key │ │ ├── signcerts │ │ │ └── orderer.bctest.example.com.pem │ │ └── tlscacerts │ │ │ └── tlsca.bctest.example.com.pem │ │ └── tls │ │ ├── tls-orderer.bctest.example.com.key │ │ ├── tls-orderer.bctest.example.com.pem │ │ └── tlsca.bctest.example.com.pem ├── peer0.onlinepay │ ├── docker-compose-prod-peer0-onlinepay.yaml │ └── mymsp │ │ └── localmsp │ │ └── peer0.onlinepay.example.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── admin@onlinepay.example.com.pem │ │ ├── cacerts │ │ │ └── ca.onlinepay.example.com.pem │ │ ├── config.yaml │ │ ├── keystore │ │ │ └── peer0.onlinepay.example.com.key │ │ ├── signcerts │ │ │ └── peer0.onlinepay.example.com.pem │ │ └── tlscacerts │ │ │ └── tlsca.onlinepay.example.com.pem │ │ └── tls │ │ ├── tls-peer0.onlinepay.example.com.key │ │ ├── tls-peer0.onlinepay.example.com.pem │ │ └── tlsca.onlinepay.example.com.pem ├── peer0.sharing │ ├── docker-compose-prod-peer0-sharing.yaml │ └── mymsp │ │ └── localmsp │ │ └── peer0.sharing.example.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── admin@sharing.example.com.pem │ │ ├── cacerts │ │ │ └── ca.sharing.example.com.pem │ │ ├── config.yaml │ │ ├── keystore │ │ │ └── peer0.sharing.example.com.key │ │ ├── signcerts │ │ │ └── peer0.sharing.example.com.pem │ │ └── tlscacerts │ │ │ └── tlsca.sharing.example.com.pem │ │ └── tls │ │ ├── tls-peer0.sharing.example.com.key │ │ ├── tls-peer0.sharing.example.com.pem │ │ └── tlsca.sharing.example.com.pem └── peer0.vehicle │ ├── docker-compose-prod-peer0-vehicle.yaml │ └── mymsp │ └── localmsp │ └── peer0.vehicle.example.com │ ├── msp │ ├── admincerts │ │ └── admin@vehicle.example.com.pem │ ├── cacerts │ │ └── ca.vehicle.example.com.pem │ ├── config.yaml │ ├── keystore │ │ └── peer0.vehicle.example.com.key │ ├── signcerts │ │ └── peer0.vehicle.example.com.pem │ └── tlscacerts │ │ └── tlsca.vehicle.example.com.pem │ └── tls │ ├── tls-peer0.vehicle.example.com.key │ ├── tls-peer0.vehicle.example.com.pem │ └── tlsca.vehicle.example.com.pem ├── docker-compose-prod-client.yaml ├── docker-compose-prod-orderer.yaml ├── docker-compose-prod-peer0-onlinepay.yaml ├── docker-compose-prod-peer0-sharing.yaml ├── docker-compose-prod-peer0-vehicle.yaml ├── prodchannel.sh ├── prodmsp.sh ├── prodmsp_onlinepay.sh └── utils ├── mymsputils.sh └── setparas.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/README.md -------------------------------------------------------------------------------- /application/connprofile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/application/connprofile.json -------------------------------------------------------------------------------- /application/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/application/package-lock.json -------------------------------------------------------------------------------- /application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/application/package.json -------------------------------------------------------------------------------- /application/vstest4.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/application/vstest4.js -------------------------------------------------------------------------------- /chaincode/META-INF/statedb/couchdb/indexes/indexBrand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/chaincode/META-INF/statedb/couchdb/indexes/indexBrand.json -------------------------------------------------------------------------------- /chaincode/META-INF/statedb/couchdb/indexes/indexId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/chaincode/META-INF/statedb/couchdb/indexes/indexId.json -------------------------------------------------------------------------------- /chaincode/collections_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/chaincode/collections_config.json -------------------------------------------------------------------------------- /chaincode/vehiclesharing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/chaincode/vehiclesharing.go -------------------------------------------------------------------------------- /configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/configtx.yaml -------------------------------------------------------------------------------- /configtx_onlinepay/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/configtx_onlinepay/configtx.yaml -------------------------------------------------------------------------------- /deployed/client/chaincode/vehiclesharing/META-INF/statedb/couchdb/indexes/indexBrand.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/chaincode/vehiclesharing/META-INF/statedb/couchdb/indexes/indexBrand.json -------------------------------------------------------------------------------- /deployed/client/chaincode/vehiclesharing/META-INF/statedb/couchdb/indexes/indexId.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/chaincode/vehiclesharing/META-INF/statedb/couchdb/indexes/indexId.json -------------------------------------------------------------------------------- /deployed/client/chaincode/vehiclesharing/collections_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/chaincode/vehiclesharing/collections_config.json -------------------------------------------------------------------------------- /deployed/client/chaincode/vehiclesharing/vehiclesharing.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/chaincode/vehiclesharing/vehiclesharing.go -------------------------------------------------------------------------------- /deployed/client/channel-artifacts/onlinepayorg.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/channel-artifacts/onlinepayorg.json -------------------------------------------------------------------------------- /deployed/client/channel-artifacts/vehiclesharing_channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/channel-artifacts/vehiclesharing_channel.tx -------------------------------------------------------------------------------- /deployed/client/docker-compose-prod-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/docker-compose-prod-client.yaml -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/admincerts/admin@bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/admincerts/admin@bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/cacerts/ca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/cacerts/ca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/keystore/admin@bctest.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/keystore/admin@bctest.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/signcerts/admin@bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/signcerts/admin@bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/tlscacerts/tlsca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/msp/tlscacerts/tlsca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/tls/tls-admin@bctest.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/tls/tls-admin@bctest.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/tls/tls-admin@bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/tls/tls-admin@bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@bctest.example.com/tls/tlsca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@bctest.example.com/tls/tlsca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/admincerts/admin@onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/admincerts/admin@onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/cacerts/ca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/cacerts/ca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/keystore/admin@onlinepay.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/keystore/admin@onlinepay.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/signcerts/admin@onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/signcerts/admin@onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/tlscacerts/tlsca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/msp/tlscacerts/tlsca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/tls/tls-admin@onlinepay.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/tls/tls-admin@onlinepay.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/tls/tls-admin@onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/tls/tls-admin@onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@onlinepay.example.com/tls/tlsca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@onlinepay.example.com/tls/tlsca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/admincerts/admin@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/admincerts/admin@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/cacerts/ca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/cacerts/ca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/keystore/admin@sharing.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/keystore/admin@sharing.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/signcerts/admin@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/signcerts/admin@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/tls/tls-admin@sharing.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/tls/tls-admin@sharing.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/tls/tls-admin@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/tls/tls-admin@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@sharing.example.com/tls/tlsca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@sharing.example.com/tls/tlsca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/admincerts/admin@vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/admincerts/admin@vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/cacerts/ca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/cacerts/ca.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/keystore/admin@vehicle.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/keystore/admin@vehicle.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/signcerts/admin@vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/signcerts/admin@vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/tlscacerts/tlsca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/msp/tlscacerts/tlsca.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/tls/tls-admin@vehicle.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/tls/tls-admin@vehicle.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/tls/tls-admin@vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/tls/tls-admin@vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/admin@vehicle.example.com/tls/tlsca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/admin@vehicle.example.com/tls/tlsca.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/admincerts/alice@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/admincerts/alice@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/cacerts/ca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/cacerts/ca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/keystore/alice@sharing.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/keystore/alice@sharing.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/signcerts/alice@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/signcerts/alice@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/tls/tls-alice@sharing.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/tls/tls-alice@sharing.example.com.key -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/tls/tls-alice@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/tls/tls-alice@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/localmsp/alice@sharing.example.com/tls/tlsca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/localmsp/alice@sharing.example.com/tls/tlsca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/orderer.bctest.example.com/msp/admincerts/admin@bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/orderer.bctest.example.com/msp/admincerts/admin@bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/orderer.bctest.example.com/msp/cacerts/ca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/orderer.bctest.example.com/msp/cacerts/ca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/orderer.bctest.example.com/msp/tlscacerts/tlsca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/orderer.bctest.example.com/msp/tlscacerts/tlsca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/admincerts/admin@onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/admincerts/admin@onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/cacerts/ca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/cacerts/ca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/config.yaml -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/tlscacerts/tlsca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.onlinepay.example.com/msp/tlscacerts/tlsca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/admincerts/admin@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/admincerts/admin@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/cacerts/ca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/cacerts/ca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/config.yaml -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/admincerts/admin@vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/admincerts/admin@vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/cacerts/ca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/cacerts/ca.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/config.yaml -------------------------------------------------------------------------------- /deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/tlscacerts/tlsca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/mymsp/orgmsp/peer0.vehicle.example.com/msp/tlscacerts/tlsca.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/client/utils/setparas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/client/utils/setparas.sh -------------------------------------------------------------------------------- /deployed/orderer/channel-artifacts/vehiclesharing_genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/channel-artifacts/vehiclesharing_genesis.block -------------------------------------------------------------------------------- /deployed/orderer/docker-compose-prod-orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/docker-compose-prod-orderer.yaml -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/admincerts/admin@bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/admincerts/admin@bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/cacerts/ca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/cacerts/ca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/keystore/orderer.bctest.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/keystore/orderer.bctest.example.com.key -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/signcerts/orderer.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/signcerts/orderer.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/tlscacerts/tlsca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/msp/tlscacerts/tlsca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/tls/tls-orderer.bctest.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/tls/tls-orderer.bctest.example.com.key -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/tls/tls-orderer.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/tls/tls-orderer.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/tls/tlsca.bctest.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/orderer/mymsp/localmsp/orderer.bctest.example.com/tls/tlsca.bctest.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/docker-compose-prod-peer0-onlinepay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/docker-compose-prod-peer0-onlinepay.yaml -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/admincerts/admin@onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/admincerts/admin@onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/cacerts/ca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/cacerts/ca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/config.yaml -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/keystore/peer0.onlinepay.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/keystore/peer0.onlinepay.example.com.key -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/signcerts/peer0.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/signcerts/peer0.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/tlscacerts/tlsca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/msp/tlscacerts/tlsca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/tls/tls-peer0.onlinepay.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/tls/tls-peer0.onlinepay.example.com.key -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/tls/tls-peer0.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/tls/tls-peer0.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/tls/tlsca.onlinepay.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.onlinepay/mymsp/localmsp/peer0.onlinepay.example.com/tls/tlsca.onlinepay.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.sharing/docker-compose-prod-peer0-sharing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/docker-compose-prod-peer0-sharing.yaml -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/admincerts/admin@sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/admincerts/admin@sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/cacerts/ca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/cacerts/ca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/config.yaml -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/keystore/peer0.sharing.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/keystore/peer0.sharing.example.com.key -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/signcerts/peer0.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/signcerts/peer0.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/msp/tlscacerts/tlsca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/tls/tls-peer0.sharing.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/tls/tls-peer0.sharing.example.com.key -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/tls/tls-peer0.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/tls/tls-peer0.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/tls/tlsca.sharing.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.sharing/mymsp/localmsp/peer0.sharing.example.com/tls/tlsca.sharing.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.vehicle/docker-compose-prod-peer0-vehicle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/docker-compose-prod-peer0-vehicle.yaml -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/admincerts/admin@vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/admincerts/admin@vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/cacerts/ca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/cacerts/ca.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/config.yaml -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/keystore/peer0.vehicle.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/keystore/peer0.vehicle.example.com.key -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/signcerts/peer0.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/signcerts/peer0.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/tlscacerts/tlsca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/msp/tlscacerts/tlsca.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/tls/tls-peer0.vehicle.example.com.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/tls/tls-peer0.vehicle.example.com.key -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/tls/tls-peer0.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/tls/tls-peer0.vehicle.example.com.pem -------------------------------------------------------------------------------- /deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/tls/tlsca.vehicle.example.com.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/deployed/peer0.vehicle/mymsp/localmsp/peer0.vehicle.example.com/tls/tlsca.vehicle.example.com.pem -------------------------------------------------------------------------------- /docker-compose-prod-client.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/docker-compose-prod-client.yaml -------------------------------------------------------------------------------- /docker-compose-prod-orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/docker-compose-prod-orderer.yaml -------------------------------------------------------------------------------- /docker-compose-prod-peer0-onlinepay.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/docker-compose-prod-peer0-onlinepay.yaml -------------------------------------------------------------------------------- /docker-compose-prod-peer0-sharing.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/docker-compose-prod-peer0-sharing.yaml -------------------------------------------------------------------------------- /docker-compose-prod-peer0-vehicle.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/docker-compose-prod-peer0-vehicle.yaml -------------------------------------------------------------------------------- /prodchannel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/prodchannel.sh -------------------------------------------------------------------------------- /prodmsp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/prodmsp.sh -------------------------------------------------------------------------------- /prodmsp_onlinepay.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/prodmsp_onlinepay.sh -------------------------------------------------------------------------------- /utils/mymsputils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/utils/mymsputils.sh -------------------------------------------------------------------------------- /utils/setparas.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/tomxucnxa/vehiclesharing/HEAD/utils/setparas.sh --------------------------------------------------------------------------------