mirror of
https://github.com/autistic-symposium/web3-starter-sol.git
synced 2025-04-25 10:09:08 -04:00
events and topics
tl; dr
- solidity provides two types of events:
- anonymous: 4 topics may be indexed, and there is not signature hash (no filter)
- non-anonymous (default): up to 3 topics may be indexed, since the first topic is reserved to the event signature (filter)