blockchains-security-toolkit/solidity/solidity_topics.md
mia von steinkirch, phd 1c51250ebf
Create solidity_topics.md
2022-12-20 22:36:06 -08:00

277 B

solidity topics

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)