// SPDX-License-Identifier: MIT pragma solidity ^0.8.2; import "@openzeppelin/contracts@4.4.0/token/ERC721/ERC721.sol"; import "@openzeppelin/contracts@4.4.0/token/ERC721/extensions/ERC721Burnable.sol"; import "@openzeppelin/contracts@4.4.0/access/Ownable.sol"; contract DevRelHaus is ERC721, ERC721Burnable, Ownable { constructor() ERC721("DevRelHaus", "DRH") {} function safeMint(address to, uint256 tokenId) public onlyOwner { _safeMint(to, tokenId); } }