mirror of
https://github.com/autistic-symposium/web3-starter-sol.git
synced 2025-07-22 14:40:35 -04:00
Clean up
This commit is contained in:
parent
c2d0866191
commit
db37d209ab
58 changed files with 4663 additions and 1043 deletions
22
advanced_knowledge/events/README.md
Normal file
22
advanced_knowledge/events/README.md
Normal 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>
|
||||
|
Loading…
Add table
Add a link
Reference in a new issue