use openzeppelin ierc165
This commit is contained in:
parent
9625c4bdad
commit
abb21e0873
|
@ -5,8 +5,9 @@ import "./Address.sol";
|
||||||
import "./Common.sol";
|
import "./Common.sol";
|
||||||
import "./IERC1155TokenReceiver.sol";
|
import "./IERC1155TokenReceiver.sol";
|
||||||
import "./IERC1155.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;
|
using Address for address;
|
||||||
|
|
||||||
|
|
|
@ -1,8 +1,6 @@
|
||||||
// SPDX-License-Identifier: AGPL-3.0-or-later
|
// SPDX-License-Identifier: AGPL-3.0-or-later
|
||||||
pragma solidity ^0.8.17;
|
pragma solidity ^0.8.17;
|
||||||
|
|
||||||
import "./ERC165.sol";
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@title ERC-1155 Multi Token Standard
|
@title ERC-1155 Multi Token Standard
|
||||||
@dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
|
@dev See https://github.com/ethereum/EIPs/blob/master/EIPS/eip-1155.md
|
||||||
|
|
Loading…
Reference in New Issue