Skip to content

Instantly share code, notes, and snippets.

View Guzbyte-tech's full-sized avatar
🎯
Focusing

Chiagoziem David Guzbyte-tech

🎯
Focusing
View GitHub Profile
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.17;
contract StudentRecord {
address owner;
constructor () {
owner = msg.sender;
}