ETH Price: $2,246.10 (-4.01%)
    /

    Contract Diff Checker

    Contract Name:
    Counter

    Contract Source Code:

    // SPDX-License-Identifier: MIT
    pragma solidity ^0.8.24;
    
    contract Counter {
        uint256 public number;
    
        function setNumber(uint256 newNumber) public {
            number = newNumber;
        }
    
        function increment() public {
            number++;
        }
    }

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

    Context size (optional):