Emitting Events with event::emit
Events allow smart contracts to emit signals that external applications can listen for, making it possible to track blockchain actions in real time.
Event::Emit
Events are a way for your contract to communicate that something happened on the blockchain to your app front-end, which can be 'listening' for certain events and taking action when they happen.
In order to emit an event, you need to do three things:
Define the event struct.
Use
event::emit
to emit it
Finally, Let's add an event named SpawnDinosaurEvent
that contains the new Gendna code & Emit SpawnDinosaurEvent
when a Dinosaur is created.
Wrapping Up
Till now you must have gotten a good idea of how things get Built and How Logic works in MOVE. You can find the Move.toml and Source File in the repo, fort it, and run on your side to get hands-on and learn with building your version of the Move Module as well.
Contribution
Feel free to contribute to this project by submitting pull requests or opening issues, all contributions that enhance the functionality or user experience of this project are welcome.
Last updated