├── .bluemix └── pipeline.yml ├── .cfignore ├── .gitignore ├── Dockerfile ├── README.md ├── chaincode └── src │ ├── lib.go │ ├── read_ledger.go │ ├── securitization │ ├── securitization.go │ └── write_ledger.go ├── deploy_app_locally.sh ├── install_deps.sh ├── kubernetes └── kube-config.yml ├── local ├── README.md ├── config │ ├── channel.tx │ └── genesis.block ├── configtx.yaml ├── connection.json ├── connection.yaml ├── crypto-config.yaml ├── crypto-config │ ├── ordererOrganizations │ │ └── example.com │ │ │ ├── ca │ │ │ ├── a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk │ │ │ └── ca.example.com-cert.pem │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ ├── orderers │ │ │ └── orderer.example.com │ │ │ │ ├── msp │ │ │ │ ├── admincerts │ │ │ │ │ └── Admin@example.com-cert.pem │ │ │ │ ├── cacerts │ │ │ │ │ └── ca.example.com-cert.pem │ │ │ │ ├── keystore │ │ │ │ │ └── 4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk │ │ │ │ ├── signcerts │ │ │ │ │ └── orderer.example.com-cert.pem │ │ │ │ └── tlscacerts │ │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ │ └── tls │ │ │ │ ├── ca.crt │ │ │ │ ├── server.crt │ │ │ │ └── server.key │ │ │ ├── tlsca │ │ │ ├── 8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── users │ │ │ └── Admin@example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ └── peerOrganizations │ │ └── org1.example.com │ │ ├── ca │ │ ├── 4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk │ │ ├── ca.org1.example.com-cert.pem │ │ └── org1.example.com-cert.pem │ │ ├── msp │ │ ├── admincerts │ │ │ └── Admin@org1.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org1.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org1.example.com-cert.pem │ │ ├── peers │ │ └── peer0.org1.example.com │ │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── 46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk │ │ │ ├── signcerts │ │ │ │ └── peer0.org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ ├── tlsca │ │ ├── ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk │ │ └── tlsca.org1.example.com-cert.pem │ │ └── users │ │ ├── Admin@org1.example.com │ │ ├── msp │ │ │ ├── admincerts │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ ├── cacerts │ │ │ │ └── ca.org1.example.com-cert.pem │ │ │ ├── keystore │ │ │ │ └── cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk │ │ │ ├── signcerts │ │ │ │ └── Admin@org1.example.com-cert.pem │ │ │ └── tlscacerts │ │ │ │ └── tlsca.org1.example.com-cert.pem │ │ └── tls │ │ │ ├── ca.crt │ │ │ ├── server.crt │ │ │ └── server.key │ │ └── User1@org1.example.com │ │ ├── msp │ │ ├── admincerts │ │ │ └── User1@org1.example.com-cert.pem │ │ ├── cacerts │ │ │ └── ca.org1.example.com-cert.pem │ │ ├── keystore │ │ │ └── c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk │ │ ├── signcerts │ │ │ └── User1@org1.example.com-cert.pem │ │ └── tlscacerts │ │ │ └── tlsca.org1.example.com-cert.pem │ │ └── tls │ │ ├── ca.crt │ │ ├── server.crt │ │ └── server.key ├── docker-compose.yml ├── generate.sh ├── init.sh ├── installChaincode.sh ├── startFabric.sh └── stopFabric.sh ├── manifest.yml ├── readme-images └── arch-flow-securitization.png ├── sc-ui ├── .env.development.local ├── .gitignore ├── README.md ├── config │ ├── env.js │ ├── jest │ │ ├── cssTransform.js │ │ └── fileTransform.js │ ├── paths.js │ ├── polyfills.js │ ├── webpack.config.dev.js │ ├── webpack.config.js │ ├── webpack.config.prod.js │ └── webpackDevServer.config.js ├── env.js ├── package-lock.json ├── package.json ├── paths.js ├── public │ ├── favicon.ico │ ├── index.html │ └── manifest.json ├── react-backend │ ├── app.js │ ├── bin │ │ └── www │ ├── package-lock.json │ ├── package.json │ ├── public │ │ └── stylesheets │ │ │ └── style.css │ ├── routes │ │ ├── index.js │ │ └── users.js │ └── views │ │ ├── error.jade │ │ ├── index.jade │ │ └── layout.jade ├── scripts │ ├── build.js │ ├── start.js │ └── test.js ├── src │ ├── App.css │ ├── App.js │ ├── App.test.js │ ├── components │ │ ├── forms │ │ │ ├── FormDialog.js │ │ │ ├── buySecurityForm.jsx │ │ │ ├── deleteObjectForm.jsx │ │ │ ├── fetchObjectForm.jsx │ │ │ ├── initAssetForm.jsx │ │ │ ├── initAssetPoolForm.jsx │ │ │ ├── initHFClientForm.jsx │ │ │ ├── initInvestorForm.jsx │ │ │ ├── initOriginatorForm.jsx │ │ │ ├── initSecurityForm.jsx │ │ │ ├── poolAssetForm.jsx │ │ │ ├── processPaymentForm.jsx │ │ │ ├── sellSecurityForm.jsx │ │ │ ├── setOriginatorForm.jsx │ │ │ └── transferAssetForm.jsx │ │ ├── helpers │ │ │ ├── Tab.js │ │ │ ├── Tabs.js │ │ │ ├── genCards.jsx │ │ │ └── refreshState.js │ │ ├── modal.js │ │ └── tables │ │ │ ├── SimpleAssetTable.js │ │ │ ├── SimpleInvestorTable.js │ │ │ ├── SimpleOriginatorTable.js │ │ │ ├── SimplePoolTable.js │ │ │ └── SimpleSecurityTable.js │ ├── index.css │ ├── index.js │ ├── logo.svg │ └── registerServiceWorker.js ├── webpack.config.dev.js └── webpack.config.js └── update_chaincode.sh /.bluemix/pipeline.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/.bluemix/pipeline.yml -------------------------------------------------------------------------------- /.cfignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/.cfignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/Dockerfile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/README.md -------------------------------------------------------------------------------- /chaincode/src/lib.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/chaincode/src/lib.go -------------------------------------------------------------------------------- /chaincode/src/read_ledger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/chaincode/src/read_ledger.go -------------------------------------------------------------------------------- /chaincode/src/securitization: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/chaincode/src/securitization -------------------------------------------------------------------------------- /chaincode/src/securitization.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/chaincode/src/securitization.go -------------------------------------------------------------------------------- /chaincode/src/write_ledger.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/chaincode/src/write_ledger.go -------------------------------------------------------------------------------- /deploy_app_locally.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/deploy_app_locally.sh -------------------------------------------------------------------------------- /install_deps.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/install_deps.sh -------------------------------------------------------------------------------- /kubernetes/kube-config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/kubernetes/kube-config.yml -------------------------------------------------------------------------------- /local/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/README.md -------------------------------------------------------------------------------- /local/config/channel.tx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/config/channel.tx -------------------------------------------------------------------------------- /local/config/genesis.block: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/config/genesis.block -------------------------------------------------------------------------------- /local/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/configtx.yaml -------------------------------------------------------------------------------- /local/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/connection.json -------------------------------------------------------------------------------- /local/connection.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/connection.yaml -------------------------------------------------------------------------------- /local/crypto-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config.yaml -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/ca/a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/ca/a0606a4a860a1e31c90a23788da6f3b6b74925ed0d23061af4899409ba46ae6a_sk -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/ca/ca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/keystore/4d2f776c0fef8eac3f460a7c3558dc7859c4fe458e262e674a6c23f242ea33d1_sk -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/signcerts/orderer.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/ca.crt -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.crt -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/orderers/orderer.example.com/tls/server.key -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/tlsca/8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/tlsca/8d2186556c85d515e737d0c0da8d0d7672785b685cb503bcb95e53dcc279fba7_sk -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/tlsca/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/admincerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/cacerts/ca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/keystore/1deeab5433fa6e5f045eb763109d6165268fba153211af1281f00d45f54b1022_sk -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/signcerts/Admin@example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/msp/tlscacerts/tlsca.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/ca.crt -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.crt -------------------------------------------------------------------------------- /local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/ordererOrganizations/example.com/users/Admin@example.com/tls/server.key -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/ca/4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/ca/4239aa0dcd76daeeb8ba0cda701851d14504d31aad1b2ddddbac6a57365e497c_sk -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/ca/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/ca/org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/keystore/46be1d569fe68f33e517c9e0072a0ccfbfb42727480fb8c8d0223af321a7893d_sk -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/signcerts/peer0.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/peers/peer0.org1.example.com/tls/server.key -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/tlsca/ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/tlsca/ed3fd82393e95fc2c475afc113c8d2c591f745d1babc4d6d9cce0a1acc168acb_sk -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/tlsca/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/admincerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/keystore/cd96d5260ad4757551ed4a5a991e62130f8008a0bf996e4e4b84cd097a747fec_sk -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/signcerts/Admin@org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/Admin@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/admincerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/cacerts/ca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/keystore/c75bd6911aca808941c3557ee7c97e90f3952e379497dc55eb903f31b50abc83_sk -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/signcerts/User1@org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/msp/tlscacerts/tlsca.org1.example.com-cert.pem -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/ca.crt -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.crt -------------------------------------------------------------------------------- /local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/crypto-config/peerOrganizations/org1.example.com/users/User1@org1.example.com/tls/server.key -------------------------------------------------------------------------------- /local/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/docker-compose.yml -------------------------------------------------------------------------------- /local/generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/generate.sh -------------------------------------------------------------------------------- /local/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/init.sh -------------------------------------------------------------------------------- /local/installChaincode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/installChaincode.sh -------------------------------------------------------------------------------- /local/startFabric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/startFabric.sh -------------------------------------------------------------------------------- /local/stopFabric.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/local/stopFabric.sh -------------------------------------------------------------------------------- /manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/manifest.yml -------------------------------------------------------------------------------- /readme-images/arch-flow-securitization.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/readme-images/arch-flow-securitization.png -------------------------------------------------------------------------------- /sc-ui/.env.development.local: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/.env.development.local -------------------------------------------------------------------------------- /sc-ui/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/.gitignore -------------------------------------------------------------------------------- /sc-ui/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/README.md -------------------------------------------------------------------------------- /sc-ui/config/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/env.js -------------------------------------------------------------------------------- /sc-ui/config/jest/cssTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/jest/cssTransform.js -------------------------------------------------------------------------------- /sc-ui/config/jest/fileTransform.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/jest/fileTransform.js -------------------------------------------------------------------------------- /sc-ui/config/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/paths.js -------------------------------------------------------------------------------- /sc-ui/config/polyfills.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/polyfills.js -------------------------------------------------------------------------------- /sc-ui/config/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/webpack.config.dev.js -------------------------------------------------------------------------------- /sc-ui/config/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/webpack.config.js -------------------------------------------------------------------------------- /sc-ui/config/webpack.config.prod.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/webpack.config.prod.js -------------------------------------------------------------------------------- /sc-ui/config/webpackDevServer.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/config/webpackDevServer.config.js -------------------------------------------------------------------------------- /sc-ui/env.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/env.js -------------------------------------------------------------------------------- /sc-ui/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/package-lock.json -------------------------------------------------------------------------------- /sc-ui/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/package.json -------------------------------------------------------------------------------- /sc-ui/paths.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/paths.js -------------------------------------------------------------------------------- /sc-ui/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/public/favicon.ico -------------------------------------------------------------------------------- /sc-ui/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/public/index.html -------------------------------------------------------------------------------- /sc-ui/public/manifest.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/public/manifest.json -------------------------------------------------------------------------------- /sc-ui/react-backend/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/app.js -------------------------------------------------------------------------------- /sc-ui/react-backend/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/bin/www -------------------------------------------------------------------------------- /sc-ui/react-backend/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/package-lock.json -------------------------------------------------------------------------------- /sc-ui/react-backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/package.json -------------------------------------------------------------------------------- /sc-ui/react-backend/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/public/stylesheets/style.css -------------------------------------------------------------------------------- /sc-ui/react-backend/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/routes/index.js -------------------------------------------------------------------------------- /sc-ui/react-backend/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/routes/users.js -------------------------------------------------------------------------------- /sc-ui/react-backend/views/error.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/views/error.jade -------------------------------------------------------------------------------- /sc-ui/react-backend/views/index.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/views/index.jade -------------------------------------------------------------------------------- /sc-ui/react-backend/views/layout.jade: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/react-backend/views/layout.jade -------------------------------------------------------------------------------- /sc-ui/scripts/build.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/scripts/build.js -------------------------------------------------------------------------------- /sc-ui/scripts/start.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/scripts/start.js -------------------------------------------------------------------------------- /sc-ui/scripts/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/scripts/test.js -------------------------------------------------------------------------------- /sc-ui/src/App.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/App.css -------------------------------------------------------------------------------- /sc-ui/src/App.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/App.js -------------------------------------------------------------------------------- /sc-ui/src/App.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/App.test.js -------------------------------------------------------------------------------- /sc-ui/src/components/forms/FormDialog.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/FormDialog.js -------------------------------------------------------------------------------- /sc-ui/src/components/forms/buySecurityForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/buySecurityForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/deleteObjectForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/deleteObjectForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/fetchObjectForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/fetchObjectForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/initAssetForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/initAssetForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/initAssetPoolForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/initAssetPoolForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/initHFClientForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/initHFClientForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/initInvestorForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/initInvestorForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/initOriginatorForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/initOriginatorForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/initSecurityForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/initSecurityForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/poolAssetForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/poolAssetForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/processPaymentForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/processPaymentForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/sellSecurityForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/sellSecurityForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/setOriginatorForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/setOriginatorForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/forms/transferAssetForm.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/forms/transferAssetForm.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/helpers/Tab.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/helpers/Tab.js -------------------------------------------------------------------------------- /sc-ui/src/components/helpers/Tabs.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/helpers/Tabs.js -------------------------------------------------------------------------------- /sc-ui/src/components/helpers/genCards.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/helpers/genCards.jsx -------------------------------------------------------------------------------- /sc-ui/src/components/helpers/refreshState.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/helpers/refreshState.js -------------------------------------------------------------------------------- /sc-ui/src/components/modal.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /sc-ui/src/components/tables/SimpleAssetTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/tables/SimpleAssetTable.js -------------------------------------------------------------------------------- /sc-ui/src/components/tables/SimpleInvestorTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/tables/SimpleInvestorTable.js -------------------------------------------------------------------------------- /sc-ui/src/components/tables/SimpleOriginatorTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/tables/SimpleOriginatorTable.js -------------------------------------------------------------------------------- /sc-ui/src/components/tables/SimplePoolTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/tables/SimplePoolTable.js -------------------------------------------------------------------------------- /sc-ui/src/components/tables/SimpleSecurityTable.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/components/tables/SimpleSecurityTable.js -------------------------------------------------------------------------------- /sc-ui/src/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/index.css -------------------------------------------------------------------------------- /sc-ui/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/index.js -------------------------------------------------------------------------------- /sc-ui/src/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/logo.svg -------------------------------------------------------------------------------- /sc-ui/src/registerServiceWorker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/src/registerServiceWorker.js -------------------------------------------------------------------------------- /sc-ui/webpack.config.dev.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/webpack.config.dev.js -------------------------------------------------------------------------------- /sc-ui/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/sc-ui/webpack.config.js -------------------------------------------------------------------------------- /update_chaincode.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/securitization_blockchain/HEAD/update_chaincode.sh --------------------------------------------------------------------------------