├── Gopkg.lock ├── Gopkg.toml ├── Makefile ├── README.md ├── blockchain ├── .idea │ ├── blockchain.iml │ ├── modules.xml │ └── workspace.xml └── startInit.go ├── chaincode ├── billcc.go ├── endorserCC.go ├── main.go ├── structure.go └── utils.go ├── config.yaml ├── fixtures ├── artifacts │ ├── .gitkeep │ ├── Org1MSPanchors.tx │ ├── Org2MSPanchors.tx │ ├── channel.tx │ └── genesis.block ├── crypto-config │ ├── ordererOrganizations │ │ └── example.com │ │ │ ├── ca │ │ │ ├── 00f3d3f738be05a8dff0b1c76e49e642141165d3cc650596e95ff926a29ac22d_sk │ │ │ └── ca.example.com-cert.pem │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ ├── orderers │ │ │ └── orderer.example.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── c12bedd969be10bf8297668c470a02602939bb185635f0cebc31d826cb5d31d5_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── 66e079657a3813fdf9b3ecbd7bd17df7eb0ac23e025fd88cd50db1e091e2d3ec_sk │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── users │ │ │ └── Admin@example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 3e150e050d7ce262ecd63cb55ff498836cd5754cac8378e14be9e9502ae85ec2_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ └── peerOrganizations │ │ ├── org1.example.com │ │ ├── ca │ │ │ ├── 471ebb31833db2522c026a22cf11f556854dd926880010123990cfabe7eef4e5_sk │ │ │ └── ca.org1.example.com-cert.pem │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── config.yaml │ │ │ └── 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 │ │ │ │ │ ├── config.yaml │ │ │ │ │ ├── keystore │ │ │ │ │ │ └── 52a4a4cec4c8b3cce027018f33a3361e34de6edc143a804609df36def9e80004_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 │ │ │ │ ├── config.yaml │ │ │ │ ├── keystore │ │ │ │ │ └── 2e4b52fd060cbb1e2d478483c556dbfcb31ba765ef1f1436af6b0a27d758b56c_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── peer1.org1.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ ├── tlsca │ │ │ ├── 69ff3a2c34802277140cc97e76c3cca7d68e2c67d086f88d9bfced05a6244145_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 │ │ │ │ │ └── fca80a3ce2abfd36a5a427ce7bc94d8bf91f505864bb04cf3c402e2272962c40_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── client.crt │ │ │ │ └── client.key │ │ │ └── User1@org1.example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 55e4e407eff74668c0e15d0119ba4af4ef5779d8a01fbbe2eae7760df11d968a_sk │ │ │ ├── signcerts │ │ │ │ └── User1@org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ │ └── org2.example.com │ │ ├── ca │ │ ├── 351ff344270e862be47d4e0442c96ac67ae466898fccbad8b9eba25d8a604cf2_sk │ │ └── ca.org2.example.com-cert.pem │ │ ├── msp │ │ ├── admincerts │ │ │ └── Admin@org2.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org2.example.com-cert.pem │ │ ├── config.yaml │ │ └── 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 │ │ │ │ ├── config.yaml │ │ │ │ ├── keystore │ │ │ │ │ └── 7edf6b8ad4fb7d4c8f93a86441a8301f247db5d9bf2bbae967bc5f36d714e547_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 │ │ │ ├── config.yaml │ │ │ ├── keystore │ │ │ │ └── 1ef296b59a24b30ebd722bfa8eac0752929c597be002f77cabf70effbdb72e7e_sk │ │ │ ├── signcerts │ │ │ │ └── peer1.org2.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── tlsca │ │ ├── 7a3bf9697cd011c552e49a43c13141ba4546533b8a96a15b8eaa3c7cca6ad0e7_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 │ │ │ │ └── c8f1ee67181f4dbbecc065de8c470444f3f99a5d673f87fc79335bafab9caa1f_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@org2.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org2.example.com-cert.pem │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── client.crt │ │ │ └── client.key │ │ └── User1@org2.example.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── User1@org2.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org2.example.com-cert.pem │ │ ├── keystore │ │ │ └── 89c83d48f707e3487762ec1f9f297558ee61e31c63f2f8aac4bda3df6662230e_sk │ │ ├── signcerts │ │ │ └── User1@org2.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org2.example.com-cert.pem │ │ └── tls │ │ ├── ca.crt │ │ ├── client.crt │ │ └── client.key └── docker-compose.yml ├── main.go ├── service ├── billService.go ├── endorseService.go └── structure.go └── web ├── app.go ├── controller ├── controllerHandler.go ├── controllerResponse.go └── domain.go ├── static ├── .DS_Store ├── css │ ├── billCommon.css │ ├── login.css │ └── popout.css ├── images │ ├── jt.png │ ├── jt2.png │ └── menu.png └── js │ ├── billCommon.js │ ├── jquery.min.js │ ├── login.js │ └── popout.js └── tpl ├── billInfo.html ├── bills.html ├── issue.html ├── login.html ├── waitBillInfo.html └── waitBills.html /Gopkg.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/Gopkg.lock -------------------------------------------------------------------------------- /Gopkg.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/Gopkg.toml -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/README.md -------------------------------------------------------------------------------- /blockchain/.idea/blockchain.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/blockchain/.idea/blockchain.iml -------------------------------------------------------------------------------- /blockchain/.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/blockchain/.idea/modules.xml -------------------------------------------------------------------------------- /blockchain/.idea/workspace.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/blockchain/.idea/workspace.xml -------------------------------------------------------------------------------- /blockchain/startInit.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/blockchain/startInit.go -------------------------------------------------------------------------------- /chaincode/billcc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/chaincode/billcc.go -------------------------------------------------------------------------------- /chaincode/endorserCC.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/chaincode/endorserCC.go -------------------------------------------------------------------------------- /chaincode/main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/chaincode/main.go -------------------------------------------------------------------------------- /chaincode/structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/chaincode/structure.go -------------------------------------------------------------------------------- /chaincode/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/chaincode/utils.go -------------------------------------------------------------------------------- /config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/config.yaml -------------------------------------------------------------------------------- /fixtures/artifacts/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /fixtures/artifacts/Org1MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/artifacts/Org1MSPanchors.tx -------------------------------------------------------------------------------- /fixtures/artifacts/Org2MSPanchors.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/artifacts/Org2MSPanchors.tx -------------------------------------------------------------------------------- /fixtures/artifacts/channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/artifacts/channel.tx -------------------------------------------------------------------------------- /fixtures/artifacts/genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/artifacts/genesis.block -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/ca/00f3d3f738be05a8dff0b1c76e49e642141165d3cc650596e95ff926a29ac22d_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/ca/00f3d3f738be05a8dff0b1c76e49e642141165d3cc650596e95ff926a29ac22d_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/c12bedd969be10bf8297668c470a02602939bb185635f0cebc31d826cb5d31d5_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/c12bedd969be10bf8297668c470a02602939bb185635f0cebc31d826cb5d31d5_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/tlsca/66e079657a3813fdf9b3ecbd7bd17df7eb0ac23e025fd88cd50db1e091e2d3ec_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/tlsca/66e079657a3813fdf9b3ecbd7bd17df7eb0ac23e025fd88cd50db1e091e2d3ec_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/3e150e050d7ce262ecd63cb55ff498836cd5754cac8378e14be9e9502ae85ec2_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/3e150e050d7ce262ecd63cb55ff498836cd5754cac8378e14be9e9502ae85ec2_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/client.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/ca/471ebb31833db2522c026a22cf11f556854dd926880010123990cfabe7eef4e5_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/ca/471ebb31833db2522c026a22cf11f556854dd926880010123990cfabe7eef4e5_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/52a4a4cec4c8b3cce027018f33a3361e34de6edc143a804609df36def9e80004_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/52a4a4cec4c8b3cce027018f33a3361e34de6edc143a804609df36def9e80004_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/config.yaml -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/2e4b52fd060cbb1e2d478483c556dbfcb31ba765ef1f1436af6b0a27d758b56c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/keystore/2e4b52fd060cbb1e2d478483c556dbfcb31ba765ef1f1436af6b0a27d758b56c_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/signcerts/peer1.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/peers/peer1.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/tlsca/69ff3a2c34802277140cc97e76c3cca7d68e2c67d086f88d9bfced05a6244145_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/tlsca/69ff3a2c34802277140cc97e76c3cca7d68e2c67d086f88d9bfced05a6244145_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/fca80a3ce2abfd36a5a427ce7bc94d8bf91f505864bb04cf3c402e2272962c40_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/fca80a3ce2abfd36a5a427ce7bc94d8bf91f505864bb04cf3c402e2272962c40_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/client.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/55e4e407eff74668c0e15d0119ba4af4ef5779d8a01fbbe2eae7760df11d968a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/55e4e407eff74668c0e15d0119ba4af4ef5779d8a01fbbe2eae7760df11d968a_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/client.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/ca/351ff344270e862be47d4e0442c96ac67ae466898fccbad8b9eba25d8a604cf2_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/ca/351ff344270e862be47d4e0442c96ac67ae466898fccbad8b9eba25d8a604cf2_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/ca/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/7edf6b8ad4fb7d4c8f93a86441a8301f247db5d9bf2bbae967bc5f36d714e547_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/keystore/7edf6b8ad4fb7d4c8f93a86441a8301f247db5d9bf2bbae967bc5f36d714e547_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/signcerts/peer0.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer0.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/config.yaml -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/1ef296b59a24b30ebd722bfa8eac0752929c597be002f77cabf70effbdb72e7e_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/keystore/1ef296b59a24b30ebd722bfa8eac0752929c597be002f77cabf70effbdb72e7e_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/signcerts/peer1.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/peers/peer1.org2.example.com/tls/server.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/tlsca/7a3bf9697cd011c552e49a43c13141ba4546533b8a96a15b8eaa3c7cca6ad0e7_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/tlsca/7a3bf9697cd011c552e49a43c13141ba4546533b8a96a15b8eaa3c7cca6ad0e7_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/tlsca/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/admincerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/c8f1ee67181f4dbbecc065de8c470444f3f99a5d673f87fc79335bafab9caa1f_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/keystore/c8f1ee67181f4dbbecc065de8c470444f3f99a5d673f87fc79335bafab9caa1f_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/signcerts/Admin@org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/Admin@org2.example.com/tls/client.key -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/admincerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/cacerts/ca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/89c83d48f707e3487762ec1f9f297558ee61e31c63f2f8aac4bda3df6662230e_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/keystore/89c83d48f707e3487762ec1f9f297558ee61e31c63f2f8aac4bda3df6662230e_sk -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/signcerts/User1@org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/msp/tlscacerts/tlsca.org2.example.com-cert.pem -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/ca.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.crt -------------------------------------------------------------------------------- /fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/crypto-config/peerOrganizations/org2.example.com/users/User1@org2.example.com/tls/client.key -------------------------------------------------------------------------------- /fixtures/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/fixtures/docker-compose.yml -------------------------------------------------------------------------------- /main.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/main.go -------------------------------------------------------------------------------- /service/billService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/service/billService.go -------------------------------------------------------------------------------- /service/endorseService.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/service/endorseService.go -------------------------------------------------------------------------------- /service/structure.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/service/structure.go -------------------------------------------------------------------------------- /web/app.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/app.go -------------------------------------------------------------------------------- /web/controller/controllerHandler.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/controller/controllerHandler.go -------------------------------------------------------------------------------- /web/controller/controllerResponse.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/controller/controllerResponse.go -------------------------------------------------------------------------------- /web/controller/domain.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/controller/domain.go -------------------------------------------------------------------------------- /web/static/.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/.DS_Store -------------------------------------------------------------------------------- /web/static/css/billCommon.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/css/billCommon.css -------------------------------------------------------------------------------- /web/static/css/login.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/css/login.css -------------------------------------------------------------------------------- /web/static/css/popout.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/css/popout.css -------------------------------------------------------------------------------- /web/static/images/jt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/images/jt.png -------------------------------------------------------------------------------- /web/static/images/jt2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/images/jt2.png -------------------------------------------------------------------------------- /web/static/images/menu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/images/menu.png -------------------------------------------------------------------------------- /web/static/js/billCommon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/js/billCommon.js -------------------------------------------------------------------------------- /web/static/js/jquery.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/js/jquery.min.js -------------------------------------------------------------------------------- /web/static/js/login.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/js/login.js -------------------------------------------------------------------------------- /web/static/js/popout.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/static/js/popout.js -------------------------------------------------------------------------------- /web/tpl/billInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/tpl/billInfo.html -------------------------------------------------------------------------------- /web/tpl/bills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/tpl/bills.html -------------------------------------------------------------------------------- /web/tpl/issue.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/tpl/issue.html -------------------------------------------------------------------------------- /web/tpl/login.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/tpl/login.html -------------------------------------------------------------------------------- /web/tpl/waitBillInfo.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/tpl/waitBillInfo.html -------------------------------------------------------------------------------- /web/tpl/waitBills.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/bitchenjh/bill/HEAD/web/tpl/waitBills.html --------------------------------------------------------------------------------