You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
974 B
Solidity
37 lines
974 B
Solidity
2 years ago
|
// SPDX-License-Identifier: MIT
|
||
|
// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC1155/utils/ERC1155Holder.sol)
|
||
|
|
||
|
pragma solidity ^0.8.0;
|
||
|
|
||
|
import "./ERC1155Receiver.sol";
|
||
|
|
||
|
/**
|
||
|
* Simple implementation of `ERC1155Receiver` that will allow a contract to hold ERC1155 tokens.
|
||
|
*
|
||
|
* IMPORTANT: When inheriting this contract, you must include a way to use the received tokens, otherwise they will be
|
||
|
* stuck.
|
||
|
*
|
||
|
* @dev _Available since v3.1._
|
||
|
*/
|
||
|
contract ERC1155Holder is ERC1155Receiver {
|
||
|
function onERC1155Received(
|
||
|
address,
|
||
|
address,
|
||
|
uint256,
|
||
|
uint256,
|
||
|
bytes memory
|
||
|
) public virtual override returns (bytes4) {
|
||
|
return this.onERC1155Received.selector;
|
||
|
}
|
||
|
|
||
|
function onERC1155BatchReceived(
|
||
|
address,
|
||
|
address,
|
||
|
uint256[] memory,
|
||
|
uint256[] memory,
|
||
|
bytes memory
|
||
|
) public virtual override returns (bytes4) {
|
||
|
return this.onERC1155BatchReceived.selector;
|
||
|
}
|
||
|
}
|