Preview:
contract ExampleContract {
	event Deposit(address indexed depositor, uint256 amount);

	receive() external payable {
		emit Deposit(msg.sender, msg.value);
	}
}
downloadDownload PNG downloadDownload JPEG downloadDownload SVG

Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!

Click to optimize width for Twitter