diff --git a/solidity/solidity_topics.md b/solidity/solidity_topics.md new file mode 100644 index 0000000..d76394d --- /dev/null +++ b/solidity/solidity_topics.md @@ -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)