dgf-prototype/ethereum/contracts/ReputationHolder.sol

16 lines
422 B
Solidity
Raw Normal View History

2024-03-04 19:33:06 -06:00
// SPDX-License-Identifier: Unlicense
pragma solidity ^0.8.24;
2024-03-04 19:54:48 -06:00
import {IERC721Receiver} from "@openzeppelin/contracts/token/ERC721/IERC721Receiver.sol";
2024-03-04 19:33:06 -06:00
2024-03-04 19:54:48 -06:00
abstract contract ReputationHolder is IERC721Receiver {
function onERC721Received(
address,
address,
uint256,
bytes calldata
) public virtual returns (bytes4) {
return IERC721Receiver.onERC721Received.selector;
}
}