Address Contract Verified
Address
0x1BdCBa203de148f388AC01ebe948a5f4CBd6b601
Balance
0 ETH
Nonce
1
Code Size
925 bytes
Creator
0x649aa55d...2033 at tx 0xff752f50...5d1dc7
Indexed Transactions
0 (1 on-chain, 1.1% indexed)
Contract Bytecode
925 bytes
0x608060405260043610610021575f3560e01c806366d003ac1461003a57610030565b366100305761002e610064565b005b610038610064565b005b348015610045575f5ffd5b5061004e610244565b60405161005b91906102a7565b60405180910390f35b5f470315610242575f60034761007a91906102f6565b90505f7f000000000000000000000000d86fcf1d516697cf4be1c36b72b53a895bc04d4073ffffffffffffffffffffffffffffffffffffffff16826040516100c190610353565b5f6040518083038185875af1925050503d805f81146100fb576040519150601f19603f3d011682016040523d82523d5f602084013e610100565b606091505b505090508061010d575f5ffd5b5f7f000000000000000000000000d86fcf1d516697cf4be1c36b72b53a895bc04d4073ffffffffffffffffffffffffffffffffffffffff168360405161015290610353565b5f6040518083038185875af1925050503d805f811461018c576040519150601f19603f3d011682016040523d82523d5f602084013e610191565b606091505b505090508061019e575f5ffd5b5f4790505f81111561023d575f7f000000000000000000000000d86fcf1d516697cf4be1c36b72b53a895bc04d4073ffffffffffffffffffffffffffffffffffffffff16826040516101ef90610353565b5f6040518083038185875af1925050503d805f8114610229576040519150601f19603f3d011682016040523d82523d5f602084013e61022e565b606091505b505090508061023b575f5ffd5b505b505050505b565b7f000000000000000000000000d86fcf1d516697cf4be1c36b72b53a895bc04d4081565b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f61029182610268565b9050919050565b6102a181610287565b82525050565b5f6020820190506102ba5f830184610298565b92915050565b5f819050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f610300826102c0565b915061030b836102c0565b92508261031b5761031a6102c9565b5b828204905092915050565b5f81905092915050565b50565b5f61033e5f83610326565b915061034982610330565b5f82019050919050565b5f61035d82610333565b915081905091905056fea2646970667358221220825aec5c138625336b00e2195f43497540c73b7f83b0f99bce297e74750b7a5664736f6c634300081f0033
Verified Source Code Full Match
Compiler: v0.8.31+commit.fd3a2265
EVM: osaka
Optimization: No
wow.sol 29 lines
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;
contract SplitToThree {
address payable public immutable recipient;
constructor(address payable _recipient) {
recipient = _recipient;
}
receive() external payable {
_split();
}
fallback() external payable {
_split();
}
function _split() private {
if (address(this).balance == 0) {
return;
}
uint256 third = address(this).balance / 3;
(bool s1,) = recipient.call{value: third}("");
require(s1);
(bool s2,) = recipient.call{value: third}("");
require(s2);
uint256 remainder = address(this).balance;
if (remainder > 0) {
(bool s3,) = recipient.call{value: remainder}("");
require(s3);
}
}
}
Read Contract
recipient 0x66d003ac → address
Recent Transactions
This address has 1 on-chain transactions, but only 1.1% of the chain is indexed. Transactions will appear as indexing progresses. View on Etherscan →