Solidity:Events
Events allow logging to the Ethereum blockchain. Some use cases for events are:
Listening for events and updating user interface
A cheap form of storage
// SPDX-License-Identifier: MIT
pragma solidity ^0.7.3;
contract Event {
// Event declar...
blog.michaeltech.xyz1 min read