Create Library Management Smart Contract
Library Management Smart contract
// SPDX-License-Identifier: UNLICENSED
pragma solidity 0.8.17;
contract Library {
constructor() {
}
struct Book {
// this struct will store the details of the book
uint256 id;
str...
blog.moayaan.com8 min read