// SPDX-License-Identifier: MIT
// SPDX-FileCopyrightText: Copyright (C) 2022 Spanning Labs Inc.
pragma solidity ^0.8.0;
import "../token/ERC721/extensions/SpanningERC721Enumerable.sol";
/**
* @title MockSpanningERC721Enumerable
* This mock just provides a public safeMint, mint, and burn functions for testing purposes
*/
contract MockSpanningERC721Enumerable is SpanningERC721Enumerable {
constructor(
string memory name_in,
string memory symbol_in,
address delegate
) SpanningERC721(name_in, symbol_in, delegate) {}
function mint(bytes32 to, uint256 tokenId) public {
_mint(to, tokenId);
}
function burn(uint256 tokenId) public {
_burn(tokenId);
}
}
|