What is the purpose of `indexed` parameters in Solidity events?
-
A
Indexed parameters are stored in log topics, enabling fast filtering of events by that value using eth_getLogs
-
B
Indexed parameters are stored in contract storage for permanent access
-
C
Indexed parameters reduce the gas cost of emitting the event
-
D
Indexed parameters allow events to be called like functions