Smart Contracts emit event logs when certain predefined actions are completed.
Transfer
event, which is emitted every time a token transfer occurs. The event log contains the sender, the recipient and the amount of tokens transferred.
topic0
, topic1
, topic2
, topic3
and data
in the logs
table.
emit
in the source code of the smart contract.
We will decode all event logs for smart contracts into tables named accordingly to this schema:
[projectname_blockchain].[contractName]_evt_[eventName]