Abstract Testnet

Contract Diff Checker

Contract Name:
Test

Contract Source Code:

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

contract Test {
    string public test;

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

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

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

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

Context size (optional):