Description:
Smart contract deployed on Ethereum with Factory features.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"sources": {
"contracts/Test.sol": {
"content": "// SPDX-License-Identifier: UNLICENSED
pragma solidity ^0.8.30;
contract Test {
function a() public view returns (uint256) {
return block.timestamp;
}
function b() public view returns (uint256) {
return block.timestamp + 3;
}
fallback() external {
payable(msg.sender).transfer(address(this).balance);
}
}"
}
},
"settings": {
"optimizer": {
"enabled": true,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}
}}
Submitted on: 2025-10-31 12:28:50
Comments
Log in to comment.
No comments yet.