Skip to content

Instantly share code, notes, and snippets.

@mingderwang
Created December 7, 2023 15:10
Show Gist options
  • Save mingderwang/1f36cccb240fa255997a228d50801c61 to your computer and use it in GitHub Desktop.
Save mingderwang/1f36cccb240fa255997a228d50801c61 to your computer and use it in GitHub Desktop.
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.7;
contract CountEmitLog {
event WantsToCount(address indexed msgSender);
constructor() {}
function emitCountLog() public {
emit WantsToCount(msg.sender);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment