Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 269 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21562395 | 4 days ago | IN | 0.005 ETH | 0.000305 | ||||
Transfer | 21524094 | 9 days ago | IN | 0.0025 ETH | 0.00039869 | ||||
Transfer | 21523692 | 10 days ago | IN | 0.015 ETH | 0.00052177 | ||||
Transfer | 21519260 | 10 days ago | IN | 0.005 ETH | 0.00013786 | ||||
Transfer | 21508872 | 12 days ago | IN | 0.02 ETH | 0.00021712 | ||||
Transfer | 21498132 | 13 days ago | IN | 0.01 ETH | 0.00012093 | ||||
Transfer | 21483667 | 15 days ago | IN | 0.005 ETH | 0.00017079 | ||||
Transfer | 21482514 | 15 days ago | IN | 0.0075 ETH | 0.00016338 | ||||
Transfer | 21475806 | 16 days ago | IN | 0.0025 ETH | 0.00015441 | ||||
Transfer | 21466649 | 17 days ago | IN | 0.01 ETH | 0.00046686 | ||||
Transfer | 21456302 | 19 days ago | IN | 0.01 ETH | 0.00018902 | ||||
Transfer | 21449460 | 20 days ago | IN | 0.01 ETH | 0.00029521 | ||||
Transfer | 21445268 | 20 days ago | IN | 0.0025 ETH | 0.00071874 | ||||
Transfer | 21433113 | 22 days ago | IN | 0.005 ETH | 0.00040446 | ||||
Transfer | 21424994 | 23 days ago | IN | 0.005 ETH | 0.00047889 | ||||
Transfer | 21422941 | 24 days ago | IN | 0.01 ETH | 0.00111341 | ||||
Transfer | 21415798 | 25 days ago | IN | 0.01 ETH | 0.00086935 | ||||
Transfer | 21410783 | 25 days ago | IN | 0.01 ETH | 0.00036735 | ||||
Transfer | 21396239 | 27 days ago | IN | 0.01 ETH | 0.00049387 | ||||
Transfer | 21388223 | 28 days ago | IN | 0.0075 ETH | 0.00091979 | ||||
Transfer | 21376127 | 30 days ago | IN | 0.01 ETH | 0.0005617 | ||||
Transfer | 21366010 | 32 days ago | IN | 0.02 ETH | 0.00138823 | ||||
Transfer | 21338686 | 35 days ago | IN | 0.02 ETH | 0.00091758 | ||||
Transfer | 21328092 | 37 days ago | IN | 0.0025 ETH | 0.00060945 | ||||
Transfer | 21325459 | 37 days ago | IN | 0.015 ETH | 0.0008899 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21562395 | 4 days ago | 0.005 ETH | ||||
21524094 | 9 days ago | 0.0025 ETH | ||||
21523692 | 10 days ago | 0.015 ETH | ||||
21519260 | 10 days ago | 0.005 ETH | ||||
21508872 | 12 days ago | 0.02 ETH | ||||
21498132 | 13 days ago | 0.01 ETH | ||||
21483667 | 15 days ago | 0.005 ETH | ||||
21482514 | 15 days ago | 0.0075 ETH | ||||
21475806 | 16 days ago | 0.0025 ETH | ||||
21466649 | 17 days ago | 0.01 ETH | ||||
21456302 | 19 days ago | 0.01 ETH | ||||
21449460 | 20 days ago | 0.01 ETH | ||||
21445268 | 20 days ago | 0.0025 ETH | ||||
21433113 | 22 days ago | 0.005 ETH | ||||
21424994 | 23 days ago | 0.005 ETH | ||||
21422941 | 24 days ago | 0.01 ETH | ||||
21415798 | 25 days ago | 0.01 ETH | ||||
21410783 | 25 days ago | 0.01 ETH | ||||
21396239 | 27 days ago | 0.01 ETH | ||||
21388223 | 28 days ago | 0.0075 ETH | ||||
21376127 | 30 days ago | 0.01 ETH | ||||
21366010 | 32 days ago | 0.02 ETH | ||||
21338686 | 35 days ago | 0.02 ETH | ||||
21328092 | 37 days ago | 0.0025 ETH | ||||
21325459 | 37 days ago | 0.015 ETH |
Loading...
Loading
Minimal Proxy Contract for 0x3a5fb753285ac3a67c6b0d03e121921b2a1428be
Contract Name:
Forwarder
Compiler Version
v0.8.19+commit.7dd6d404
Contract Source Code (Solidity)
/** *Submitted for verification at Etherscan.io on 2023-10-12 */ // File: @uniswap/lib/contracts/libraries/TransferHelper.sol pragma solidity >=0.6.0; // helper methods for interacting with ERC20 tokens and sending ETH that do not consistently return true/false library TransferHelper { function safeApprove( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('approve(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x095ea7b3, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeApprove: approve failed' ); } function safeTransfer( address token, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transfer(address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0xa9059cbb, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::safeTransfer: transfer failed' ); } function safeTransferFrom( address token, address from, address to, uint256 value ) internal { // bytes4(keccak256(bytes('transferFrom(address,address,uint256)'))); (bool success, bytes memory data) = token.call(abi.encodeWithSelector(0x23b872dd, from, to, value)); require( success && (data.length == 0 || abi.decode(data, (bool))), 'TransferHelper::transferFrom: transferFrom failed' ); } function safeTransferETH(address to, uint256 value) internal { (bool success, ) = to.call{value: value}(new bytes(0)); require(success, 'TransferHelper::safeTransferETH: ETH transfer failed'); } } // File: ManualForwarder/ERC20Interface.sol pragma solidity ^0.8.0; /** * Contract that exposes the needed erc20 token functions */ abstract contract ERC20Interface { // Send _value amount of tokens to address _to function transfer(address _to, uint256 _value) public virtual returns (bool success); // Get the account balance of another account with address _owner function balanceOf(address _owner) public virtual view returns (uint256 balance); } // File: ManualForwarder/Forwarder.sol pragma solidity ^0.8.19; contract Forwarder { address private parentAddress; address private owner; event ForwarderDeposited(address from, uint256 value, bytes data); function initialize(address _owner, address initAddress) public onlyUninitialized { require(initAddress != address(0), "Invalid parent address"); require(_owner != address(0), "Invalid owner address"); owner = _owner; parentAddress = initAddress; } modifier onlyUninitialized { require(parentAddress == address(0x0), "Already initialized"); _; } modifier onlyOwner { require(msg.sender == owner, "Only Owner"); _; } function getParentAddress() public view onlyOwner returns (address) { return parentAddress; } function getOwner() public view onlyOwner returns (address) { return owner; } fallback() external payable { flush(); } receive() external payable { flush(); } function setParentAddress(address newAddress) public onlyOwner { require(newAddress != address(0), "Invalid parent address"); parentAddress = newAddress; } function flush() private { uint256 value = payable(address(this)).balance; if (value == 0) { return; } (bool success, ) = parentAddress.call{ value: value }(""); require(success, "Flush failed"); emit ForwarderDeposited(msg.sender, value, msg.data); } function getERC20Balance( address tokenContractAddress ) public view returns (uint256) { ERC20Interface instance = ERC20Interface(tokenContractAddress); address forwarderAddress = address(this); uint256 forwarderBalance = instance.balanceOf(forwarderAddress); if (forwarderBalance == 0) { return 0; } return forwarderBalance; } function flushTokens(address tokenContractAddress) external onlyOwner { ERC20Interface instance = ERC20Interface(tokenContractAddress); address forwarderAddress = address(this); uint256 forwarderBalance = instance.balanceOf(forwarderAddress); if (forwarderBalance == 0) { return; } TransferHelper.safeTransfer( tokenContractAddress, parentAddress, forwarderBalance ); } }
[{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"from","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"ForwarderDeposited","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"tokenContractAddress","type":"address"}],"name":"flushTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenContractAddress","type":"address"}],"name":"getERC20Balance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getOwner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getParentAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_owner","type":"address"},{"internalType":"address","name":"initAddress","type":"address"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newAddress","type":"address"}],"name":"setParentAddress","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.