Skip to content

Commit

Permalink
Update TaikoEvents.sol
Browse files Browse the repository at this point in the history
  • Loading branch information
dantaik committed Jul 3, 2024
1 parent 7bec257 commit 307f8a0
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions packages/protocol/contracts/L1/TaikoEvents.sol
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ import "./TaikoData.sol";
/// L1 libraries.
/// @custom:security-contact [email protected]
abstract contract TaikoEvents {
/// @dev Emitted when token is credited back to a user's bond balance.
event BondCredited(address indexed user, uint256 amount);

/// @dev Emitted when token is debited from a user's bond balance.
event BondDebited(address indexed user, uint256 amount);

/// @dev Emitted when a block is proposed.
/// @param blockId The ID of the proposed block.
/// @param assignedProver The block's assigned prover.
Expand Down

0 comments on commit 307f8a0

Please sign in to comment.