This commit is contained in:
2026-02-26 16:17:30 +01:00
commit 96e58bbf62
19 changed files with 5835 additions and 0 deletions

13
contracts/Gradebook.sol Normal file
View File

@@ -0,0 +1,13 @@
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
contract Gradebook {
// addStudent(addr, name)
// submitScore(addr, points)
// this function should fire an event when points are added
// getGrade(addr)
}