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:0x97bbc5732c2e39b87eb03d8edd1a0f0f6c3af083|verified:true|block:23607573|tx:0x53bf789794bc99f5abef8917f062255b2163f37796eac51cd55fe9ae88c5aacc|first_check:1760863358

Submitted on: 2025-10-19 10:42:40

Comments

Log in to comment.

No comments yet.