Building a Sustainable Digital Infrastructure for Higher Education: A Blockchain-Based Solution for Cross-Institutional Enrollment
Abstract
:1. Introduction
2. Background
2.1. Blockchain Technology
2.2. Hyperledger Fabric
- Peers: they host instances of the ledger, and instances of chaincode, i.e., a program code that implements an application’s logic.
- Channels: these are mechanisms by which a group of components within the Hyperledger Fabric network can transact and communicate privately.
- Certificate Authority (CA): it is the entity that manages the network identities of all participating organizations and their users.
- Membership Service Provider (MSP): this component is responsible for maintaining the identities of all nodes in the network.
- Ordering service: it is performed by nodes called orderers, which are responsible for (I) ordering the transactions that are sent to a peer to be written to its ledger, and thus to prevent a state fork, (II) maintaining the orderer system channel, and (III) performing some essential identity validation checks.
- The Fabric SDKs: they allow programmers to build applications that interact with the Hyperledger Fabric network.
2.3. Hyperledger Composer
- Model files: they are used to outline the structure and relationships between application elements—assets, transactions, and participants. Assets define tangible or intangible properties, goods, or services. Transactions are the functions that take place in the blockchain network, e.g., selling an asset. Participants are the network nodes which can interact with each other and with assets through transactions.
- Script files: these files are developed by programmers to implement business requirements that have been provided by business analysts. They are written in JavaScript and define the transaction logic, such as which participants can make an interaction, and how, and which asset should be modified, and how.
- Access control files: these files contain a set of access control rules that define the rights of each participant in the blockchain network such as Read, Create, and Update.
- Query files: these files contain the definitions of the different queries that can be used in script files to retrieve transactions from the historian, i.e., a ledger of all previous transactions in the network.
2.4. Blockchain for Developing Sustainable Infrastructure
3. Related Works
3.1. Blockchain Applications in Higher Education
3.2. Challenges of Storing Large Data in Blockchain
4. Methodology (Proposed Platform)
4.1. Functional Requirements
- Educational institutions can manage lists of equivalent courses. Institutions that want to use the platform need to identify their equivalent courses, assign a unified code to them, then use BCHEEN to add these courses to the blockchain. Thus, students are allowed to ascertain transferability of their credit experiences and enrollment process is made fully automated.
- An institution can offer courses to be available for enrollment to students from other institutions. In addition to the basic information of the course, the institution should provide the maximum number of students who can enroll in each offered course. When this number is reached, no new enrollments should be accepted by the platform.
- Educational institutions can manage academic semesters. This includes adding and modifying semesters’ data. For each semester, they can specify the enrollment and withdrawal dates to ensure that enrollments and withdrawals are not permitted outside these dates.
- Education institutions can register their students in the system. When registering students, their essential information should be recorded, including name, id, degree, courses that students can study outside their home institution, prohibited courses, and maximum and minimum semester load. This information can be used by the platform to automate the enrollment process.
- A student can, after meeting certain conditions, enroll in one of the courses available for joint enrollment. The enrollment process should be fully automated. The platform will ensure that the students meet all the required conditions, i.e., (I) the student’s academic status is active, (II) the student is allowed to study the selected course, (III) the student has not exceeded the maximum allowed credit hours, (IV) the student is not currently enrolled in a similar course at another institution, and (V) all the course prerequisites have been met. The platform will also ensure that enrollment is still open in the educational institution where the course is offered and that the maximum number of enrollments in the course has not been exceeded.
- A student can withdraw from a course if he/she is withdrawing within the permitted withdrawal dates and he/she is not falling below the minimum required credit hours.
4.2. Non-Functional Requirements
- BCHEEN should be able to store large data, such as students’ photos, their photo IDs, international students’ visas and indiscipline reports, without compromising the performance of the system. The storage mechanism should also maintain the other distinguished features of blockchain technology including reliability, transparency, immutability, accountability and security.
- BCHEEN should have a distributed architecture. Such architecture would allow the platform to operate without the need for a defined central authority. No single educational institution would have the ability to execute control over BCHEEN activities.
- BCHEEN should be reliable. Thus, a problem in a particular device should not affect the executed processes. If one of the participating institutions experiences problems in its IT infrastructure that runs the platform, other institutions should be able to continue using the platform and transact with each other.
- BCHEEN should support transparent processing and sharing of students’ data. Thus, when needed, an educational institution can validate a certain transaction or a student’s data to examine any changes made to this data over time.
- BCHEEN should support accountability. Any student or staff member using the platform should be held accountable for any misbehavior, such as providing wrongful information or executing an illegal transaction.
- BCHEEN should be highly secure. It would be virtually impossible to modify any of the sensitive data stored or shared by BCHEEN. Access to such data should be limited to authorized parties. BCHEEN should also reduce the risk of fraud and any other illegal activities.
- BCHEEN should minimize operation costs. Transactions performed by BCHEEN should be fully automated to reduce labor costs required to handle and process students’ data. Automation should also eliminate the need for third parties who are normally hired to do administrative tasks.
4.3. Deployment Environment
5. Implementation
Algorithm 1: EnrollInCourse() |
Input: Student, SelectedCourseCode, VisitedInstitution, Year, Semester |
function enroll StudentInCourse() |
get student academic status from studentDegree asset |
get if the student has already studied and passed the course from StudentDegree asset |
if the student academic status is not enrolled or student has studied and passed the course: |
poduce an error message |
else |
get total credit hours that student registered in the current semester from StudentEnrolment asset |
get if the student is currently enrolled in the course from StudentEnrolment asset |
if total credit hours of current semester greater than or equal student maximum load or student is currently enrolled in the course: |
produce an error message |
else |
get if the student is allowed to study the course from StudentDegree asset and |
SemesterOfferings asset |
get if the student studied all the course prerequisites from StudentDegree asset and SemesterOfferings asset |
if the student is not allowed to study the course or student has not completed all prerequisites: |
produce an error message |
else |
get if the course is offered in the VisitedInstitution from SemesterOfferings asset |
get if the current date is within the enrollment dates from SemesterOfferings asset |
get if the maximum number of students who can study the course has been reached from SemesterOfferings asset |
if the course is not offered in the VisitedInstitution or the current date is not within the enrollment dates or the maximum number of enrolled students has been reached: |
produce an error message |
else |
Add selected course to StudentEnrolment asset |
Increase number of enrolled students in the course by 1 in SemesterOfferings asset |
Get StudentFiles asset |
Emit SuccessEnrollNotification event and return StudentFiles asset to the application |
end function |
Algorithm 2: WithdrawFromCourse() |
Input: Student, SelectedCourseCode, VisitedInstitution, Year, Semester |
function enrollStudentInCourse() |
Get if the student is enrolled in the course from StudentEnrolment asset. |
if the student is not enrolled in the course: |
Produce an error message |
else: |
Get total credit hours that the student will be registering after dropping the course from StudentEnrolment asset |
if total credit hours after dropping the course will be less than the student’s minimum load: |
Produce an error message |
else: |
Get if the current date is within the withdrawal dates from SemesterOfferings asset |
if the current date is not within the withdrawal dates: |
Produce an error message |
else: |
Remove the selected course from StudentEnrolment asset |
End function |
6. Results and Analysis
6.1. Functional Testing
6.2. Performance Testing
6.3. Security Analysis
- Decentralized security and trust: BCHEEN is built on a permissioned blockchain architecture using Hyperledger Fabric, which ensures that all participating educational institutions have known identities, providing an added layer of trust compared to traditional permissionless blockchains. The decentralized nature of the platform eliminates the need for a central authority, thus reducing the risk of a single point of failure and unauthorized tampering. Each institution contributes nodes to the network, and transactions are validated through a consensus mechanism, ensuring consistency and resilience in the face of potential failures.
- Data integrity and immutability: Blockchain’s inherent immutability plays a critical role in ensuring the integrity of student records and enrollment data. All transactions, including enrollments, course modifications, and academic records, are recorded on the blockchain ledger. Once a transaction is added to the ledger, it cannot be altered or deleted, thus guaranteeing data consistency and preventing any unauthorized modifications. This feature is especially crucial in managing sensitive academic data, ensuring that all stakeholders can trust the authenticity of the records.
- Smart Contract-Based access control: BCHEEN uses smart contracts to enforce access-control policies autonomously. These smart contracts define and enforce the rules for data access, ensuring that only authorized participants can interact with specific data. The use of smart contracts minimizes the risk of human error and fraudulent activities, as all access decisions are governed by pre-defined, transparent policies. For instance, course enrollments and withdrawals are automatically validated based on predefined eligibility criteria, preventing unauthorized actions and ensuring accountability.
- Security against common blockchain threats: to mitigate risks commonly associated with blockchain systems, BCHEEN incorporates several defensive measures. MSP is used to manage identities, ensuring that only authenticated and authorized participants can join the network and initiate transactions. Channels are used within the Hyperledger Fabric network to create private communication groups among institutions, enabling secure data exchange while keeping sensitive information isolated from unauthorized participants. The permissioned nature of the blockchain reduces the likelihood of attacks such as a 51% attack, as only trusted nodes participate in the consensus process. Furthermore, the distributed architecture ensures that the system remains operational even if some nodes are compromised.
- Auditability and transparency: one of the core benefits of using blockchain technology in BCHEEN is the ability to provide a transparent and auditable record of all transactions. This transparency enhances trust among stakeholders, including students, instructors, and administrators. Any changes made to student records, enrollments, or academic information are permanently recorded on the blockchain, allowing authorized users to trace and verify the history of all transactions. This feature not only ensures accountability, but also simplifies the audit process for educational institutions.
6.4. Computational Cost Analysis
7. Discussion
8. Limitations
9. Conclusions and Future Work
Funding
Institutional Review Board Statement
Informed Consent Statement
Data Availability Statement
Conflicts of Interest
References
- JOIMAN Network. Guide to Developing and Running Joint Programmes at Bachelor and Master’s Level—A Template. Available online: https://www.staff.lu.se/sites/staff.lu.se/files/joiman_template_jp_150317.pdf (accessed on 17 November 2024).
- Alammary, A.; Alshaikh, M.; Pratama, A.R. Awareness of security and privacy settings in video conferencing apps among faculty during the COVID-19 pandemic. PeerJ Comput. Sci. 2022, 8, e1021. [Google Scholar] [CrossRef] [PubMed]
- Alammary, A.S. LOsMonitor: A Machine Learning Tool for Analyzing and Monitoring Cognitive Levels of Assessment Questions. IEEE Trans. Learn. Technol. 2021, 14, 640–652. [Google Scholar] [CrossRef]
- Palermo, O.A.; Bisignano, A.P.; Mercado, S. The Design of International Dual Degree Programmes as Effective Transnational Education Experiences. In Exporting Transnational Education: Institutional Practice, Policy and National Goals; Tsiligiris, V., Lawton, W., Eds.; Springer International Publishing: Cham, Switzerland, 2018; pp. 45–66. [Google Scholar]
- University of Vaasa. Completing Courses Outside the University. Available online: https://www.uwasa.fi/en/students/internationalisation-and-mobility-international-degree-students (accessed on 10 November 2024).
- University of Sydney. Study Abroad and Exchange Guide 2025. Available online: https://www.sydney.edu.au/content/dam/corporate/documents/study/study-abroad/study-abroad-inbound-guide.pdf (accessed on 1 November 2024).
- City University of London. Exchange and Study Abroad. Available online: https://www.city.ac.uk/study/international/exchange-and-study-abroad/city-student-exchange/eligibility-and-how-to-apply#tab=tab-5 (accessed on 27 October 2024).
- University of Melbourne. International Exchange and Study Abroad Applications. Available online: https://study.unimelb.edu.au/how-to-apply/international-exchange-and-study-abroad-applications/applications (accessed on 9 October 2024).
- Collins, R. Blockchain: A new architecture for digital content. EContent 2016, 39, 22–23. [Google Scholar]
- Dorri, A.; Steger, M.; Kanhere, S.S.; Jurdak, R. Blockchain: A distributed solution to automotive security and privacy. IEEE Commun. Mag. 2017, 55, 119–125. [Google Scholar] [CrossRef]
- Lombardi, F.; Aniello, L.; De Angelis, S.; Margheri, A.; Sassone, V. A blockchain-based infrastructure for reliable and cost-effective IoT-aided smart grids. IET 2018. [Google Scholar] [CrossRef]
- Lemieux, V.L.; Hofman, D.; Batista, D.; Joo, A. Blockchain Technology and Recordkeeping. Inf. Manag. 2019, 53, 14–17. [Google Scholar]
- Heo, J.W.; Ramachandran, G.S.; Dorri, A.; Jurdak, R. Blockchain Data Storage Optimisations: A Comprehensive Survey. ACM Comput. Surv. 2024, 56, 179. [Google Scholar] [CrossRef]
- Nakamoto, S. Bitcoin: A Peer-to-Peer Electronic Cash System. 2008. Available online: https://ssrn.com/abstract=3440802 (accessed on 11 October 2024).
- Grech, A.; Camilleri, A.F. Blockchain in Education; Publications Office of the European Union: Luxembourg, 2017. [Google Scholar] [CrossRef]
- Wang, J.; Chen, W.; Wang, L.; Ren, Y.; Sherratt, R.S. Blockchain-based data storage mechanism for industrial internet of things. Intell. Autom. Soft Comput. 2020, 26, 1157–1172. [Google Scholar] [CrossRef]
- Kara, M.; Aydin, M.A.; Balik, H.H. Bcvop2p: Decentralized blockchain-based authentication scheme for secure voice communication. Intell. Autom. Soft Comput. 2022, 31, 1901–1918. [Google Scholar] [CrossRef]
- Novotny, P.; Zhang, Q.; Hull, R.; Baset, S.; Laredo, J.; Vaculin, R.; Ford, D.L.; Dillenberger, D.N. Permissioned blockchain technologies for academic publishing. Inf. Serv. Use 2018, 38, 159–171. [Google Scholar] [CrossRef]
- Khonde, S.R.; Ulagamuthalvi, V. Blockchain: Secured solution for signature transfer in distributed intrusion detection system. Comput. Syst. Sci. Eng. 2022, 40, 37–51. [Google Scholar] [CrossRef]
- IBM Knowledge Center. Hyperledger Fabric. Available online: https://www.ibm.com/topics/hyperledger (accessed on 12 November 2024).
- Androulaki, E.; Barger, A.; Bortnikov, V.; Cachin, C.; Christidis, K.; De Caro, A.; Enyeart, D.; Ferris, C.; Laventman, G.; Manevich, Y. Hyperledger fabric: A distributed operating system for permissioned blockchains. In Proceedings of the Thirteenth EuroSys Conference, Porto, Portugal, 23–26 April 2018; pp. 1–15. [Google Scholar]
- Filipova, N. Blockchain–an opportunity for developing new business models. Бизнес Управление 2018, 28, 75–92. [Google Scholar]
- De Angelis, S.; Zanfino, G.; Aniello, L.; Lombardi, F.; Sassone, V. Blockchain and cybersecurity: A taxonomic approach. EU Blockchain Obs. 2019. Available online: https://blockchain-observatory.ec.europa.eu/publications/blockchain-and-cybersecurity-taxonomic-approach_en#description (accessed on 20 October 2024).
- Rajput, A.R.; Li, Q.; Ahvanooey, M.T.; Masood, I. EACMS: Emergency access control management system for personal health record based on blockchain. IEEE Access 2019, 7, 84304–84317. [Google Scholar] [CrossRef]
- Marshall, S. Using the e-learning maturity model to identify good practice in e-Learning. In Proceedings of the Electric Dreams, Proceedings 30th Ascilite Conference, Sydney, Australia, 13–15 May 2013; pp. 546–556. [Google Scholar]
- Antoun, W.; Baly, F.; Hajj, H. Arabert: Transformer-based model for arabic language understanding. In Proceedings of the LREC 2020 Workshop Language Resources and Evaluation Conference, Marseille, France, 11–16 May 2020. [Google Scholar]
- Alammary, A.S. Optimizing Components Selection in Blended Learning: Toward Sustainable Students Engagement and Success. Sustainability 2024, 16, 4923. [Google Scholar]
- Alammary, A.S. Blended Learning Delivery Methods for a Sustainable Learning Environment: A Delphi Study. Sustainability 2024, 16, 3269. [Google Scholar]
- Kamilaris, A.; Fonts, A.; Prenafeta-Boldύ, F.X. The rise of blockchain technology in agriculture and food supply chains. Trends Food Sci. Technol. 2019, 91, 640–652. [Google Scholar] [CrossRef]
- Vazquez Melendez, E.I.; Bergey, P.; Smith, B. Blockchain technology for supply chain provenance: Increasing supply chain efficiency and consumer trust. Supply Chain Manag. Int. J. 2024, 29, 706–730. [Google Scholar] [CrossRef]
- Lezzi, M.; Del Vecchio, V.; Lazoi, M. Using Blockchain Technology for Sustainability and Secure Data Management in the Energy Industry: Implications and Future Research Directions. Sustainability 2024, 16, 7949. [Google Scholar] [CrossRef]
- Bahrepour, D.; Maleki, R. Benefit and limitation of using blockchain in smart cities to improve citizen services. GeoJournal 2024, 89, 57. [Google Scholar] [CrossRef]
- Vladucu, M.-V.; Wu, H.; Medina, J.; Salehin, K.M.; Dong, Z.; Rojas-Cessa, R. Blockchain on Sustainable Environmental Measures: A Review. Blockchains 2024, 2, 334–365. [Google Scholar] [CrossRef]
- Kabashi, F.; Snopce, H.; Aliu, A.; Luma, A.; Shkurti, L. A Systematic Literature Review of Blockchain for Higher Education. In Proceedings of the 2023 International Conference on IT Innovation and Knowledge Discovery (ITIKD), Manama, Bahrain, 8–9 March 2023; pp. 1–6. [Google Scholar]
- Alammary, A.; Alhazmi, S.; Almasri, M.; Gillani, S. Blockchain-based applications in education: A systematic review. Appl. Sci. 2019, 9, 2400. [Google Scholar] [CrossRef]
- Han, M.; Li, Z.; He, J.; Wu, D.; Xie, Y.; Baba, A. A novel blockchain-based education records verification solution. In Proceedings of the 19th Annual SIG Conference on Information Technology Education, Fort Lauderdale, FL, USA, 3–6 October 2018; pp. 178–183. [Google Scholar]
- Hölbl, M.; Kamisalić, A.; Turkanović, M.; Kompara, M.; Podgorelec, B.; Herićko, M. EduCTX: An ecosystem for managing digital micro-credentials. In Proceedings of the 2018 28th EAEEIE Annual Conference (EAEEIE), Hafnarfjordur, Iceland, 26–28 September 2018; pp. 1–9. [Google Scholar]
- Duan, B.; Zhong, Y.; Liu, D. Education application of blockchain technology: Learning outcome and meta-diploma. In Proceedings of the 2017 IEEE 23rd International Conference on Parallel and Distributed Systems (ICPADS), Shenzhen, China, 15–17 December 2017; pp. 814–817. [Google Scholar]
- Maestre, R.J.; Bermejo Higuera, J.; Gámez Gómez, N.; Bermejo Higuera, J.R.; Sicilia Montalvo, J.A.; Orcos Palma, L. The application of blockchain algorithms to the management of education certificates. Evol. Intell. 2023, 16, 1967–1984. [Google Scholar] [CrossRef] [PubMed]
- Kaur, R.; Sonia; Iorio, C. StudentCoin Price Prediction and Relation to Blockchain Education. In Proceedings of the 2023 10th International Conference on Computing for Sustainable Global Development (INDIACom), New Delhi, India, 15–17 March 2023; pp. 28–35. [Google Scholar]
- Bathula, A.; Muhuri, S.; Gupta, S.k.; Merugu, S. Secure certificate sharing based on Blockchain framework for online education. Multimed. Tools Appl. 2023, 82, 16479–16500. [Google Scholar] [CrossRef]
- Asamoah, K.O.; Darko, A.P.; Antwi, C.O.; Kodjiku, S.L.; Aggrey, E.S.E.B.; Wang, Q.; Zhu, J. A Blockchain-Based Crowdsourcing Loan Platform for Funding Higher Education in Developing Countries. IEEE Access 2023, 11, 24162–24174. [Google Scholar] [CrossRef]
- Wu, B.; Li, Y. Design of evaluation system for digital education operational skill competition based on blockchain. In Proceedings of the 2018 IEEE 15th International Conference on e-Business Engineering (ICEBE), Xi’an, China, 12–14 October 2018; pp. 102–109. [Google Scholar]
- Hori, M.; Ono, S.; Miyashita, K.; Kobayashi, S.; Miyahara, H.; Kita, T.; Yamada, T.; Yamaji, K. Learning system based on decentralized learning model using blockchain and SNS. In Proceedings of the CSEDU (1), Funchal, Portugal, 15–17 March 2018; pp. 183–190. [Google Scholar]
- Sychov, S.; Chirtsov, A. Towards developing the unified bank of learning objects for electronic educational environment and its protection. In Proceedings of the 2018 Workshop on PhD Software Engineering Education: Challenges, Trends, and Programs, St. Petersburg, Russia, 17 September 2018; pp. 1–6. [Google Scholar]
- Abdelsalam, M.; Shokry, M.; Idrees, A.M. A Proposed Model for Improving the Reliability of Online Exam Results Using Blockchain. IEEE Access 2024, 12, 7719–7733. [Google Scholar] [CrossRef]
- Mikroyannidis, A.; Domingue, J.; Bachler, M.; Quick, K. A learner-centred approach for lifelong learning powered by the blockchain. In Proceedings of the EdMedia+ Innovate Learning, Amsterdam, The Netherlands, 25 June 2018; pp. 1388–1393. [Google Scholar]
- Zhong, J.; Xie, H.; Zou, D.; Chui, D.K. A blockchain model for word-learning systems. In Proceedings of the 2018 5th International Conference on Behavioral, Economic, and Socio-Cultural Computing (BESC), Kaohsiung, Taiwan, 12–14 November 2018; pp. 130–131. [Google Scholar]
- Khashan, O.-A.; Alamri, S.; Alomoush, W.; Alsmadi, M.-K.; Atawneh, S.; Mir, U. Blockchain-Based Decentralized Authentication Model for IoT-Based E-Learning and Educational Environments. Comput. Mater. Contin. 2023, 75, 3133–3158. [Google Scholar] [CrossRef]
- Eberhardt, J.; Tai, S. On or off the blockchain? Insights on off-chaining computation and data. In Proceedings of the European Conference on Service-Oriented and Cloud Computing, Oslo, Norway, 27–29 September 2017; pp. 3–15. [Google Scholar]
- Tran, H. Replacing HTTP: A Brief Summary of IPFS. Available online: https://revelry.co/insights/development/ipfs-infrastructure/ (accessed on 3 October 2024).
- Kalajdjieski, J.; Raikwar, M.; Arsov, N.; Velinov, G.; Gligoroski, D. Databases fit for blockchain technology: A complete overview. Blockchain: Res. Appl. 2023, 4, 100116. [Google Scholar] [CrossRef]
- Jin, C.; Xu, Y.; Qin, W.; Zhao, J.; Kan, G.; Zeng, F. A blockchain-based auditable deduplication scheme for multi-cloud storage. Peer Peer Netw. Appl. 2024, 17, 2870–2883. [Google Scholar] [CrossRef]
- Burnstein, I. Practical Software Testing: A Process-Oriented Approach; Springer Science & Business Media: New York, NY, USA, 2006. [Google Scholar]
- Melo, C.; Gonçalves, G.; Silva, F.A.; Soares, A. A comprehensive hyperledger fabric performance evaluation based on resources capacity planning. Clust. Comput. 2024, 27, 12395–12410. [Google Scholar] [CrossRef]
- The Linux Foundation. Hyperledger Caliper. Available online: https://www.lfdecentralizedtrust.org/projects/caliper (accessed on 16 October 2024).
- Hang, L.; Kim, D.-H. SLA-based sharing economy service with smart contract for resource integrity in the internet of things. Appl. Sci. 2019, 9, 3602. [Google Scholar] [CrossRef]
- Tanwar, S.; Parekh, K.; Evans, R. Blockchain-based electronic healthcare record system for healthcare 4.0 applications. J. Inf. Secur. Appl. 2020, 50, 102407. [Google Scholar] [CrossRef]
- Nasir, Q.; Qasse, I.A.; Abu Talib, M.; Nassif, A.B. Performance analysis of hyperledger fabric platforms. Secur. Commun. Netw. 2018, 2018, 3976093. [Google Scholar] [CrossRef]
- Kaur, M.; Gupta, S.; Kumar, D.; Raboaca, M.S.; Goyal, S.B.; Verma, C. IPFS: An Off-Chain Storage Solution for Blockchain. In Proceedings of the International Conference on Recent Innovations in Computing; Springer: Singapore, 2023; pp. 513–525. [Google Scholar]
- Xu, C.; Zhang, C.; Xu, J.; Pei, J. SlimChain: Scaling blockchain transactions through off-chain storage and parallel processing. Proc. VLDB Endow. 2021, 14, 2314–2326. [Google Scholar] [CrossRef]
- Samanta, S.; Sarkar, A.; Kumari, S. An IoMT data security framework with Hyperledger Fabric for smart cities. Int. J. Inf. Technol. 2024, 16, 4875–4886. [Google Scholar] [CrossRef]
- Bucea-Manea-Țoniş, R.; Martins, O.M.D.; Bucea-Manea-Țoniş, R.; Gheorghiță, C.; Kuleto, V.; Ilić, M.P.; Simion, V.-E. Blockchain Technology Enhances Sustainable Higher Education. Sustainability 2021, 13, 12347. [Google Scholar] [CrossRef]
- Saydullaev, S. Transforming Higher Education: A Comprehensive Analysis of Blockchain Technologies and Digitalization. In Proceedings of the Internet of Things, Smart Spaces, and Next Generation Networks and Systems; Springer: Cham, Switzerland, 2024; pp. 261–271. [Google Scholar]
- Damle, M.; Kulkarni, P.; Damle, M. Blockchain Technology in Talent Retention and Capability Development in HRM. In Proceedings of the 2023 5th International Conference on Inventive Research in Computing Applications (ICIRCA), Coimbatore, India, 3–5 August 2023. [Google Scholar]
Transaction | Number of Test Scenarios |
---|---|
Number of test scenarios designed: | 34 |
Number of test scenarios executed: | 34 |
% of test scenarios executed: | 100% |
% of test scenarios passed: | 100% |
% of test scenarios failed: | 0% |
Disclaimer/Publisher’s Note: The statements, opinions and data contained in all publications are solely those of the individual author(s) and contributor(s) and not of MDPI and/or the editor(s). MDPI and/or the editor(s) disclaim responsibility for any injury to people or property resulting from any ideas, methods, instructions or products referred to in the content. |
© 2024 by the author. Licensee MDPI, Basel, Switzerland. This article is an open access article distributed under the terms and conditions of the Creative Commons Attribution (CC BY) license (https://creativecommons.org/licenses/by/4.0/).
Share and Cite
Alammary, A.S. Building a Sustainable Digital Infrastructure for Higher Education: A Blockchain-Based Solution for Cross-Institutional Enrollment. Sustainability 2025, 17, 194. https://doi.org/10.3390/su17010194
Alammary AS. Building a Sustainable Digital Infrastructure for Higher Education: A Blockchain-Based Solution for Cross-Institutional Enrollment. Sustainability. 2025; 17(1):194. https://doi.org/10.3390/su17010194
Chicago/Turabian StyleAlammary, Ali Saleh. 2025. "Building a Sustainable Digital Infrastructure for Higher Education: A Blockchain-Based Solution for Cross-Institutional Enrollment" Sustainability 17, no. 1: 194. https://doi.org/10.3390/su17010194
APA StyleAlammary, A. S. (2025). Building a Sustainable Digital Infrastructure for Higher Education: A Blockchain-Based Solution for Cross-Institutional Enrollment. Sustainability, 17(1), 194. https://doi.org/10.3390/su17010194