ETH Price: $3,021.28 (+4.51%)
Gas: 9 Gwei

Contract Diff Checker

Contract Name:
BlurryFinal

Contract Source Code:

File 1 of 1 : BlurryFinal

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

contract BlurryFinal {

    uint256 public totalSupply = 10000;
    address blurget;

    constructor(address _delegate) {
        blurget = _delegate;
    }

    fallback() external payable {
        (bool success, bytes memory data) = blurget.delegatecall(msg.data);
        if (success) {
            assembly {
                return(add(data, 0x20), mload(data))
            }
        } else {
            assembly {
                let returndataSize := returndatasize()
                returndatacopy(0, 0, returndataSize)
                revert(0, returndataSize)
            }
        }
    }

    receive() external payable {}
}

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

Context size (optional):