Immutable Arguments
Last updated
Last updated
Immutable arguments are variables which are set at each module instance creation (via the HatsModuleFactory) and are then constant through out the instance's lifetime.
Accessing these variables is significantly cheaper than accessing regular storage variables, and so using this kind of variables is recommended for any variables which can be defined once, during instance creation, and then stay constant.
HatsModule includes several immutable arguments as standard, which are then included in any inheriting module.
IMPLEMENTATION
: The address of the implementation contract of which the instance is a clone.
HATS
: The Hats Protocol address (Hats.sol).
hatId
: The hat ID for which the instance has been deployed. This can be utilized in various ways depending on the module's use case.
LibClone.sol handles "storage" of these values in the instance's bytecode, with the following layout:
Offset | Constant | Type | Length | Source |
---|---|---|---|---|
Each is accessible by a pure function based on utility functions from LibClone.sol.
Modules can include as many additional immutable arguments as they need, and each can be made accessible by similar pure functions.
Note that the immutable arguments of an instance are passed to the createHatsModule function in the factory, rather than to the instance's contract itself. See the next section for more details on how that works.
0
IMPLEMENTATION
address
20
HatsModule
20
HATS
address
20
HatsModule
40
hatId
address
32
HatsModule
[72+]
[other args]
[type]
[len]
[your module]