ERC165NotSupportedUpgradeable.sol 610 B

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