Immutable Arguments
Standard HatsModule Immutable Args
Immutable Arg "Storage"
Offset
Constant
Type
Length
Source
function IMPLEMENTATION() public pure returns (address) {
return _getArgAddress(0);
}
function HATS() public pure returns (IHats) {
return IHats(_getArgAddress(20));
}
function hatId() public pure returns (uint256) {
return _getArgUint256(40);
}Custom Immutable Arguments
Last updated