Sophon Testnet

Contract Diff Checker

Contract Name:
Counter

Contract Source Code:

// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.13;

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):