Problem statement:
- Patient logs in, uploads medical/lab test bills and submits it for insurance. Notifications are sent to hospital and lab admin.
- Hospital admin logs in, verifies and approves the bills. This approval is stored on the smart contract
- Lab admin approves the lab test bills. This approval is also stored on the smart contract
- Once both of them approve, notification are sent to insurance admin.
- Insurance admin can check for approvals of hospital and lab after which he will calculate the claim amount and do the claim.
HealthCare.sol
contract maintains the logic for this DApp.
The web pages found in the Web-client
folder are used to communicate with the deployed smart contract and also allow logging in for each specific user
- Copy and paste the contract code on https://remix.ethereum.org/
- Run an instance of ganache-cli on your local machine and connect your metamask wallet to it. Also, add the first 3 accounts from ganache to your metamask by importing their private keys and assign the following names to it:
account 1: Hospital admin
account 2: Lab admin
account 3: Patient - Pass the Lab Admin's address as an argument in the constructor while deploying the contract
- Select
Injected Web3
in theEnvironment
field and make sure your Metamask wallet is unlocked. This will connect Remix to the first account(Hospital admin) in your Metamask wallet. - Deploy the contract
- Select Account 3(Patient) and created a new medical record by calling the
newRecord
function with the respective fields. - You can check if the record was created and it's details by calling the
_records
mapping with index 1. - To sign the record, switch back to account 1(Hospital admin) in Metamask, enter the record's
_ID
in thesignRecord
function and click on transact. - Repeat the same steps using account 2(Lab Admin) from metamask.
- Now the record is approved and you can verify the same by calling the
_records
mapping again where you can see that thesignatureCount
has incremented.
Note that you can not sign the record using the patient's account from metamask and neither can the same account sign a record twice.
Update:
With Remix's new interface, you need to change the account address from the ACCOUNT
drop down on the Deploy and Run
tab (required in step 8):
- The table on the React front end doesn't display the records created by the user (Issue #1).
The main focus of this project at the time of making was the smart contract logic, I just made the front end in a jiffy as I had some extra time left after implementing the contracts.
Contributions to fix the open issues are welcome, you'll receive some DOGE as well 😏
- Fork this repo.
- Commit your changes.
- Send a PR to this project's
master
branch and add me as a reviewer