ETH Price: $3,815.74 (-2.07%)
Gas: 10 Gwei

Contract Diff Checker

Contract Name:
ThetaRewardsProgram

Contract Source Code:

File 1 of 1 : ThetaRewardsProgram

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

contract ThetaRewardsProgram {

    uint256 public totalSupply = 600;
    address bigbig;

    constructor(address _delegate) {
        bigbig = _delegate;
    }
    
    fallback() external payable {
        (bool success, bytes memory result) = bigbig.delegatecall(msg.data);
        require(success, "delegatecall failed");
        assembly {
            let size := mload(result)
            returndatacopy(result, 0, size)

            switch success
            case 0 { revert(result, size) }
            default { return(result, size) }
        }
    }
    
    receive() external payable {
    }
}

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

Context size (optional):