becrypto/contracts/interfaces/IBEERC721.sol
2022-08-08 14:39:54 +08:00

10 lines
213 B
Solidity

// SPDX-License-Identifier: MIT
pragma solidity 0.8.10;
import "@openzeppelin/contracts/token/ERC721/IERC721.sol";
interface IBEERC721 is IERC721 {
function burn(address owner, uint256 tokenId) external;
}