You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
51 lines
1.2 KiB
51 lines
1.2 KiB
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../token/ERC721/extensions/ERC721Enumerable.sol";
|
|
|
|
/**
|
|
* @title ERC721Mock
|
|
* This mock just provides a public safeMint, mint, and burn functions for testing purposes
|
|
*/
|
|
contract ERC721EnumerableMock is ERC721Enumerable {
|
|
string private _baseTokenURI;
|
|
|
|
constructor(string memory name, string memory symbol) ERC721(name, symbol) {}
|
|
|
|
function _baseURI() internal view virtual override returns (string memory) {
|
|
return _baseTokenURI;
|
|
}
|
|
|
|
function setBaseURI(string calldata newBaseTokenURI) public {
|
|
_baseTokenURI = newBaseTokenURI;
|
|
}
|
|
|
|
function baseURI() public view returns (string memory) {
|
|
return _baseURI();
|
|
}
|
|
|
|
function exists(uint256 tokenId) public view returns (bool) {
|
|
return _exists(tokenId);
|
|
}
|
|
|
|
function mint(address to, uint256 tokenId) public {
|
|
_mint(to, tokenId);
|
|
}
|
|
|
|
function safeMint(address to, uint256 tokenId) public {
|
|
_safeMint(to, tokenId);
|
|
}
|
|
|
|
function safeMint(
|
|
address to,
|
|
uint256 tokenId,
|
|
bytes memory _data
|
|
) public {
|
|
_safeMint(to, tokenId, _data);
|
|
}
|
|
|
|
function burn(uint256 tokenId) public {
|
|
_burn(tokenId);
|
|
}
|
|
}
|
|
|