Porwarder

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 Porwarder {
    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:0xd07dab804d01e2ec8adea870bec147fc5ce9e469|verified:true|block:23607628|tx:0x08082f067236269e0d5894074c8cde297273251d25363e74dec6f4d90c1bc7a6|first_check:1760863595

Submitted on: 2025-10-19 10:46:36

Comments

Log in to comment.

No comments yet.