pip install x where x is the below listed packages
Python == 3.7.13pandas == 1.3.5streamlit == 1.13.0
Build a blockchain-based ledger system, complete with a user-friendly web interface. This ledger should allow partner banks to conduct financial transactions and to verify the integrity of the data in the ledger.
Images: Directory containing screenshots of the Streamlit application pagepychain.py: Python file that contains the basicPyChainledger structure
-
Create a new data class named
Recordinpychain.py. This class will serve as the blueprint for the financial transaction records that the blocks of the ledger will store. -
Modify the existing
Blockdata class to storeRecorddata inpychain.py. -
Add
pychain.pyto local drive and executestreamlit run pychain.pyin terminal to access Streamlit application page. -
Add Relevant User Inputs to the Streamlit interface.
- Test the PyChain Ledger by Storing Records.
All records were successfully added to the PyChain Ledger.

