-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path11_Events.sol
26 lines (23 loc) · 898 Bytes
/
11_Events.sol
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract EventsContract {
//for events, use camelcase
//events are like structs
//events are like notifications that are sent out and consumers listening to them will receive them
event NewTrade (
uint date,
address indexed sender,
address recipient,
uint amount
);
//indexed keyword allows consumers to filter events by that entry.
//this is more expensive to run since the network needs to build an index for these events
//you can add up to 3 indexed entries
function trade(address to, uint amount) external {
//triggering the event
//consumers listening to this event will get the message
emit NewTrade(block.timestamp, msg.sender, to, amount);
}
//past events cannot be read from the smart contract
//one-way-type communication
}