12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485 |
- // SPDX-License-Identifier: MIT
- pragma solidity ^0.8.0;
- import "../beacon/IBeacon.sol";
- import "../../utils/Address.sol";
- import "../../utils/StorageSlot.sol";
- /**
- * @dev This abstract contract provides setters and getters for the different
- * https://eips.ethereum.org/EIPS/eip-1967[EIP1967] storage slots.
- */
- abstract contract ERC1967Storage {
- /**
- * @dev Storage slot with the address of the current implementation.
- * This is the keccak-256 hash of "eip1967.proxy.implementation" subtracted by 1, and is
- * validated in the constructor.
- */
- bytes32 internal constant _IMPLEMENTATION_SLOT = 0x360894a13ba1a3210667c828492db98dca3e2076cc3735a920a3ca505d382bbc;
- /**
- * @dev Returns the current implementation address.
- */
- function _getImplementation() internal view returns (address) {
- return StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value;
- }
- /**
- * @dev Stores a new address in the EIP1967 implementation slot.
- */
- function _setImplementation(address newImplementation) internal {
- require(Address.isContract(newImplementation), "ERC1967: new implementation is not a contract");
- StorageSlot.getAddressSlot(_IMPLEMENTATION_SLOT).value = newImplementation;
- }
- /**
- * @dev The storage slot of the UpgradeableBeacon contract which defines the implementation for this proxy.
- * This is bytes32(uint256(keccak256('eip1967.proxy.beacon')) - 1)) and is validated in the constructor.
- */
- bytes32 internal constant _BEACON_SLOT = 0xa3f0ad74e5423aebfd80d3ef4346578335a9a72aeaee59ff6cb3582b35133d50;
- /**
- * @dev Returns the current beacon.
- */
- function _getBeacon() internal view returns (address) {
- return StorageSlot.getAddressSlot(_BEACON_SLOT).value;
- }
- /**
- * @dev Stores a new beacon in the EIP1967 beacon slot.
- */
- function _setBeacon(address newBeacon) internal {
- require(
- Address.isContract(newBeacon),
- "ERC1967: new beacon is not a contract"
- );
- require(
- Address.isContract(IBeacon(newBeacon).implementation()),
- "ERC1967: beacon implementation is not a contract"
- );
- StorageSlot.getAddressSlot(_BEACON_SLOT).value = newBeacon;
- }
- /**
- * @dev Storage slot with the admin of the contract.
- * This is the keccak-256 hash of "eip1967.proxy.admin" subtracted by 1, and is
- * validated in the constructor.
- */
- bytes32 internal constant _ADMIN_SLOT = 0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103;
- /**
- * @dev Returns the current admin.
- */
- function _getAdmin() internal view returns (address) {
- return StorageSlot.getAddressSlot(_ADMIN_SLOT).value;
- }
- /**
- * @dev Stores a new address in the EIP1967 admin slot.
- */
- function _setAdmin(address newAdmin) internal {
- require(newAdmin != address(0), "ERC1967: new admin is the zero address");
- StorageSlot.getAddressSlot(_ADMIN_SLOT).value = newAdmin;
- }
- }
|