LibNamespace
Functions
qualifyNamespace
Standard way to elevate a caller-provided state namespace to a universal
namespace that is disjoint from all other caller-provided namespaces.
Essentially just hashes the msg.sender
into the state namespace as-is.
This is deterministic such that the same combination of state namespace
and caller will produce the same fully qualified namespace, even across
multiple transactions/blocks.
function qualifyNamespace(StateNamespace stateNamespace, address sender)
internal
pure
returns (FullyQualifiedNamespace qualifiedNamespace);
Parameters
Name | Type | Description |
---|---|---|
stateNamespace | StateNamespace | The state namespace as specified by the caller. |
sender | address | The caller this namespace is bound to. |
Returns
Name | Type | Description |
---|---|---|
qualifiedNamespace | FullyQualifiedNamespace | A fully qualified namespace that cannot collide with any other state namespace specified by any other caller. |