Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 27 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Flush Tokens | 18763613 | 428 days ago | IN | 0 ETH | 0.00246328 | ||||
Flush Tokens | 18532160 | 460 days ago | IN | 0 ETH | 0.00153671 | ||||
Flush Tokens | 18444233 | 473 days ago | IN | 0 ETH | 0.00098589 | ||||
Flush Tokens | 18384528 | 481 days ago | IN | 0 ETH | 0.00073484 | ||||
Flush Tokens | 18283769 | 495 days ago | IN | 0 ETH | 0.00033378 | ||||
Flush Tokens | 18184755 | 509 days ago | IN | 0 ETH | 0.00114946 | ||||
Flush Tokens | 18163815 | 512 days ago | IN | 0 ETH | 0.00152323 | ||||
Flush Tokens | 18102854 | 521 days ago | IN | 0 ETH | 0.00047636 | ||||
Flush Tokens | 18102804 | 521 days ago | IN | 0 ETH | 0.0005482 | ||||
Flush Tokens | 18091751 | 522 days ago | IN | 0 ETH | 0.00060089 | ||||
Flush Tokens | 18089175 | 522 days ago | IN | 0 ETH | 0.00049296 | ||||
Flush Tokens | 18084602 | 523 days ago | IN | 0 ETH | 0.00074338 | ||||
Flush Tokens | 17984767 | 537 days ago | IN | 0 ETH | 0.00134989 | ||||
Flush Tokens | 17984666 | 537 days ago | IN | 0 ETH | 0.00108023 | ||||
Flush Tokens | 17963456 | 540 days ago | IN | 0 ETH | 0.00149176 | ||||
Flush Tokens | 17942420 | 543 days ago | IN | 0 ETH | 0.00217363 | ||||
Flush Tokens | 17930473 | 545 days ago | IN | 0 ETH | 0.002431 | ||||
Flush Tokens | 17917317 | 547 days ago | IN | 0 ETH | 0.00108327 | ||||
Flush Tokens | 17908628 | 548 days ago | IN | 0 ETH | 0.0006764 | ||||
Flush Tokens | 17887769 | 551 days ago | IN | 0 ETH | 0.00099371 | ||||
Flush Tokens | 17885036 | 551 days ago | IN | 0 ETH | 0.00212929 | ||||
Flush Tokens | 17867131 | 554 days ago | IN | 0 ETH | 0.00065788 | ||||
Flush Tokens | 17866783 | 554 days ago | IN | 0 ETH | 0.00082643 | ||||
Flush Tokens | 17786645 | 565 days ago | IN | 0 ETH | 0.00235326 | ||||
Flush Tokens | 17731704 | 572 days ago | IN | 0 ETH | 0.00078176 |
Latest 1 internal transaction
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
17515212 | 603 days ago | Contract Creation | 0 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 |
---|---|---|---|---|---|
GLMR | 100.00% | $0.133151 | 60.8 | $8.1 |
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.