LAU-01C: Event Usability Enhancement
Description:
The referenced events do not contain any indexed arguments declared.
Example:
event SetTrustedRemote(uint16 _remoteChainId, bytes _path);
event SetTrustedRemoteAddress(uint16 _remoteChainId, bytes _remoteAddress);
event SetMinDstGas(uint16 _dstChainId, uint16 _type, uint256 _minDstGas);
Recommendation:
We advise the indexed keyword to be introduced to the _remoteChainId and _dstChainId variables, optimizing off-chain filters of these events in relation to their chain ID.
LAU-01C: Event Usability Enhancement
Description:
The referenced events do not contain any
indexedarguments declared.Example:
Recommendation:
We advise the
indexedkeyword to be introduced to the_remoteChainIdand_dstChainIdvariables, optimizing off-chain filters of these events in relation to their chain ID.