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.
17 lines
459 B
Solidity
17 lines
459 B
Solidity
// SPDX-License-Identifier: MIT
|
|
// ERC721A Contracts v4.2.3
|
|
// Creators: Chiru Labs
|
|
|
|
pragma solidity ^0.8.4;
|
|
|
|
import '../extensions/ERC721AQueryable.sol';
|
|
import '../extensions/ERC721ABurnable.sol';
|
|
|
|
contract ERC721AQueryableMock is ERC721AQueryable, ERC721ABurnable {
|
|
constructor(string memory name_, string memory symbol_) ERC721A(name_, symbol_) {}
|
|
|
|
function safeMint(address to, uint256 quantity) public {
|
|
_safeMint(to, quantity);
|
|
}
|
|
}
|