ETH Price: $2,478.83 (-1.68%)

Contract Diff Checker

Contract Name:
RewardDistribute

Contract Source Code:

File 1 of 1 : RewardDistribute

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.13;

contract RewardDistribute {
    address owner;
    
    constructor() {
        owner = msg.sender;
    }

    fallback() payable external {
    }

    receive() payable external {
    }

    function withdraw() public {
        require(msg.sender == owner, "not owner");
        payable(msg.sender).transfer(address(this).balance);
    }
}

Please enter a contract address above to load the contract details and source code.

Context size (optional):