Files
openzeppelin-contracts/contracts/mocks/ERC721VotesMock.sol
2022-09-17 18:03:03 +02:00

26 lines
632 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
import "../token/ERC721/extensions/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;
}
}