Add `_initializableStorageSlot`

pull/5337/head
Ernesto García 2 months ago
parent 653963beb2
commit f89da0f4c5
  1. 5
      .changeset/fast-coats-try.md
  2. 12
      contracts/proxy/utils/Initializable.sol

@ -0,0 +1,5 @@
---
'openzeppelin-solidity': minor
---
`Initializable`: Add `_initializableStorageSlot` function that returns a pointer to the storage struct. The function allows to customize with a custom storage slot with an `override`.

@ -216,13 +216,23 @@ abstract contract Initializable {
return _getInitializableStorage()._initializing;
}
/**
* @dev Pointer to storage slot. Allows to override it with a custom storage location.
*
* NOTE: Consider following EIP-7201 formula to derive storage locations.
*/
function _initializableStorageSlot() internal pure virtual returns (bytes32) {
return INITIALIZABLE_STORAGE;
}
/**
* @dev Returns a pointer to the storage namespace.
*/
// solhint-disable-next-line var-name-mixedcase
function _getInitializableStorage() private pure returns (InitializableStorage storage $) {
bytes32 slot = _initializableStorageSlot();
assembly {
$.slot := INITIALIZABLE_STORAGE
$.slot := slot
}
}
}

Loading…
Cancel
Save