Skip to content

Instantly share code, notes, and snippets.

@paneedovanie
paneedovanie / contracts...Project.sol
Created September 22, 2025 14:48
Created using remix-ide: Realtime Ethereum Contract Compiler and Runtime. Load this file by pasting this gists URL or ID at https://remix.ethereum.org/#version=soljson-v0.8.30+commit.73712a01.js&optimize=false&runs=200&gist=
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;
contract Project {
// Struct to hold detailed project information
struct ProjectInfo {
string projectId;
string projectName;
string projectManager;
uint256 budget;