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.
25 lines
638 B
25 lines
638 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity ^0.8.0;
|
|
|
|
import "../token/ERC721/extensions/draft-ERC721Votes.sol";
|
|
|
|
contract ERC721VotesMock is ERC721Votes {
|
|
constructor(string memory name, string memory symbol) ERC721(name, symbol) EIP712(name, "1") {}
|
|
|
|
function getTotalSupply() public view returns (uint256) {
|
|
return _getTotalSupply();
|
|
}
|
|
|
|
function mint(address account, uint256 tokenId) public {
|
|
_mint(account, tokenId);
|
|
}
|
|
|
|
function burn(uint256 tokenId) public {
|
|
_burn(tokenId);
|
|
}
|
|
|
|
function getChainId() external view returns (uint256) {
|
|
return block.chainid;
|
|
}
|
|
}
|
|
|