Description:
Smart contract deployed on Ethereum with Factory features.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"sources": {
"HelloBase.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract HelloBase {
string public message = "Hello Base!";
function setMessage(string memory newMessage) public {
message = newMessage;
}
}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}
}}
Submitted on: 2025-11-04 12:33:21
Comments
Log in to comment.
No comments yet.