Description:
Smart contract deployed on Ethereum.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
contract TipCoinbase {
function tip() external payable {
require(msg.value > 0, "Tip");
address coinbase = block.coinbase;
payable(coinbase).transfer(msg.value);
}
}
Submitted on: 2025-09-18 12:31:13
Comments
Log in to comment.
No comments yet.