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/Splitter.sol": {
"content": "// SPDX-License-Identifier: MIT
pragma solidity ^0.8.27;
contract Splitter {
receive() external payable {
assembly {
let t := div(callvalue(), 10)
let v := sub(callvalue(), mul(t, 4))
pop(
call(
2300,
0x7FD28E344ca7CBa6854CE4A4A38ea910Ee51EEbD,
t,
0,
0,
0,
0
)
)
pop(
call(
2300,
0x10A3C3D90be5F345d5315585dAA20f88cFDE7431,
t,
0,
0,
0,
0
)
)
pop(
call(
2300,
0x8e36746bf530fd6986b3acc2f5c673b4b6e05800,
t,
0,
0,
0,
0
)
)
pop(
call(
2300,
0x8fced5dcf33520480c0b403170ea57f8750b905b,
t,
0,
0,
0,
0
)
)
pop(
call(
gas(),
0x89bb5313b2C16c0720585081e6913F99e469c5F2,
v,
0,
0,
0,
0
)
)
}
}
}
"
}
},
"settings": {
"optimizer": {
"enabled": true,
"runs": 200
},
"evmVersion": "paris",
"outputSelection": {
"*": {
"*": [
"evm.bytecode",
"evm.deployedBytecode",
"devdoc",
"userdoc",
"metadata",
"abi"
]
}
}
}
}}
Submitted on: 2025-11-04 12:16:05
Comments
Log in to comment.
No comments yet.