You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
676 B
Solidity
24 lines
676 B
Solidity
// SPDX-License-Identifier: MIT
|
|
// ERC721A Contracts v4.2.3
|
|
// Creators: Chiru Labs
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
import '../extensions/ERC4907A.sol';
|
|
|
|
contract ERC4907AMock is ERC721A, ERC4907A {
|
|
constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {}
|
|
|
|
function mint(address to, uint256 quantity) public {
|
|
_mint(to, quantity);
|
|
}
|
|
|
|
function supportsInterface(bytes4 interfaceId) public view virtual override(ERC721A, ERC4907A) returns (bool) {
|
|
return super.supportsInterface(interfaceId);
|
|
}
|
|
|
|
function explicitUserOf(uint256 tokenId) public view returns (address) {
|
|
return _explicitUserOf(tokenId);
|
|
}
|
|
}
|