Library defining the storage layout for the Whitelist submodule.
Note: storage-location: erc7201:aria-protocol.AriaIPRWAVault.Whitelist
bytes32 internal constant _WHITELIST_STORAGE_LOCATION =
0x7988169b8d12cfaa4bde80f77a174263686c25bbc59bde731dcc4b288ad38f00;Returns the storage struct of the Whitelist module.
function load() internal pure returns (WhitelistLayout storage $);Storage structure for the Whitelist submodule.
Properties
merkleRoot
bytes32
The Merkle root of the whitelist.
struct WhitelistLayout {
bytes32 merkleRoot;
}