Built upon one of the Truffle boxes; drizzle, which helps integrate ReactJs with blockchain smart contracts.
Tools and versions used -
- Node v16.15.0
- npm v8.5.5
- Ganache client v2.5.4
- Truffle v5.5.12
- Solidity v0.5.16
- Web3.js v1.5.3
Additionally, the frontend is powered by material-ui v4.x.
The ReactJs part of the code goes under appfrontend
, smart contracts under contracts
, and migration configurations for these smart contracts under migrations
.
Configurations for connecting to local blockchain - Ganache, and compiling the contracts are written in the truffle-config.js
file.
Frontend uses the compiled contracts to interact with them. The compiled contracts are stored in appfrontend/src/contracts/
(as configured in the truffle-config.js
file), and are read internally in the appfrontend/src/drizzleOptions.js
file. The expected contracts and events are configured here.
Frontend images for current state of the application are stored in the images/currentstate
folder.
To know more about what's part of the frontend code, check out the README file in appfrontend/
.
Before getting started, ensure that you have Docker and Docker Compose installed on your system.
To run the SCM Web Application, follow these steps:
Create a docker-compose.yml
file with the following content:
version: '3'
services:
ganache:
image: sudeep162002/scm-ganache:latest
ports:
- "8545:8545"
networks:
- ganache-network
container_name: my-ganache-container
frontend:
image: sudeep162002/scm-frontend:latest
ports:
- "3000:3000"
networks:
- ganache-network
container_name: scmf
networks:
ganache-network:
name: ganache-network
Create a docker-compose.yml
file with the following content:
services:
ganache:
image: sudeep162002/scm-ganache:latest
ports:
- "8545:8545"
networks:
- ganache-network
container_name: my-ganache-container
frontend: # Single instance of frontend
image: sudeep162002/scm-frontend:latest
networks:
- ganache-network
container_name: scmf1
depends_on:
- ganache
nginx:
image: nginx:latest
ports:
- "3000:80" # Expose Nginx on port 3000
volumes:
- ./nginx.conf:/etc/nginx/nginx.conf:ro # Mount custom Nginx configuration
depends_on:
- frontend
networks:
- ganache-network
networks:
ganache-network:
name: ganache-network
Create a nginx.conf
file with the following content:
http {
upstream frontend {
server frontend:3000;
# server frontend2:3000;
}
server {
listen 80;
location / {
proxy_pass http://frontend;
}
}
}
Navigate to the directory containing the docker-compose.yml file and run the following command: docker-compose up
This command will download the Docker images (sudeep162002/scm-frontend:latest and sudeep162002/scm-ganache:latest) if they are not already present on your system and start the containers.
Navigate to any frontend container and run: ./node_modules/.bin/truffle migrate --network dev
This command will migrate the contract onto the private blockchain network.
Once the containers are up and running, you can access the SCM Web Application:
- Frontend: Visit http://localhost:3000 in your web browser to access the SCM Web Application frontend.
- MetaMask Integration: To interact with the blockchain, you need to connect MetaMask wallet to the Ganache blockchain running at localhost:8545. Open MetaMask, select "Custom RPC" from the network dropdown, and enter http://localhost:8545 in the "New RPC URL" field. Use
1337 as chain Id
for importing custom network
- Images Used:
sudeep162002/scm-frontend:latest
: Frontend image for the SCM Web Application.sudeep162002/scm-ganache:latest
: Ganache image for blockchain simulation.
- Clone the project and run
npm install
in both the root andappfrontend
folders. This should install most of the required dependencies. If a dependency conflict between react and material-ui versions pops up, install them forcefully withnpm install --force
. - Additionally, install Truffle for managing contracts using
npm install [email protected] -g
. - Install the Ganache client from Truffle's official website.
- Get the MetaMask browser extension. Create a test network that points to the local Ganache network, import the Ganache accounts into MetaMask and use them to access the application. Without MetaMask, the application takes the first Ganache address available.
- Open up Ganache and create a new workspace.
- Update
truffle-config.js
file with the workspace's network details. Connect the project to the workspace by linking the config file in the workspace's settings. - Use Truffle commands
truffle compile
andtruffle migrate
to compile and deploy the smart contracts to the new Ganache workspace. To deploy specifically to thedev
environment, suffix--network dev
to the above commands. Similarly, suffix--network <network_name>
for any custom network names. - If updating any folder names in the frontend code, please note that the path for storing the compiled contracts needs to be modified in the
truffle-config.js
file. - The migrations should successfully go through and the workspace should be updated with the contract deployment details.
For more commands, please refer to Truffle's guides and tutorials.
Navigate to the appfrontend
folder and run npm start
. This should start the application and open it up in localhost:3000
. Register with one of the MetaMask accounts as either a producer, distributor, or a retailer.
Currently uses the first available address to carry out these functionalities and works only for one producer, distributor and retailer user accounts.
In general, users can -
- update the status of batches,
- view their basic profile details,
- view the batch details after creation,
- view active and sold (history) batches and their details.
Producers can create batches of products and the rest of the users can buy and sell them.
Please check the repository's project board for ongoing and future enhancements.