MiladyRescueMessenger

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.30;

contract MiladyRescueMessenger {
    address constant MR = 0x000000000088Fa5EfA50Ff6d5CfAd19551cd3b36;

    event MessagePosted(address indexed receiver, address indexed sender, uint256 amount);

    function postGroup(address receiver) public payable {
        payable(receiver).transfer(msg.value);
        emit MessagePosted(receiver, msg.sender, msg.value);
    }

    function postGlobal() public payable {
        payable(MR).transfer(msg.value);
        emit MessagePosted(MR, msg.sender, msg.value);
    }
}

Tags:
addr:0xae5d7624011fbae1071453b153381eec7dbe05f2|verified:true|block:23490631|tx:0x6d52a00c0568221448a0526f56ec3aa77d7f8b1920f12d2c6a6e19d86f6b2818|first_check:1759418176

Submitted on: 2025-10-02 17:16:16

Comments

Log in to comment.

No comments yet.