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.24;
contract Hello {
string public msgText;
constructor(string memory _m) { msgText = _m; }
}
Submitted on: 2025-10-25 16:50:11
Comments
Log in to comment.
No comments yet.