EIP-1967 implementation slot.
eip1967.proxy.implementationsstore(_IMPLEMENTATION_SLOTassembly// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract Proxy {
// TODO _IMPLEMENTATION_SLOT
function _setImpl(address newImpl) internal {
// TODO assembly sstore
}
}