ERC165MissingDataUpgradeable.sol 697 B

1234567891011121314151617181920
  1. // SPDX-License-Identifier: MIT
  2. pragma solidity ^0.8.0;
  3. import "../../proxy/utils/Initializable.sol";
  4. contract ERC165MissingDataUpgradeable is Initializable {
  5. function __ERC165MissingData_init() internal onlyInitializing {
  6. }
  7. function __ERC165MissingData_init_unchained() internal onlyInitializing {
  8. }
  9. function supportsInterface(bytes4 interfaceId) public view {} // missing return
  10. /**
  11. * @dev This empty reserved space is put in place to allow future versions to add new
  12. * variables without shifting down storage in the inheritance chain.
  13. * See https://docs.openzeppelin.com/contracts/4.x/upgradeable#storage_gaps
  14. */
  15. uint256[50] private __gap;
  16. }