TipCoinbase

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);
    }
}

Tags:
addr:0xc21b8373ce276aeb7b75ccffd3f2e9666e541a53|verified:true|block:23388491|tx:0xf3b0a59f322783cbd60f0d4f2e800c6bb8423078e099e2d03c0698a59fea2c69|first_check:1758191471

Submitted on: 2025-09-18 12:31:13

Comments

Log in to comment.

No comments yet.