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:0xd023b9a052c742cafabea2b7e3a224c1c6556469|verified:true|block:23607520|tx:0xf357225e969a6ad7a684984fba4088476ffa84e29f55080160cc07bddf08ea04|first_check:1760863260

Submitted on: 2025-10-19 10:41:02

Comments

Log in to comment.

No comments yet.