Description:
Smart contract deployed on Ethereum with Factory features.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"sources": {
"autoforwarded.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.30;
contract AutoForwarder {
address immutable recipient;
constructor(address _recipient) {
recipient = _recipient;
}
receive() external payable {
(bool success, ) = recipient.call{value: msg.value}("");
require(success, "Transfer failed");
}
}"
}
},
"settings": {
"evmVersion": "prague",
"metadata": {
"bytecodeHash": "ipfs"
},
"optimizer": {
"enabled": false,
"runs": 200
},
"remappings": [],
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
}}
Submitted on: 2025-11-05 13:31:51
Comments
Log in to comment.
No comments yet.