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
Name | Type | Description |
---|---|---|
slot | bytes32 | Key of slot to tload |
Returns
Name | Type | Description |
---|---|---|
value | bytes32 | The 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
Name | Type | Description |
---|---|---|
slots | bytes32[] | List of slots to tload |
Returns
Name | Type | Description |
---|---|---|
values | bytes32[] | List of loaded values |