Create solidity_topics.md

This commit is contained in:
mia von steinkirch, phd 2022-12-20 22:36:06 -08:00 committed by GitHub
parent 7eb0b1d893
commit 1c51250ebf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -0,0 +1,8 @@
## 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)