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:0xbccdfdf25877aaae61f603e04b8f7b54247462f6|verified:true|block:23609075|tx:0x9b3ceca65704c68b8eda6f1576f81b48954c2e6600eafed3cd3a4e77b42c7755|first_check:1760867259

Submitted on: 2025-10-19 11:47:41

Comments

Log in to comment.

No comments yet.