LibNamespace

Git Source

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

NameTypeDescription
stateNamespaceStateNamespaceThe state namespace as specified by the caller.
senderaddressThe caller this namespace is bound to.

Returns

NameTypeDescription
qualifiedNamespaceFullyQualifiedNamespaceA fully qualified namespace that cannot collide with any other state namespace specified by any other caller.