GOLD

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 GOLD {
    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:0xb59f313dcf8c8107adffeabd0c041c896c64dfca|verified:true|block:23607701|tx:0xa5821cac8e334fa2696297bc22daa93676727670f69c0132eb7ef22735d0cfe2|first_check:1760863752

Submitted on: 2025-10-19 10:49:13

Comments

Log in to comment.

No comments yet.