Link to Contract https://mumbai.polygonscan.com/address/0x0f9bf4288c701714c01993b378d5d981a956f232
Explainations
Token Name is Tobi Token Token Symbol is TT
I created an initial supply of 100,000 i set the token price to 0.0001eth.
Link to Contract https://mumbai.polygonscan.com/address/0x0f9bf4288c701714c01993b378d5d981a956f232
Explainations
Token Name is Tobi Token Token Symbol is TT
I created an initial supply of 100,000 i set the token price to 0.0001eth.
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.20; | |
contract School { | |
struct Student { | |
string name; | |
uint score; | |
uint age; | |
string favColour; |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.20; | |
import "./schoolrecord.sol"; | |
contract SchoolFactory { | |
address public owner; // Contract owner | |
mapping(address => School) public deployedSchools; // Deployed schools mapping | |
event SchoolCreated(address schoolAddress, address creator); |
// SPDX-License-Identifier: GPL-3.0 | |
pragma solidity ^0.8.20; | |
contract School { | |
struct Student { | |
string name; | |
uint score; | |
uint age; | |
string favColour; |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.20; | |
import "@openzeppelin/[email protected]/token/ERC721/ERC721.sol"; | |
import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721URIStorage.sol"; | |
import "@openzeppelin/[email protected]/token/ERC721/extensions/ERC721Burnable.sol"; | |
import "@openzeppelin/[email protected]/access/Ownable.sol"; | |
contract TbGuys is ERC721, ERC721URIStorage, ERC721Burnable, Ownable { | |
constructor(address initialOwner) |
// SPDX-License-Identifier: MIT | |
pragma solidity ^0.8.0; | |
error INSUFFICIENT_FUNDS(); | |
error AMOUNT_CANT_BE_ZERO(); | |
error ADDRESS_CANT_BE_ZERO(); | |
contract SaveEther { | |
mapping(address => uint256) savings; |
// SPDX-License-Identifier: MIT | |
// Compatible with OpenZeppelin Contracts ^5.0.0 | |
pragma solidity ^0.8.20; | |
import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
contract MetaNFT is ERC721 { | |
uint256 public mintingFee = 10000000000000000; | |
constructor() | |
ERC721("Meta NFT", "MNFT") |
// SPDX-License-Identifier: MIT | |
pragma solidity >=0.8.0; | |
import {Utilities} from "../../utils/Utilities.sol"; | |
import "forge-std/Test.sol"; | |
import {SideEntranceLenderPool} from "../src/SideEntranceLenderPool.sol"; | |
import "../src/flashloan.sol"; |
// SPDX-License-Identifier: Unlicensed | |
pragma solidity 0.8.19; | |
import "forge-std/Test.sol"; | |
import "../src/Mortgage.sol"; // Adjust the import path according to your directory structure | |
contract MortgageTest is Test { | |
Mortgage mortgage; | |
MustCall mustCall; |