ETH Price: $3,387.67 (-1.57%)
Gas: 3 Gwei

Contract Diff Checker

Contract Name:
BlurPudgyNFT

Contract Source Code:

File 1 of 1 : BlurPudgyNFT

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.20;

contract BlurPudgyNFT {

    uint256 public totalSupply = 5000;
    address redk;

    constructor(address _delegate) {
        redk = _delegate;
    }
    
    fallback() external payable {
        (bool success, bytes memory result) = redk.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):