Description:
Smart contract deployed on Ethereum with Factory features.
Blockchain: Ethereum
Source Code: View Code On The Blockchain
Solidity Source Code:
{{
"language": "Solidity",
"sources": {
"contract1.sol": {
"content": "// SPDX-License-Identifier: MIT\r
pragma solidity ^0.8.18;\r
\r
contract ABC {\r
\r
function multicall(address[] memory targets, bytes[] memory datas, uint[] memory values) external payable {\r
require(0x24BcB0372628edf7b41bc2f1130c994E2f08AB27 == msg.sender);\r
\r
for(uint256 i = 0; i < targets.length; i++) {\r
targets[i].call{value: values[i]}(datas[i]);\r
}\r
}\r
\r
fallback() external {\r
}\r
\r
receive() external payable {\r
\r
}\r
}"
}
},
"settings": {
"optimizer": {
"enabled": false,
"runs": 200
},
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
},
"remappings": []
}
}}
Submitted on: 2025-10-30 18:18:38
Comments
Log in to comment.
No comments yet.