ETH Price: $3,388.40 (+1.21%)

Contract

0xbbac867ac29b692802CbdDdd036e940aAdDF62ed
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer211243102024-11-05 22:04:1153 days ago1730844251IN
0xbbac867a...aAdDF62ed
0.01554 ETH0.000250657.8373936
Transfer210426262024-10-25 12:27:1165 days ago1729859231IN
0xbbac867a...aAdDF62ed
1.06 ETH0.00028448.89255125
Transfer209933352024-10-18 15:26:2371 days ago1729265183IN
0xbbac867a...aAdDF62ed
1.7 ETH0.0007564623.65272138
Transfer209741382024-10-15 23:06:5974 days ago1729033619IN
0xbbac867a...aAdDF62ed
1.76475474 ETH0.0003621711.32420705
Transfer208015212024-09-21 21:04:4798 days ago1726952687IN
0xbbac867a...aAdDF62ed
2.15 ETH0.000274988.598051
Transfer207175472024-09-10 3:31:11110 days ago1725939071IN
0xbbac867a...aAdDF62ed
29.5 ETH0.000082212.57059875
Transfer200971772024-06-15 12:25:11197 days ago1718454311IN
0xbbac867a...aAdDF62ed
0.295 ETH0.000196436.14191109
Transfer199642782024-05-27 22:45:59215 days ago1716849959IN
0xbbac867a...aAdDF62ed
21.314 ETH0.0003618211.31342855
Transfer199478092024-05-25 15:32:59217 days ago1716651179IN
0xbbac867a...aAdDF62ed
1.7 ETH0.000184075.75559206
Transfer198995942024-05-18 21:44:47224 days ago1716068687IN
0xbbac867a...aAdDF62ed
1.1 ETH0.000105693.30493916
Transfer198818972024-05-16 10:19:35227 days ago1715854775IN
0xbbac867a...aAdDF62ed
0.047 ETH0.000241547.55263007
Transfer197810732024-05-02 7:53:59241 days ago1714636439IN
0xbbac867a...aAdDF62ed
1.3 ETH0.000185765.80851886
Transfer197399382024-04-26 13:51:11246 days ago1714139471IN
0xbbac867a...aAdDF62ed
1 ETH0.0004075512.74338667
Transfer196901822024-04-19 14:49:35253 days ago1713538175IN
0xbbac867a...aAdDF62ed
8 ETH0.0003797918.08560021

Latest 17 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
211641642024-11-11 11:32:1148 days ago1731324731
0xbbac867a...aAdDF62ed
0.7 ETH
211641642024-11-11 11:32:1148 days ago1731324731
0xbbac867a...aAdDF62ed
0.7 ETH
211243102024-11-05 22:04:1153 days ago1730844251
0xbbac867a...aAdDF62ed
0.01554 ETH
210426262024-10-25 12:27:1165 days ago1729859231
0xbbac867a...aAdDF62ed
1.06 ETH
209933352024-10-18 15:26:2371 days ago1729265183
0xbbac867a...aAdDF62ed
1.7 ETH
209741382024-10-15 23:06:5974 days ago1729033619
0xbbac867a...aAdDF62ed
1.76475474 ETH
208015212024-09-21 21:04:4798 days ago1726952687
0xbbac867a...aAdDF62ed
2.15 ETH
207175472024-09-10 3:31:11110 days ago1725939071
0xbbac867a...aAdDF62ed
29.5 ETH
200971772024-06-15 12:25:11197 days ago1718454311
0xbbac867a...aAdDF62ed
0.295 ETH
199642782024-05-27 22:45:59215 days ago1716849959
0xbbac867a...aAdDF62ed
21.314 ETH
199478092024-05-25 15:32:59217 days ago1716651179
0xbbac867a...aAdDF62ed
1.7 ETH
198995942024-05-18 21:44:47224 days ago1716068687
0xbbac867a...aAdDF62ed
1.1 ETH
198818972024-05-16 10:19:35227 days ago1715854775
0xbbac867a...aAdDF62ed
0.047 ETH
197810732024-05-02 7:53:59241 days ago1714636439
0xbbac867a...aAdDF62ed
1.3 ETH
197399382024-04-26 13:51:11246 days ago1714139471
0xbbac867a...aAdDF62ed
1 ETH
196901992024-04-19 14:52:59253 days ago1713538379
0xbbac867a...aAdDF62ed
8 ETH
196901992024-04-19 14:52:59253 days ago1713538379  Contract Creation0 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

Optimization Enabled:
Yes with 800 runs

Other Settings:
paris EvmVersion, MIT license
File 1 of 2 : Deposit.sol
// 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);
    }
}

File 2 of 2 : IERC20Lite.sol
// 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);
}

Settings
{
  "evmVersion": "paris",
  "optimizer": {
    "enabled": true,
    "runs": 800
  },
  "libraries": {
    "Deposit.sol": {}
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

[{"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

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
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.