House Rent Platform (solidity)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract MultiUnitHouseRental { struct Property { uint256 totalFloors; uint256 ...
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract MultiUnitHouseRental { struct Property { uint256 totalFloors; uint256 ...
// SPDX-License-Identifier: UNLICENSED pragma solidity ^0.8.19; /** * @title FreelancePlatform * @dev Smart contract for a decentralized freelance platfor...
/ SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Crowdfunding { struct Campaign { address payable creator; string title; string description; ...
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract Cafe { address public owner; struct MenuItem { string name; string description; ...
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; contract EmployeeManagement { // Contract owner address public owner; // Employee structure struct...