Skip to content

Blockchain Based Cross Border Payment System Using Hyperledger Fabric

License

Notifications You must be signed in to change notification settings

Mervespm/CrossBorderPaymentSystem

Blockchain Based Cross Border Payment System

Cross Border Payment is a private blockchain application based on Hyperledger. This project aims to facilitate the tracking and processing of cross-border payments.

Project Description

This project is a blockchain application developed on the Hyperledger framework. It includes smart contracts used for tracking, validating, and processing cross-border payments. A network has been established for transactions between different banks, ensuring transparent monitoring of payment processes.

Installation

To run this project in a local development environment, you can follow the steps below:

Requirements:

  • Docker
  • Nodejs

Terminal Commands

Starting the Network and Running the Application

  1. Navigate to the cbps-network directory:
cd cbps-network
  1. Run the following command to start the network and create a channel:
./network.sh up createChannel -c bankschannel -ca -s couchdb0
  1. Deploy the chaincode by running the following command:
./network.sh deployCC -c bankschannel -ccn bank -ccp ../crossBorderPayment/chaincode-go/ -ccl go -ccep "OR('Org1MSP.peer','Org2MSP.peer')"
  1. Navigate to the crossBorderPayment/application directory:
cd ../crossBorderPayment/application
  1. Install the required dependencies using npm:
npm install
  1. Run the following commands to enroll the admin users:
node enrollAdmin.js org1
node enrollAdmin.js org2
  1. Start the application by running the following command:
node app.js

If there are no errors, the explorer interface will be accessible at http://localhost:3000.

Bank and Customer LogIn/SignUp Page

Explorer Configuration

  1. Modify the necessary files for the explorer:

    • Take the name of the file in the cbps-network/organizations/peerOrganizations/org1.example.com/users/[email protected]/msp/keystore directory.
    • Change the end of the adminPrivateKey value in the explorer/cbps-network.json file.
  2. Navigate to the explorer directory:

cd explorer
  1. Run the following command to start the Docker containers:
docker-compose up

Explorer

  1. If there are no errors, the explorer interface will be accessible at http://localhost:8080.

Stop and Clear Network

  1. Navigate to the cbps-network directory:
cd cbps-network
  1. Run the following command to shut down the network:
./network.sh down
  1. Navigate to the crossBorderPayment/application directory:
cd ../crossBorderPayment/application
  1. Delete the wallet and node-modules directories:
rm -rf wallet
rm -rf node-modules
Stopping and Removing Docker Containers:

```bash
docker stop $(docker ps -a -q)
docker rm -f $(docker ps -aq)
docker system prune -a
docker volume prune

Listing Docker Containers and Images:

docker ps -a
docker images -a
docker volume ls

About

Blockchain Based Cross Border Payment System Using Hyperledger Fabric

Topics

Resources

License

Code of conduct

Security policy

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published