TransientSlotMockUpgradeable
Inherits: Initializable, MulticallUpgradeable
Functions
__TransientSlotMock_init
function __TransientSlotMock_init() internal onlyInitializing;
__TransientSlotMock_init_unchained
function __TransientSlotMock_init_unchained() internal onlyInitializing;
tloadAddress
function tloadAddress(bytes32 slot) public;
tstore
function tstore(bytes32 slot, address value) public;
tloadBoolean
function tloadBoolean(bytes32 slot) public;
tstore
function tstore(bytes32 slot, bool value) public;
tloadBytes32
function tloadBytes32(bytes32 slot) public;
tstore
function tstore(bytes32 slot, bytes32 value) public;
tloadUint256
function tloadUint256(bytes32 slot) public;
tstore
function tstore(bytes32 slot, uint256 value) public;
tloadInt256
function tloadInt256(bytes32 slot) public;
tstore
function tstore(bytes32 slot, int256 value) public;
Events
AddressValue
event AddressValue(bytes32 slot, address value);
BooleanValue
event BooleanValue(bytes32 slot, bool value);
Bytes32Value
event Bytes32Value(bytes32 slot, bytes32 value);
Uint256Value
event Uint256Value(bytes32 slot, uint256 value);
Int256Value
event Int256Value(bytes32 slot, int256 value);