forked from DecentralizedClimateFoundation/DCIPs
17 lines
333 B
Solidity
17 lines
333 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 RMRK implementer
|
||
|
*/
|
||
|
contract ERC721Mock is ERC721 {
|
||
|
constructor(
|
||
|
string memory name,
|
||
|
string memory symbol
|
||
|
) ERC721(name, symbol) {}
|
||
|
}
|