├── .gitignore ├── LICENSE ├── README-VSCodeDeploy.md ├── README.md ├── chaincode ├── crowdfunding.go └── crowdfunding@1.1.cds ├── fabric-java-sdk-app ├── WebContent │ └── META-INF │ │ └── MANIFEST.MF ├── manifest.yml ├── pom.xml └── src │ └── main │ ├── java │ └── org │ │ └── app │ │ ├── config │ │ ├── ConnectionProfileLoader.java │ │ └── ProfileVO.java │ │ ├── servlet │ │ ├── DonationServlet.java │ │ ├── QueryAllDonationsServlet.java │ │ ├── QueryAllUsersServlet.java │ │ ├── QueryEventServlet.java │ │ ├── RegisterServlet.java │ │ └── UpdateEventStartDateServlet.java │ │ ├── user │ │ ├── CAEnrollment.java │ │ └── UserContext.java │ │ └── util │ │ └── Util.java │ └── resources │ └── sample_connection_profile.json ├── fabric-node-sdk-app ├── app.js ├── bin │ └── www ├── hfc-key-store │ └── local │ │ ├── 1e1a8390341273b723ba4a44b2627220930c034f94c17ae3c3413829866845bd-priv │ │ ├── 1e1a8390341273b723ba4a44b2627220930c034f94c17ae3c3413829866845bd-pub │ │ ├── 4bed3f8889c7c6e60dc1712929beae20d00b5d9e79f89d18b28aba720d392241-priv │ │ ├── 4bed3f8889c7c6e60dc1712929beae20d00b5d9e79f89d18b28aba720d392241-pub │ │ ├── 53b80dcf5f18f4e85308aff271eed9db93fafd472b6c9c7188409c6bbcf2414c-priv │ │ ├── 53b80dcf5f18f4e85308aff271eed9db93fafd472b6c9c7188409c6bbcf2414c-pub │ │ ├── 8b21745ed763027dab0860e2e37fe75affe975628d32e904ec4eeb780d592cd4-priv │ │ ├── 8b21745ed763027dab0860e2e37fe75affe975628d32e904ec4eeb780d592cd4-pub │ │ ├── 8cbdf1ac628cfe6f47dad23364b6fa40dc63aeba753f34ed29e82def1eca4fcc-priv │ │ ├── 8cbdf1ac628cfe6f47dad23364b6fa40dc63aeba753f34ed29e82def1eca4fcc-pub │ │ ├── 8f7e10f8a5da3a43bc7bc14060a7ad6d7ba5e3a8596e0f05dc6790534d929315-priv │ │ ├── 8f7e10f8a5da3a43bc7bc14060a7ad6d7ba5e3a8596e0f05dc6790534d929315-pub │ │ ├── 94f0e8afdf48f93423a7db8740c931e35d31c14b75ca4c0e22ba3480870cdf40-priv │ │ ├── 94f0e8afdf48f93423a7db8740c931e35d31c14b75ca4c0e22ba3480870cdf40-pub │ │ ├── a11080203468cd1507add80eee8d94a2caf075e277b5edc82a72e4fd7168a704-priv │ │ ├── a11080203468cd1507add80eee8d94a2caf075e277b5edc82a72e4fd7168a704-pub │ │ ├── ab302f28fa6ec44ee7cc59c8a8adab6d6811a614550251587ff958a479fafd63-priv │ │ ├── ab302f28fa6ec44ee7cc59c8a8adab6d6811a614550251587ff958a479fafd63-pub │ │ ├── admin │ │ ├── b22fd2522f7d96b45037408cfdca8a7a957283f741a8da9e6b030514c08fcbe7-priv │ │ ├── b22fd2522f7d96b45037408cfdca8a7a957283f741a8da9e6b030514c08fcbe7-pub │ │ ├── c06969d8aa6547bc38ee72c1749dcafdfa79b952d9ca12a0d8241a243ddae26d-priv │ │ ├── c06969d8aa6547bc38ee72c1749dcafdfa79b952d9ca12a0d8241a243ddae26d-pub │ │ ├── d4410fd5d0097b57447f4bbcdb42d3dd4b3c96c691ad5d633e0c6aabc4c9cabf-priv │ │ ├── d4410fd5d0097b57447f4bbcdb42d3dd4b3c96c691ad5d633e0c6aabc4c9cabf-pub │ │ ├── e20904b25668ffbd29856aed5c6dc27f9fabd1e2235cde6586909f5221457e7c-priv │ │ ├── e20904b25668ffbd29856aed5c6dc27f9fabd1e2235cde6586909f5221457e7c-pub │ │ ├── f43b5520b1a19b859b41111b4974dcee607d14c5735914a2e109da0a6a93fcac-priv │ │ └── f43b5520b1a19b859b41111b4974dcee607d14c5735914a2e109da0a6a93fcac-pub ├── package-lock.json ├── package.json └── routes │ ├── index.js │ └── users.js ├── images ├── architecture.png ├── architecture1.png ├── connect_with_sdk.png ├── create_IBP_service.png ├── create_kubernetes_service.png ├── demo.gif ├── download_connection_profile.png ├── inst_contract.png ├── landingpage1.png └── package.png ├── local ├── connection.json └── org1.json ├── node-webapp ├── app.js ├── bin │ └── www ├── config.js ├── manifest.yml ├── package-lock.json ├── package.json ├── public │ ├── img │ │ ├── 1.png │ │ ├── 2.png │ │ └── 3.png │ └── stylesheets │ │ └── style.css ├── routes │ ├── donateFund.js │ ├── donationForm.js │ ├── eventDetails.js │ └── viewSupporters.js └── views │ ├── donationForm.ejs │ ├── error.ejs │ ├── eventDetails.ejs │ └── viewSupporters.ejs └── webapp ├── app.js ├── bin └── www ├── config.js ├── manifest.yml ├── package.json ├── public ├── img │ ├── 1.png │ ├── 2.png │ └── 3.png └── stylesheets │ └── style.css ├── routes ├── donateFund.js ├── donationForm.js ├── eventDetails.js └── viewSupporters.js └── views ├── donationForm.ejs ├── error.ejs ├── eventDetails.ejs └── viewSupporters.ejs /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/LICENSE -------------------------------------------------------------------------------- /README-VSCodeDeploy.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/README-VSCodeDeploy.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/README.md -------------------------------------------------------------------------------- /chaincode/crowdfunding.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/chaincode/crowdfunding.go -------------------------------------------------------------------------------- /chaincode/crowdfunding@1.1.cds: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/chaincode/crowdfunding@1.1.cds -------------------------------------------------------------------------------- /fabric-java-sdk-app/WebContent/META-INF/MANIFEST.MF: -------------------------------------------------------------------------------- 1 | Manifest-Version: 1.0 2 | Class-Path: 3 | 4 | -------------------------------------------------------------------------------- /fabric-java-sdk-app/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/manifest.yml -------------------------------------------------------------------------------- /fabric-java-sdk-app/pom.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/pom.xml -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/config/ConnectionProfileLoader.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/config/ConnectionProfileLoader.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/config/ProfileVO.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/config/ProfileVO.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/servlet/DonationServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/servlet/DonationServlet.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/servlet/QueryAllDonationsServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/servlet/QueryAllDonationsServlet.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/servlet/QueryAllUsersServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/servlet/QueryAllUsersServlet.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/servlet/QueryEventServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/servlet/QueryEventServlet.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/servlet/RegisterServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/servlet/RegisterServlet.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/servlet/UpdateEventStartDateServlet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/servlet/UpdateEventStartDateServlet.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/user/CAEnrollment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/user/CAEnrollment.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/user/UserContext.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/user/UserContext.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/java/org/app/util/Util.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/java/org/app/util/Util.java -------------------------------------------------------------------------------- /fabric-java-sdk-app/src/main/resources/sample_connection_profile.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-java-sdk-app/src/main/resources/sample_connection_profile.json -------------------------------------------------------------------------------- /fabric-node-sdk-app/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/app.js -------------------------------------------------------------------------------- /fabric-node-sdk-app/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/bin/www -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/1e1a8390341273b723ba4a44b2627220930c034f94c17ae3c3413829866845bd-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/1e1a8390341273b723ba4a44b2627220930c034f94c17ae3c3413829866845bd-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/1e1a8390341273b723ba4a44b2627220930c034f94c17ae3c3413829866845bd-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/1e1a8390341273b723ba4a44b2627220930c034f94c17ae3c3413829866845bd-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/4bed3f8889c7c6e60dc1712929beae20d00b5d9e79f89d18b28aba720d392241-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/4bed3f8889c7c6e60dc1712929beae20d00b5d9e79f89d18b28aba720d392241-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/4bed3f8889c7c6e60dc1712929beae20d00b5d9e79f89d18b28aba720d392241-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/4bed3f8889c7c6e60dc1712929beae20d00b5d9e79f89d18b28aba720d392241-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/53b80dcf5f18f4e85308aff271eed9db93fafd472b6c9c7188409c6bbcf2414c-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/53b80dcf5f18f4e85308aff271eed9db93fafd472b6c9c7188409c6bbcf2414c-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/53b80dcf5f18f4e85308aff271eed9db93fafd472b6c9c7188409c6bbcf2414c-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/53b80dcf5f18f4e85308aff271eed9db93fafd472b6c9c7188409c6bbcf2414c-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/8b21745ed763027dab0860e2e37fe75affe975628d32e904ec4eeb780d592cd4-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/8b21745ed763027dab0860e2e37fe75affe975628d32e904ec4eeb780d592cd4-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/8b21745ed763027dab0860e2e37fe75affe975628d32e904ec4eeb780d592cd4-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/8b21745ed763027dab0860e2e37fe75affe975628d32e904ec4eeb780d592cd4-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/8cbdf1ac628cfe6f47dad23364b6fa40dc63aeba753f34ed29e82def1eca4fcc-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/8cbdf1ac628cfe6f47dad23364b6fa40dc63aeba753f34ed29e82def1eca4fcc-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/8cbdf1ac628cfe6f47dad23364b6fa40dc63aeba753f34ed29e82def1eca4fcc-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/8cbdf1ac628cfe6f47dad23364b6fa40dc63aeba753f34ed29e82def1eca4fcc-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/8f7e10f8a5da3a43bc7bc14060a7ad6d7ba5e3a8596e0f05dc6790534d929315-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/8f7e10f8a5da3a43bc7bc14060a7ad6d7ba5e3a8596e0f05dc6790534d929315-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/8f7e10f8a5da3a43bc7bc14060a7ad6d7ba5e3a8596e0f05dc6790534d929315-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/8f7e10f8a5da3a43bc7bc14060a7ad6d7ba5e3a8596e0f05dc6790534d929315-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/94f0e8afdf48f93423a7db8740c931e35d31c14b75ca4c0e22ba3480870cdf40-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/94f0e8afdf48f93423a7db8740c931e35d31c14b75ca4c0e22ba3480870cdf40-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/94f0e8afdf48f93423a7db8740c931e35d31c14b75ca4c0e22ba3480870cdf40-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/94f0e8afdf48f93423a7db8740c931e35d31c14b75ca4c0e22ba3480870cdf40-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/a11080203468cd1507add80eee8d94a2caf075e277b5edc82a72e4fd7168a704-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/a11080203468cd1507add80eee8d94a2caf075e277b5edc82a72e4fd7168a704-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/a11080203468cd1507add80eee8d94a2caf075e277b5edc82a72e4fd7168a704-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/a11080203468cd1507add80eee8d94a2caf075e277b5edc82a72e4fd7168a704-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/ab302f28fa6ec44ee7cc59c8a8adab6d6811a614550251587ff958a479fafd63-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/ab302f28fa6ec44ee7cc59c8a8adab6d6811a614550251587ff958a479fafd63-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/ab302f28fa6ec44ee7cc59c8a8adab6d6811a614550251587ff958a479fafd63-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/ab302f28fa6ec44ee7cc59c8a8adab6d6811a614550251587ff958a479fafd63-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/admin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/admin -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/b22fd2522f7d96b45037408cfdca8a7a957283f741a8da9e6b030514c08fcbe7-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/b22fd2522f7d96b45037408cfdca8a7a957283f741a8da9e6b030514c08fcbe7-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/b22fd2522f7d96b45037408cfdca8a7a957283f741a8da9e6b030514c08fcbe7-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/b22fd2522f7d96b45037408cfdca8a7a957283f741a8da9e6b030514c08fcbe7-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/c06969d8aa6547bc38ee72c1749dcafdfa79b952d9ca12a0d8241a243ddae26d-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/c06969d8aa6547bc38ee72c1749dcafdfa79b952d9ca12a0d8241a243ddae26d-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/c06969d8aa6547bc38ee72c1749dcafdfa79b952d9ca12a0d8241a243ddae26d-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/c06969d8aa6547bc38ee72c1749dcafdfa79b952d9ca12a0d8241a243ddae26d-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/d4410fd5d0097b57447f4bbcdb42d3dd4b3c96c691ad5d633e0c6aabc4c9cabf-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/d4410fd5d0097b57447f4bbcdb42d3dd4b3c96c691ad5d633e0c6aabc4c9cabf-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/d4410fd5d0097b57447f4bbcdb42d3dd4b3c96c691ad5d633e0c6aabc4c9cabf-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/d4410fd5d0097b57447f4bbcdb42d3dd4b3c96c691ad5d633e0c6aabc4c9cabf-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/e20904b25668ffbd29856aed5c6dc27f9fabd1e2235cde6586909f5221457e7c-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/e20904b25668ffbd29856aed5c6dc27f9fabd1e2235cde6586909f5221457e7c-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/e20904b25668ffbd29856aed5c6dc27f9fabd1e2235cde6586909f5221457e7c-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/e20904b25668ffbd29856aed5c6dc27f9fabd1e2235cde6586909f5221457e7c-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/f43b5520b1a19b859b41111b4974dcee607d14c5735914a2e109da0a6a93fcac-priv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/f43b5520b1a19b859b41111b4974dcee607d14c5735914a2e109da0a6a93fcac-priv -------------------------------------------------------------------------------- /fabric-node-sdk-app/hfc-key-store/local/f43b5520b1a19b859b41111b4974dcee607d14c5735914a2e109da0a6a93fcac-pub: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/hfc-key-store/local/f43b5520b1a19b859b41111b4974dcee607d14c5735914a2e109da0a6a93fcac-pub -------------------------------------------------------------------------------- /fabric-node-sdk-app/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/package-lock.json -------------------------------------------------------------------------------- /fabric-node-sdk-app/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/package.json -------------------------------------------------------------------------------- /fabric-node-sdk-app/routes/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/routes/index.js -------------------------------------------------------------------------------- /fabric-node-sdk-app/routes/users.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/fabric-node-sdk-app/routes/users.js -------------------------------------------------------------------------------- /images/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/architecture.png -------------------------------------------------------------------------------- /images/architecture1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/architecture1.png -------------------------------------------------------------------------------- /images/connect_with_sdk.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/connect_with_sdk.png -------------------------------------------------------------------------------- /images/create_IBP_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/create_IBP_service.png -------------------------------------------------------------------------------- /images/create_kubernetes_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/create_kubernetes_service.png -------------------------------------------------------------------------------- /images/demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/demo.gif -------------------------------------------------------------------------------- /images/download_connection_profile.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/download_connection_profile.png -------------------------------------------------------------------------------- /images/inst_contract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/inst_contract.png -------------------------------------------------------------------------------- /images/landingpage1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/landingpage1.png -------------------------------------------------------------------------------- /images/package.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/images/package.png -------------------------------------------------------------------------------- /local/connection.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/local/connection.json -------------------------------------------------------------------------------- /local/org1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/local/org1.json -------------------------------------------------------------------------------- /node-webapp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/app.js -------------------------------------------------------------------------------- /node-webapp/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/bin/www -------------------------------------------------------------------------------- /node-webapp/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/config.js -------------------------------------------------------------------------------- /node-webapp/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/manifest.yml -------------------------------------------------------------------------------- /node-webapp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/package-lock.json -------------------------------------------------------------------------------- /node-webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/package.json -------------------------------------------------------------------------------- /node-webapp/public/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/public/img/1.png -------------------------------------------------------------------------------- /node-webapp/public/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/public/img/2.png -------------------------------------------------------------------------------- /node-webapp/public/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/public/img/3.png -------------------------------------------------------------------------------- /node-webapp/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/public/stylesheets/style.css -------------------------------------------------------------------------------- /node-webapp/routes/donateFund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/routes/donateFund.js -------------------------------------------------------------------------------- /node-webapp/routes/donationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/routes/donationForm.js -------------------------------------------------------------------------------- /node-webapp/routes/eventDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/routes/eventDetails.js -------------------------------------------------------------------------------- /node-webapp/routes/viewSupporters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/routes/viewSupporters.js -------------------------------------------------------------------------------- /node-webapp/views/donationForm.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/views/donationForm.ejs -------------------------------------------------------------------------------- /node-webapp/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/views/error.ejs -------------------------------------------------------------------------------- /node-webapp/views/eventDetails.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/views/eventDetails.ejs -------------------------------------------------------------------------------- /node-webapp/views/viewSupporters.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/node-webapp/views/viewSupporters.ejs -------------------------------------------------------------------------------- /webapp/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/app.js -------------------------------------------------------------------------------- /webapp/bin/www: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/bin/www -------------------------------------------------------------------------------- /webapp/config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/config.js -------------------------------------------------------------------------------- /webapp/manifest.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/manifest.yml -------------------------------------------------------------------------------- /webapp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/package.json -------------------------------------------------------------------------------- /webapp/public/img/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/public/img/1.png -------------------------------------------------------------------------------- /webapp/public/img/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/public/img/2.png -------------------------------------------------------------------------------- /webapp/public/img/3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/public/img/3.png -------------------------------------------------------------------------------- /webapp/public/stylesheets/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/public/stylesheets/style.css -------------------------------------------------------------------------------- /webapp/routes/donateFund.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/routes/donateFund.js -------------------------------------------------------------------------------- /webapp/routes/donationForm.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/routes/donationForm.js -------------------------------------------------------------------------------- /webapp/routes/eventDetails.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/routes/eventDetails.js -------------------------------------------------------------------------------- /webapp/routes/viewSupporters.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/routes/viewSupporters.js -------------------------------------------------------------------------------- /webapp/views/donationForm.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/views/donationForm.ejs -------------------------------------------------------------------------------- /webapp/views/error.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/views/error.ejs -------------------------------------------------------------------------------- /webapp/views/eventDetails.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/views/eventDetails.ejs -------------------------------------------------------------------------------- /webapp/views/viewSupporters.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IBM/blockchain-enabled-crowdfunding/HEAD/webapp/views/viewSupporters.ejs --------------------------------------------------------------------------------