Skip to content

Commit

Permalink
Create pi_network_module_5: Storage.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
KOSASIH authored Aug 28, 2024
1 parent 5e16a95 commit 8237216
Showing 1 changed file with 24 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
pragma solidity ^0.8.0;

import "./AccessControl.sol";

contract Storage {
using AccessControl for address;

// Mapping of storage data
mapping (string => bytes) public data;

// Event emitted when new storage data is updated
event NewData(string indexed key, bytes value);

// Function to update storage data
function updateData(string memory _key, bytes memory _value) public onlyAdmin {
data[_key] = _value;
emit NewData(_key, _value);
}

// Function to get storage data
function getData(string memory _key) public view returns (bytes memory) {
return data[_key];
}
}

0 comments on commit 8237216

Please sign in to comment.