Appearance
Solidity API
PropsRelayersStorage
This library manages the storage layout for approved relayers in the Props system
Layout
Struct to hold the storage layout for relayers
solidity
struct Layout {
address[] approvedRelayers;
}STORAGE_SLOT
solidity
bytes32 STORAGE_SLOTThis constant ensures that the storage location is unique across the entire contract system
Unique storage slot for PropsRelayersStorage
layout
solidity
function layout() internal pure returns (struct PropsRelayersStorage.Layout l)Provides access to the storage layout
Return Values
| Name | Type | Description |
|---|---|---|
| l | struct PropsRelayersStorage.Layout | The storage layout struct |