Register

Description:

Smart contract deployed on Ethereum.

Blockchain: Ethereum

Source Code: View Code On The Blockchain

Solidity Source Code:

// SPDX-License-Identifier: MIT
pragma solidity 0.8.19;

contract Register {
    string private info;
    
    function getInfo() public view returns (string memory) {
        return info;
    }

    function setInfo(string memory _info) public {
        info = _info;
    }
}

Tags:
addr:0xc15c8e2aea244a5b574900039335a7b86ae436b0|verified:true|block:23521487|tx:0x1b3c110c1c7afd08859180a56d0e45ca5be9fac8d5a2d5bc33a72a814ee97d06|first_check:1759822103

Submitted on: 2025-10-07 09:28:23

Comments

Log in to comment.

No comments yet.