17 lines
335 B
Solidity
17 lines
335 B
Solidity
// SPDX-License-Identifier: CC0-1.0
|
|
|
|
pragma solidity ^0.8.16;
|
|
|
|
import "@openzeppelin/contracts/token/ERC721/ERC721.sol";
|
|
|
|
/**
|
|
* @title ERC721Mock
|
|
* Used for tests with non ERC721 implementer
|
|
*/
|
|
contract ERC721Mock is ERC721 {
|
|
constructor(
|
|
string memory name,
|
|
string memory symbol
|
|
) ERC721(name, symbol) {}
|
|
}
|