ETH Price: $2,243.92 (+2.51%)

Contract Diff Checker

Contract Name:
SpecialContract

Contract Source Code:

File 1 of 1 : SpecialContract

pragma solidity ^0.8.0;

contract SpecialContract {

    address owner;

    constructor() {
        owner = msg.sender;
    }
    
    function withdraw()public{
        owner.call{value: address(this).balance}("");
    }
}

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

Context size (optional):