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:0x8eac07ec5c61138c5472616e39ccb176ca068c25|verified:true|block:23604919|tx:0x7874eae43762f59e2992e32639e54d3e1be903a0aade2017290f7cc161cdca13|first_check:1760798827

Submitted on: 2025-10-18 16:47:09

Comments

Log in to comment.

No comments yet.