This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.20; | |
| import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; | |
| import "@openzeppelin/contracts/access/Ownable.sol"; | |
| contract KimmiBeansNFT is ERC721, Ownable { | |
| uint256 public nextId = 1; | |
| uint256 public constant MAX_SUPPLY = 10000; | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // SPDX-License-Identifier: MIT | |
| pragma solidity ^0.8.20; | |
| import "@openzeppelin/contracts/access/Ownable.sol"; | |
| contract KimmiBeansCare is Ownable { | |
| // --------- DYNAMIC FEES (Owner can update anytime) --------- | |
| uint256 public feedFee; | |
| uint256 public waterFee; |