Abstract Testnet

Contract Diff Checker

Contract Name:
Test

Contract Source Code:

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.28;

contract Test {
    string public test;

    function sayHello1() public pure virtual returns (string memory) {
        return "Hello, World1!";
    }

    function sayHello2() public pure virtual returns (string memory) {
        return "Hello, World2!";
    }

    constructor(string memory _test) {
        test = _test;
    }
}

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

Context size (optional):