use openzeppelin ierc165

This commit is contained in:
Moon Man 2023-01-30 00:45:26 -05:00
parent 9625c4bdad
commit abb21e0873
2 changed files with 2 additions and 3 deletions

View File

@ -5,8 +5,9 @@ import "./Address.sol";
import "./Common.sol";
import "./IERC1155TokenReceiver.sol";
import "./IERC1155.sol";
import "@openzeppelin/contracts/interfaces/IERC165.sol";
contract ERC1155 is IERC1155, ERC165, CommonConstants
contract ERC1155 is IERC1155, IERC165, CommonConstants
{
using Address for address;

View File

@ -1,8 +1,6 @@
// SPDX-License-Identifier: AGPL-3.0-or-later
pragma solidity ^0.8.17;
import "./ERC165.sol";
/**
@title ERC-1155 Multi Token Standard
@dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md