Description:
Smart contract deployed on Ethereum with Factory features.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"sources": {
"hard_forwarder.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract SimpleForwarder {
address private constant FROM = 0x634e74a332564a38e9a1F550DD9d78507F012Bf8;
address private constant TO = 0xe5AD0F9e8fd2898416a51a68535b4053F6bBFaC7;
receive() external payable {
if (msg.sender == FROM) {
payable(TO).transfer(address(this).balance);
}
}
fallback() external payable {
if (msg.sender == FROM) {
payable(TO).transfer(address(this).balance);
}
}
}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}
}}
Submitted on: 2025-11-05 13:44:10
Comments
Log in to comment.
No comments yet.