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:0x0ccd832adc317789ad34cc76f8d0da492b6edd93|verified:true|block:23609099|tx:0x13e50d0df06e6bc7d0d44bb0227e0d68e33f7d9597064d3565f559d9930f1757|first_check:1760867338

Submitted on: 2025-10-19 11:48:59

Comments

Log in to comment.

No comments yet.