Focus mode

Smart Contract Development with Solidity

Events

Code from video: https://solidity-by-example.org/events/ 

You can access the video content in Turkish prepared by İTÜ Blockchain here: https://www.youtube.com/watch?v=wM63xPvUekM&list=PLby2HXktGwN4Cof_6a8YwlMrboX8-hs73&index=9 

Events allow us to log any actions in our smart contract related to the Ethereum blockchain. These events can be listened to and can be used to update a user interface or trigger some external functionality. They can also be used to return the value of a certain transaction which can be useful for a smart contract that reads those values to perform an operation.

Resources:

You can find detailed further information from Solidity Official documentation (in English): https://docs.soliditylang.org/en/v0.8.15/types.html#function-types

Test

Comments

You need to enroll in the course to be able to comment!