// SPDX-License-Identifier: MIT pragma solidity ^0.8.7; import "@openzeppelin/contracts@4.7.2/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts@4.7.2/access/Ownable.sol"; contract MeadowoodTrees is ERC721, Ownable { constructor() ERC721("Meadowood Trees", "MWT") {} function _baseURI() internal pure override returns (string memory) { return "ipfs://QmYawY7zywbHxAys4Gu8dGn33Njpr5gfo7g3Mz7w4y2z5P/"; } function safeMint(address to, uint256 tokenId) public onlyOwner { _safeMint(to, tokenId); } }