├── CHANGELOG.md ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── MAINTAINERS.md ├── README.md ├── SECURITY.md ├── cbps-network ├── CHAINCODE_AS_A_SERVICE_TUTORIAL.md ├── README.md ├── addOrg3 │ ├── README.md │ ├── addOrg3.sh │ ├── ccp-generate.sh │ ├── ccp-template.json │ ├── ccp-template.yaml │ ├── compose │ │ ├── compose-ca-org3.yaml │ │ ├── compose-couch-org3.yaml │ │ ├── compose-org3.yaml │ │ ├── docker │ │ │ ├── docker-compose-ca-org3.yaml │ │ │ ├── docker-compose-couch-org3.yaml │ │ │ ├── docker-compose-org3.yaml │ │ │ └── peercfg │ │ │ │ └── core.yaml │ │ └── podman │ │ │ ├── peercfg │ │ │ └── core.yaml │ │ │ ├── podman-compose-ca-org3.yaml │ │ │ ├── podman-compose-couch-org3.yaml │ │ │ └── podman-compose-org3.yaml │ ├── configtx.yaml │ ├── fabric-ca │ │ ├── org3 │ │ │ └── fabric-ca-server-config.yaml │ │ └── registerEnroll.sh │ └── org3-crypto.yaml ├── compose │ ├── compose-ca.yaml │ ├── compose-couch.yaml │ ├── compose-test-net.yaml │ ├── docker │ │ ├── docker-compose-ca.yaml │ │ ├── docker-compose-couch.yaml │ │ ├── docker-compose-test-net.yaml │ │ └── peercfg │ │ │ └── core.yaml │ └── podman │ │ ├── peercfg │ │ └── core.yaml │ │ ├── podman-compose-ca.yaml │ │ ├── podman-compose-couch.yaml │ │ └── podman-compose-test-net.yaml ├── configtx │ └── configtx.yaml ├── monitordocker.sh ├── network.sh ├── organizations │ ├── ccp-generate.sh │ ├── ccp-template.json │ ├── ccp-template.yaml │ ├── cryptogen │ │ ├── crypto-config-orderer.yaml │ │ ├── crypto-config-org1.yaml │ │ └── crypto-config-org2.yaml │ └── fabric-ca │ │ ├── ordererOrg │ │ └── fabric-ca-server-config.yaml │ │ ├── org1 │ │ └── fabric-ca-server-config.yaml │ │ ├── org2 │ │ └── fabric-ca-server-config.yaml │ │ └── registerEnroll.sh ├── prometheus-grafana │ ├── README.md │ ├── docker-compose.yaml │ ├── grafana │ │ ├── config.monitoring │ │ └── provisioning │ │ │ ├── dashboards │ │ │ ├── dashboard.yml │ │ │ └── hlf-performances.json │ │ │ └── datasources │ │ │ └── datasource.yml │ ├── grafana_db │ │ └── grafana.db │ └── prometheus │ │ └── prometheus.yml ├── scripts │ ├── ccutils.sh │ ├── configUpdate.sh │ ├── createChannel.sh │ ├── deployCC.sh │ ├── deployCCAAS.sh │ ├── envVar.sh │ ├── org3-scripts │ │ ├── joinChannel.sh │ │ └── updateChannelConfig.sh │ ├── pkgcc.sh │ ├── setAnchorPeer.sh │ └── utils.sh └── setOrgEnv.sh ├── ci ├── azure-pipelines.yml └── scripts │ ├── lint-go.sh │ ├── lint-java.sh │ ├── lint-javascript.sh │ ├── lint-shell.sh │ ├── lint-typescript.sh │ ├── lint.sh │ ├── run-test-network-basic.sh │ ├── run-test-network-events.sh │ ├── run-test-network-gateway.sh │ ├── run-test-network-hsm.sh │ ├── run-test-network-ledger.sh │ ├── run-test-network-off-chain.sh │ ├── run-test-network-private.sh │ ├── run-test-network-sbe.sh │ └── run-test-network-secured.sh ├── config ├── configtx.yaml ├── core.yaml └── orderer.yaml ├── crossBorderPayment ├── README.md ├── application │ ├── Account.js │ ├── AppUtil.js │ ├── Bank.js │ ├── CAUtil.js │ ├── Payment.js │ ├── app.js │ ├── enrollAdmin.js │ ├── package-lock.json │ ├── package.json │ ├── registerEnrollUser.js │ ├── runApplication.sh │ ├── test.js │ └── views │ │ ├── accountList.ejs │ │ ├── bankAccountList.ejs │ │ ├── bankHome.ejs │ │ ├── bankList.ejs │ │ ├── createAccount.ejs │ │ ├── createBank.ejs │ │ ├── createCustomer.ejs │ │ ├── customerDetails.ejs │ │ ├── customerHome.ejs │ │ ├── deleteAccount.ejs │ │ ├── editCustomerProfile.ejs │ │ ├── index.ejs │ │ ├── paymentList.ejs │ │ ├── paymentListforBank.ejs │ │ ├── showBank.ejs │ │ ├── transfer.ejs │ │ ├── updateBalance.ejs │ │ └── updateCustomerProfile.ejs └── chaincode-go │ ├── go.mod │ ├── go.sum │ ├── smart-contract │ ├── bank.go │ ├── bankQueries.go │ └── utils.go │ └── smartContract.go ├── explorer ├── cbps-network.json ├── config.json └── docker-compose.yaml └── images ├── Exploerer_mainpage.png └── mainpage.png /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/LICENSE -------------------------------------------------------------------------------- /MAINTAINERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/MAINTAINERS.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cbps-network/CHAINCODE_AS_A_SERVICE_TUTORIAL.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/CHAINCODE_AS_A_SERVICE_TUTORIAL.md -------------------------------------------------------------------------------- /cbps-network/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/README.md -------------------------------------------------------------------------------- /cbps-network/addOrg3/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/README.md -------------------------------------------------------------------------------- /cbps-network/addOrg3/addOrg3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/addOrg3.sh -------------------------------------------------------------------------------- /cbps-network/addOrg3/ccp-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/ccp-generate.sh -------------------------------------------------------------------------------- /cbps-network/addOrg3/ccp-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/ccp-template.json -------------------------------------------------------------------------------- /cbps-network/addOrg3/ccp-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/ccp-template.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/compose-ca-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/compose-ca-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/compose-couch-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/compose-couch-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/compose-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/compose-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/docker/docker-compose-ca-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/docker/docker-compose-ca-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/docker/docker-compose-couch-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/docker/docker-compose-couch-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/docker/docker-compose-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/docker/docker-compose-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/docker/peercfg/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/docker/peercfg/core.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/podman/peercfg/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/podman/peercfg/core.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/podman/podman-compose-ca-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/podman/podman-compose-ca-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/podman/podman-compose-couch-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/podman/podman-compose-couch-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/compose/podman/podman-compose-org3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/compose/podman/podman-compose-org3.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/configtx.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/fabric-ca/org3/fabric-ca-server-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/fabric-ca/org3/fabric-ca-server-config.yaml -------------------------------------------------------------------------------- /cbps-network/addOrg3/fabric-ca/registerEnroll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/fabric-ca/registerEnroll.sh -------------------------------------------------------------------------------- /cbps-network/addOrg3/org3-crypto.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/addOrg3/org3-crypto.yaml -------------------------------------------------------------------------------- /cbps-network/compose/compose-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/compose-ca.yaml -------------------------------------------------------------------------------- /cbps-network/compose/compose-couch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/compose-couch.yaml -------------------------------------------------------------------------------- /cbps-network/compose/compose-test-net.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/compose-test-net.yaml -------------------------------------------------------------------------------- /cbps-network/compose/docker/docker-compose-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/docker/docker-compose-ca.yaml -------------------------------------------------------------------------------- /cbps-network/compose/docker/docker-compose-couch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/docker/docker-compose-couch.yaml -------------------------------------------------------------------------------- /cbps-network/compose/docker/docker-compose-test-net.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/docker/docker-compose-test-net.yaml -------------------------------------------------------------------------------- /cbps-network/compose/docker/peercfg/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/docker/peercfg/core.yaml -------------------------------------------------------------------------------- /cbps-network/compose/podman/peercfg/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/podman/peercfg/core.yaml -------------------------------------------------------------------------------- /cbps-network/compose/podman/podman-compose-ca.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/podman/podman-compose-ca.yaml -------------------------------------------------------------------------------- /cbps-network/compose/podman/podman-compose-couch.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/podman/podman-compose-couch.yaml -------------------------------------------------------------------------------- /cbps-network/compose/podman/podman-compose-test-net.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/compose/podman/podman-compose-test-net.yaml -------------------------------------------------------------------------------- /cbps-network/configtx/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/configtx/configtx.yaml -------------------------------------------------------------------------------- /cbps-network/monitordocker.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/monitordocker.sh -------------------------------------------------------------------------------- /cbps-network/network.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/network.sh -------------------------------------------------------------------------------- /cbps-network/organizations/ccp-generate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/ccp-generate.sh -------------------------------------------------------------------------------- /cbps-network/organizations/ccp-template.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/ccp-template.json -------------------------------------------------------------------------------- /cbps-network/organizations/ccp-template.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/ccp-template.yaml -------------------------------------------------------------------------------- /cbps-network/organizations/cryptogen/crypto-config-orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/cryptogen/crypto-config-orderer.yaml -------------------------------------------------------------------------------- /cbps-network/organizations/cryptogen/crypto-config-org1.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/cryptogen/crypto-config-org1.yaml -------------------------------------------------------------------------------- /cbps-network/organizations/cryptogen/crypto-config-org2.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/cryptogen/crypto-config-org2.yaml -------------------------------------------------------------------------------- /cbps-network/organizations/fabric-ca/ordererOrg/fabric-ca-server-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/fabric-ca/ordererOrg/fabric-ca-server-config.yaml -------------------------------------------------------------------------------- /cbps-network/organizations/fabric-ca/org1/fabric-ca-server-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/fabric-ca/org1/fabric-ca-server-config.yaml -------------------------------------------------------------------------------- /cbps-network/organizations/fabric-ca/org2/fabric-ca-server-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/fabric-ca/org2/fabric-ca-server-config.yaml -------------------------------------------------------------------------------- /cbps-network/organizations/fabric-ca/registerEnroll.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/organizations/fabric-ca/registerEnroll.sh -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/prometheus-grafana/README.md -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/prometheus-grafana/docker-compose.yaml -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/grafana/config.monitoring: -------------------------------------------------------------------------------- 1 | GF_SECURITY_ADMIN_PASSWORD=admin 2 | GF_USERS_ALLOW_SIGN_UP=false 3 | -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/grafana/provisioning/dashboards/dashboard.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/prometheus-grafana/grafana/provisioning/dashboards/dashboard.yml -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/grafana/provisioning/dashboards/hlf-performances.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/prometheus-grafana/grafana/provisioning/dashboards/hlf-performances.json -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/grafana/provisioning/datasources/datasource.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/prometheus-grafana/grafana/provisioning/datasources/datasource.yml -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/grafana_db/grafana.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/prometheus-grafana/grafana_db/grafana.db -------------------------------------------------------------------------------- /cbps-network/prometheus-grafana/prometheus/prometheus.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/prometheus-grafana/prometheus/prometheus.yml -------------------------------------------------------------------------------- /cbps-network/scripts/ccutils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/ccutils.sh -------------------------------------------------------------------------------- /cbps-network/scripts/configUpdate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/configUpdate.sh -------------------------------------------------------------------------------- /cbps-network/scripts/createChannel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/createChannel.sh -------------------------------------------------------------------------------- /cbps-network/scripts/deployCC.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/deployCC.sh -------------------------------------------------------------------------------- /cbps-network/scripts/deployCCAAS.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/deployCCAAS.sh -------------------------------------------------------------------------------- /cbps-network/scripts/envVar.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/envVar.sh -------------------------------------------------------------------------------- /cbps-network/scripts/org3-scripts/joinChannel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/org3-scripts/joinChannel.sh -------------------------------------------------------------------------------- /cbps-network/scripts/org3-scripts/updateChannelConfig.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/org3-scripts/updateChannelConfig.sh -------------------------------------------------------------------------------- /cbps-network/scripts/pkgcc.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/pkgcc.sh -------------------------------------------------------------------------------- /cbps-network/scripts/setAnchorPeer.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/setAnchorPeer.sh -------------------------------------------------------------------------------- /cbps-network/scripts/utils.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/scripts/utils.sh -------------------------------------------------------------------------------- /cbps-network/setOrgEnv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/cbps-network/setOrgEnv.sh -------------------------------------------------------------------------------- /ci/azure-pipelines.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/azure-pipelines.yml -------------------------------------------------------------------------------- /ci/scripts/lint-go.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/lint-go.sh -------------------------------------------------------------------------------- /ci/scripts/lint-java.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/lint-java.sh -------------------------------------------------------------------------------- /ci/scripts/lint-javascript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/lint-javascript.sh -------------------------------------------------------------------------------- /ci/scripts/lint-shell.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/lint-shell.sh -------------------------------------------------------------------------------- /ci/scripts/lint-typescript.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/lint-typescript.sh -------------------------------------------------------------------------------- /ci/scripts/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/lint.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-basic.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-basic.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-events.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-events.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-gateway.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-gateway.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-hsm.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-hsm.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-ledger.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-ledger.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-off-chain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-off-chain.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-private.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-private.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-sbe.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-sbe.sh -------------------------------------------------------------------------------- /ci/scripts/run-test-network-secured.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/ci/scripts/run-test-network-secured.sh -------------------------------------------------------------------------------- /config/configtx.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/config/configtx.yaml -------------------------------------------------------------------------------- /config/core.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/config/core.yaml -------------------------------------------------------------------------------- /config/orderer.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/config/orderer.yaml -------------------------------------------------------------------------------- /crossBorderPayment/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/README.md -------------------------------------------------------------------------------- /crossBorderPayment/application/Account.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/Account.js -------------------------------------------------------------------------------- /crossBorderPayment/application/AppUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/AppUtil.js -------------------------------------------------------------------------------- /crossBorderPayment/application/Bank.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/Bank.js -------------------------------------------------------------------------------- /crossBorderPayment/application/CAUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/CAUtil.js -------------------------------------------------------------------------------- /crossBorderPayment/application/Payment.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/Payment.js -------------------------------------------------------------------------------- /crossBorderPayment/application/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/app.js -------------------------------------------------------------------------------- /crossBorderPayment/application/enrollAdmin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/enrollAdmin.js -------------------------------------------------------------------------------- /crossBorderPayment/application/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/package-lock.json -------------------------------------------------------------------------------- /crossBorderPayment/application/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/package.json -------------------------------------------------------------------------------- /crossBorderPayment/application/registerEnrollUser.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/registerEnrollUser.js -------------------------------------------------------------------------------- /crossBorderPayment/application/runApplication.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/runApplication.sh -------------------------------------------------------------------------------- /crossBorderPayment/application/test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/test.js -------------------------------------------------------------------------------- /crossBorderPayment/application/views/accountList.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/accountList.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/bankAccountList.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/bankAccountList.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/bankHome.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/bankHome.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/bankList.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/bankList.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/createAccount.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/createAccount.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/createBank.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/createBank.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/createCustomer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/createCustomer.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/customerDetails.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/customerDetails.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/customerHome.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/customerHome.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/deleteAccount.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/deleteAccount.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/editCustomerProfile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/editCustomerProfile.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/index.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/index.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/paymentList.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/paymentList.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/paymentListforBank.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/paymentListforBank.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/showBank.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/showBank.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/transfer.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/transfer.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/updateBalance.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/updateBalance.ejs -------------------------------------------------------------------------------- /crossBorderPayment/application/views/updateCustomerProfile.ejs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/application/views/updateCustomerProfile.ejs -------------------------------------------------------------------------------- /crossBorderPayment/chaincode-go/go.mod: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/chaincode-go/go.mod -------------------------------------------------------------------------------- /crossBorderPayment/chaincode-go/go.sum: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/chaincode-go/go.sum -------------------------------------------------------------------------------- /crossBorderPayment/chaincode-go/smart-contract/bank.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/chaincode-go/smart-contract/bank.go -------------------------------------------------------------------------------- /crossBorderPayment/chaincode-go/smart-contract/bankQueries.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/chaincode-go/smart-contract/bankQueries.go -------------------------------------------------------------------------------- /crossBorderPayment/chaincode-go/smart-contract/utils.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/chaincode-go/smart-contract/utils.go -------------------------------------------------------------------------------- /crossBorderPayment/chaincode-go/smartContract.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/crossBorderPayment/chaincode-go/smartContract.go -------------------------------------------------------------------------------- /explorer/cbps-network.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/explorer/cbps-network.json -------------------------------------------------------------------------------- /explorer/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/explorer/config.json -------------------------------------------------------------------------------- /explorer/docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/explorer/docker-compose.yaml -------------------------------------------------------------------------------- /images/Exploerer_mainpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/images/Exploerer_mainpage.png -------------------------------------------------------------------------------- /images/mainpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mervespm/CrossBorderPaymentSystem/HEAD/images/mainpage.png --------------------------------------------------------------------------------