Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 23 from a total of 23 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21251712 | 69 days ago | IN | 0.04756407 ETH | 0.00073575 | ||||
Transfer | 20993050 | 105 days ago | IN | 1.67762925 ETH | 0.00099195 | ||||
Transfer | 20894152 | 119 days ago | IN | 0.34 ETH | 0.00025911 | ||||
Transfer | 20800720 | 132 days ago | IN | 2.2631 ETH | 0.00070086 | ||||
Transfer | 20770425 | 137 days ago | IN | 1.1993 ETH | 0.00011162 | ||||
Transfer | 20143410 | 224 days ago | IN | 58.68 ETH | 0.0001472 | ||||
Transfer | 20093953 | 231 days ago | IN | 0.27 ETH | 0.00010757 | ||||
Transfer | 20000048 | 244 days ago | IN | 0.75 ETH | 0.00016649 | ||||
Transfer | 19892104 | 259 days ago | IN | 5 ETH | 0.00012688 | ||||
Transfer | 19879489 | 261 days ago | IN | 0.9 ETH | 0.00010778 | ||||
Transfer | 19799318 | 272 days ago | IN | 0.32 ETH | 0.00015904 | ||||
Transfer | 19669334 | 290 days ago | IN | 18.20341521 ETH | 0.00078067 | ||||
Transfer | 19631431 | 296 days ago | IN | 0.1 ETH | 0.00056138 | ||||
Transfer | 19591858 | 301 days ago | IN | 0.63461083 ETH | 0.00064523 | ||||
Transfer | 19577365 | 303 days ago | IN | 0.024 ETH | 0.00125206 | ||||
Transfer | 19561648 | 305 days ago | IN | 9 ETH | 0.00123041 | ||||
Transfer | 19520354 | 311 days ago | IN | 1.1931 ETH | 0.00120984 | ||||
Transfer | 19490279 | 316 days ago | IN | 0.995 ETH | 0.00073685 | ||||
Transfer | 19475516 | 318 days ago | IN | 0.05 ETH | 0.00092069 | ||||
Transfer | 19462589 | 319 days ago | IN | 1.7 ETH | 0.00146558 | ||||
Transfer | 19437579 | 323 days ago | IN | 3 ETH | 0.0013147 | ||||
Transfer | 19377733 | 331 days ago | IN | 0.2 ETH | 0.00301698 | ||||
Transfer | 19364601 | 333 days ago | IN | 5.41520413 ETH | 0.00287095 |
Latest 24 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21251712 | 69 days ago | 0.04756407 ETH | ||||
20993050 | 105 days ago | 1.67762925 ETH | ||||
20894152 | 119 days ago | 0.34 ETH | ||||
20800720 | 132 days ago | 2.2631 ETH | ||||
20770425 | 137 days ago | 1.1993 ETH | ||||
20143410 | 224 days ago | 58.68 ETH | ||||
20093953 | 231 days ago | 0.27 ETH | ||||
20000048 | 244 days ago | 0.75 ETH | ||||
19892104 | 259 days ago | 5 ETH | ||||
19879489 | 261 days ago | 0.9 ETH | ||||
19799318 | 272 days ago | 0.32 ETH | ||||
19669334 | 290 days ago | 18.20341521 ETH | ||||
19631431 | 296 days ago | 0.1 ETH | ||||
19591858 | 301 days ago | 0.63461083 ETH | ||||
19577365 | 303 days ago | 0.024 ETH | ||||
19561648 | 305 days ago | 9 ETH | ||||
19520354 | 311 days ago | 1.1931 ETH | ||||
19490279 | 316 days ago | 0.995 ETH | ||||
19475516 | 318 days ago | 0.05 ETH | ||||
19462589 | 319 days ago | 1.7 ETH | ||||
19437579 | 323 days ago | 3 ETH | ||||
19377733 | 331 days ago | 0.2 ETH | ||||
19364601 | 333 days ago | 5.41520413 ETH | ||||
19351857 | 335 days ago | Contract Creation | 0 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0x8770c4e5...413038178 The constructor portion of the code might be different and could alter the actual behaviour of the contract
Contract Name:
Deposit
Compiler Version
v0.8.20+commit.a1b79de6
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "IERC20Lite.sol"; /** * @title Deposit contract * @notice Creates a contract with a known address and withdraws tokens from it. * After deployment, the Vault will call fetch() to withdraw tokens. * @dev Any change in this contract, including comments, will affect the final * bytecode and therefore will affect the create2 derived addresses. * Do NOT modify unless the consequences of doing so are fully understood. */ contract Deposit { address payable private immutable vault; /** * @notice Upon deployment it fetches the tokens (native or ERC20) to the Vault. * @param token The address of the token to fetch */ constructor(address token) { vault = payable(msg.sender); // Slightly cheaper to use msg.sender instead of Vault. if (token == 0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE) { // solhint-disable-next-line avoid-low-level-calls (bool success, ) = msg.sender.call{value: address(this).balance}(""); require(success); } else { // IERC20Lite.transfer doesn't have a return bool to avoid reverts on non-standard ERC20s IERC20Lite(token).transfer(msg.sender, IERC20Lite(token).balanceOf(address(this))); } } /** * @notice Allows the Vault to fetch ERC20 tokens from this contract. * @param token The address of the token to fetch */ function fetch(address token) external { require(msg.sender == vault); // IERC20Lite.transfer doesn't have a return bool to avoid reverts on non-standard ERC20s IERC20Lite(token).transfer(msg.sender, IERC20Lite(token).balanceOf(address(this))); } /// @notice Receives native tokens, emits an event and sends them to the Vault. Note that this // requires the sender to forward some more gas than for a simple transfer. receive() external payable { // solhint-disable-next-line avoid-low-level-calls (bool success, ) = vault.call{value: address(this).balance}(""); require(success); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @title ERC20 Lite Interface * @notice The interface for functions ERC20Lite implements. This is intended to * be used only in the Deposit contract. * @dev Any change in this contract, including comments, will affect the final * bytecode and therefore will affect the create2 derived addresses. * Do NOT modify unless the consequences of doing so are fully understood. */ interface IERC20Lite { /// @dev Removed the return bool to avoid reverts on non-standard ERC20s. function transfer(address, uint256) external; function balanceOf(address) external view returns (uint256); }
{ "evmVersion": "paris", "optimizer": { "enabled": true, "runs": 800 }, "libraries": { "Deposit.sol": {} }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"token","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"token","type":"address"}],"name":"fetch","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Deployed Bytecode
0x6080604052600436106100225760003560e01c8063f109a0be146100ae57600080fd5b366100a95760007f000000000000000000000000f5e10380213880111522dd0efd3dbb45b9f62bcc6001600160a01b03164760405160006040518083038185875af1925050503d8060008114610094576040519150601f19603f3d011682016040523d82523d6000602084013e610099565b606091505b50509050806100a757600080fd5b005b600080fd5b3480156100ba57600080fd5b506100a76100c93660046101e9565b336001600160a01b037f000000000000000000000000f5e10380213880111522dd0efd3dbb45b9f62bcc16146100fe57600080fd5b6040516370a0823160e01b81523060048201526001600160a01b0382169063a9059cbb90339083906370a0823190602401602060405180830381865afa15801561014c573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906101709190610219565b6040517fffffffff0000000000000000000000000000000000000000000000000000000060e085901b1681526001600160a01b0390921660048301526024820152604401600060405180830381600087803b1580156101ce57600080fd5b505af11580156101e2573d6000803e3d6000fd5b5050505050565b6000602082840312156101fb57600080fd5b81356001600160a01b038116811461021257600080fd5b9392505050565b60006020828403121561022b57600080fd5b505191905056fea26469706673582212207a3063a75755b8b3364bcf7137526722a9ac4adcc81866e63e0a9dfb44df3a3e64736f6c63430008140033
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.