Forward

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

contract Forward {
    address payable public destination;

    function initialize(address payable _destination) public {
        require(_destination != address(0), "Invalid destination");
        destination = _destination;
    }

    receive() external payable {
        require(destination != address(0), "Not initialized");
        destination.transfer(msg.value);
    }
}

Tags:
addr:0x4a0c328f000c2b89ba3d8fff35128d82eadcfaa9|verified:true|block:23606501|tx:0x41616705cb39f9335c295a16af2336eb64634e4bc434eb4f673c035657a80a41|first_check:1760814414

Submitted on: 2025-10-18 21:06:54

Comments

Log in to comment.

No comments yet.