// SPDX-License-Identifier: MIT pragma solidity 0.8.23; import "@openzeppelin/contracts/token/ERC721/ERC721.sol"; /// @dev Minimal free-mint ERC-721 used only by the AereTokenBoundAccount tests. contract MockERC721 is ERC721 { constructor() ERC721("Mock", "MOCK") {} function mint(address to, uint256 tokenId) external { _mint(to, tokenId); } }