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.
18 lines
462 B
18 lines
462 B
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity >=0.6.0 <0.8.0;
|
|
|
|
import "./IERC1155Receiver.sol";
|
|
import "../../introspection/ERC165.sol";
|
|
|
|
/**
|
|
* @dev _Available since v3.1._
|
|
*/
|
|
abstract contract ERC1155Receiver is ERC165, IERC1155Receiver {
|
|
constructor() internal {
|
|
_registerInterface(
|
|
ERC1155Receiver(address(0)).onERC1155Received.selector ^
|
|
ERC1155Receiver(address(0)).onERC1155BatchReceived.selector
|
|
);
|
|
}
|
|
}
|
|
|