Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

View judeapana's full-sized avatar
🏠
Working from home

Apana Jude judeapana

🏠
Working from home
View GitHub Profile
@judeapana
judeapana / Secure Logging System with Blockchain
Created April 25, 2023 17:54
This is a logging system built using blockchain and programming language Solidity
// SPDX-License-Identifier: GPL-3.0
pragma solidity >=0.7.0 <0.9.0;
contract SecureLogging {
address private owner;
mapping (uint => Log) private logs;
uint private logCount;