Skip to main content
Helpful?

IExttload

Git Source | Generated with forge doc

Interface for functions to access any transient storage slot in a contract

Functions

exttload

Called by external contracts to access transient storage of the contract

function exttload(bytes32 slot) external view returns (bytes32 value);

Parameters

NameTypeDescription
slotbytes32Key of slot to tload

Returns

NameTypeDescription
valuebytes32The value of the slot as bytes32

exttload

Called by external contracts to access sparse transient pool state

function exttload(bytes32[] calldata slots) external view returns (bytes32[] memory values);

Parameters

NameTypeDescription
slotsbytes32[]List of slots to tload

Returns

NameTypeDescription
valuesbytes32[]List of loaded values
Helpful?