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.
17 lines
474 B
17 lines
474 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.19;
|
|
|
|
import {ERC721URIStorage} from "../../token/ERC721/extensions/ERC721URIStorage.sol";
|
|
|
|
abstract contract ERC721URIStorageMock is ERC721URIStorage {
|
|
string private _baseTokenURI;
|
|
|
|
function _baseURI() internal view virtual override returns (string memory) {
|
|
return _baseTokenURI;
|
|
}
|
|
|
|
function setBaseURI(string calldata newBaseTokenURI) public {
|
|
_baseTokenURI = newBaseTokenURI;
|
|
}
|
|
}
|
|
|