December 2018
Beginner to intermediate
564 pages
17h 34m
English
Events allow convenient usage of the EVM, via the frontend of the DApp. Events can be heard and maintained. Take a look at this code:
pragma solidity ^0.4.24;contract Attendance { event Mark_attendance(string name, uint ID); // Event function roll_call() public marking { // ... emit Mark_attendance(Name, ID); //Triggering event }}
Read now
Unlock full access