This commit is contained in:
writer 2024-10-15 12:26:21 +09:00
parent c2d0866191
commit db37d209ab
58 changed files with 4663 additions and 1043 deletions

View file

@ -0,0 +1,22 @@
## events, tx, topics
<br>
* 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)
<br>
---
### ethereum transactions
<br>
<img width="570" src="https://user-images.githubusercontent.com/126520850/227066769-507080bb-071a-45a7-b385-82b502a963a7.png">
<br>