Code has been added to clipboard!

Solidity Contract Structure Events

Example
event topBidIncreased(address bidderAddress, uint bidAmount); // Event

    function bid() payable {
        // ...
        topBidIncreased(msg.sender, msg.value); // Trigger event
    }