ETH Price: $2,359.39 (+1.41%)

Contract

0x2215b6325ef6f2De318bbba1B6f48Da7250e63B8
 

Overview

ETH Balance

3.047206218872109923 ETH

Eth Value

$7,189.55 (@ $2,359.39/ETH)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer180044462023-08-27 7:14:35380 days ago1693120475IN
0x2215b632...7250e63B8
0.001 ETH0.0002417610.44390727
Transfer178567672023-08-06 15:19:23400 days ago1691335163IN
0x2215b632...7250e63B8
0.03 ETH0.0004707722.41800767

Latest 12 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
199055892024-05-19 17:52:23113 days ago1716141143
0x2215b632...7250e63B8
0.00057485 ETH
199055742024-05-19 17:49:23113 days ago1716140963
0x2215b632...7250e63B8
0.00067777 ETH
199054202024-05-19 17:17:59113 days ago1716139079
0x2215b632...7250e63B8
0.0025 ETH
194130182024-03-11 16:23:11182 days ago1710174191
0x2215b632...7250e63B8
0.04226823 ETH
194130182024-03-11 16:23:11182 days ago1710174191
0x2215b632...7250e63B8
0.015 ETH
194130182024-03-11 16:23:11182 days ago1710174191
0x2215b632...7250e63B8
2.985 ETH
179936752023-08-25 19:04:47381 days ago1692990287
0x2215b632...7250e63B8
0.0083 ETH
179147952023-08-14 18:11:23392 days ago1692036683
0x2215b632...7250e63B8
0.00146493 ETH
179081492023-08-13 19:52:47393 days ago1691956367
0x2215b632...7250e63B8
0.00152016 ETH
178568092023-08-06 15:27:47400 days ago1691335667
0x2215b632...7250e63B8
0.00249439 ETH
178567702023-08-06 15:19:59400 days ago1691335199
0x2215b632...7250e63B8
0.0088 ETH
178567702023-08-06 15:19:59400 days ago1691335199  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x745F9EC9...f24b582AC
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.8.3+commit.8d00100c

Optimization Enabled:
Yes with 999 runs

Other Settings:
default evmVersion, GNU GPLv3 license
/**
 *Submitted for verification at Etherscan.io on 2021-05-03
*/

// Copyright (C) 2018  Argent Labs Ltd. <https://argent.xyz>

// This program is free software: you can redistribute it and/or modify
// it under the terms of the GNU General Public License as published by
// the Free Software Foundation, either version 3 of the License, or
// (at your option) any later version.

// This program is distributed in the hope that it will be useful,
// but WITHOUT ANY WARRANTY; without even the implied warranty of
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
// GNU General Public License for more details.

// You should have received a copy of the GNU General Public License
// along with this program.  If not, see <http://www.gnu.org/licenses/>.

// SPDX-License-Identifier: GPL-3.0-only
pragma solidity ^0.8.3;

/**
 * @title Proxy
 * @notice Basic proxy that delegates all calls to a fixed implementing contract.
 * The implementing contract cannot be upgraded.
 * @author Julien Niset - <[email protected]>
 */
contract Proxy {

    address immutable public implementation;

    event Received(uint indexed value, address indexed sender, bytes data);

    constructor(address _implementation) {
        implementation = _implementation;
    }

    fallback() external payable {
        address target = implementation;
        // solhint-disable-next-line no-inline-assembly
        assembly {
            calldatacopy(0, 0, calldatasize())
            let result := delegatecall(gas(), target, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            switch result
            case 0 {revert(0, returndatasize())}
            default {return (0, returndatasize())}
        }
    }

    receive() external payable {
        emit Received(msg.value, msg.sender, "");
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"uint256","name":"value","type":"uint256"},{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":false,"internalType":"bytes","name":"data","type":"bytes"}],"name":"Received","type":"event"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]

Deployed Bytecode

0x6080604052600436106100225760003560e01c80635c60da1b146100ac57610067565b3661006757604080516020808252600090820152339134917f606834f57405380c4fb88d1f4850326ad3885f014bab3b568dfbf7a041eef738910160405180910390a3005b7f000000000000000000000000ab00ea153c43575184ff11dd5e713c96be0055733660008037600080366000845af43d6000803e8080156100a7573d6000f35b3d6000fd5b3480156100b857600080fd5b506100e07f000000000000000000000000ab00ea153c43575184ff11dd5e713c96be00557381565b60405173ffffffffffffffffffffffffffffffffffffffff909116815260200160405180910390f3fea2646970667358221220b88a14f52e9d465328c9b3ab476e4b7fa40ed3615fd5409a6afc9885366e03a964736f6c63430008030033

Deployed Bytecode Sourcemap

996:819:0:-:0;;;;;;;;;;;;;;;;;;;;;;;1769:35;;;446:2:1;428:21;;;245:286;465:18;;;458:32;1789:10:0;;1778:9;;1769:35;;507:18:1;1769:35:0;;;;;;;996:819;;1299:14;1424;1282;;1405:34;1517:1;1514;1498:14;1495:1;1487:6;1480:5;1467:52;1554:16;1551:1;1548;1533:38;1592:6;1612:36;;;;1682:16;1679:1;1671:28;1612:36;1630:16;1627:1;1620:27;1020:39;;;;;;;;;;;;;;;;;;190:42:1;178:55;;;160:74;;148:2;133:18;1020:39:0;;;;;;

Swarm Source

ipfs://b88a14f52e9d465328c9b3ab476e4b7fa40ed3615fd5409a6afc9885366e03a9

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

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

Latest 25 from a total of 47 withdrawals (6.084806576 ETH withdrawn)

Validator Index Block Amount
980207041502024-09-08 6:38:352 days ago17257775150.019264628 ETH
980206375152024-08-29 23:27:4711 days ago17249740670.016911966 ETH
980205712412024-08-20 17:11:1120 days ago17241738710.019217127 ETH
980205050282024-08-11 11:19:1129 days ago17233751510.019169236 ETH
980204389802024-08-02 6:09:3539 days ago17225789750.017914876 ETH
980203734852024-07-24 2:42:3548 days ago17217889550.018654367 ETH
980203087272024-07-15 1:48:3557 days ago17210081150.019010214 ETH
980202439642024-07-06 0:43:2366 days ago17202266030.018161761 ETH
980201794832024-06-27 0:36:5975 days ago17194486190.018945627 ETH
980201151162024-06-18 0:35:4784 days ago17186709470.018906443 ETH
980200511572024-06-09 2:02:2393 days ago17178985430.018831663 ETH
980199877512024-05-31 5:33:11102 days ago17171335910.018741707 ETH
980199247372024-05-22 10:10:23110 days ago17163726230.018753308 ETH
980198616622024-05-13 14:22:23119 days ago17156101430.018676637 ETH
980197987292024-05-04 19:08:11128 days ago17148496910.018554663 ETH
980197363762024-04-26 1:51:47137 days ago17140963070.018582211 ETH
980196743832024-04-17 9:45:35145 days ago17133471350.018572988 ETH
980196126442024-04-08 18:10:47154 days ago17125998470.018579009 ETH
980195509442024-03-31 2:35:23163 days ago17118525230.018514642 ETH
980194893352024-03-22 9:40:35171 days ago17111004350.018619719 ETH
980194275782024-03-13 17:18:11180 days ago17103502910.018255719 ETH
980193659912024-03-05 2:30:35189 days ago17096058350.018498324 ETH
980193048722024-02-25 13:23:35197 days ago17088674150.061716038 ETH
980192448662024-02-17 3:18:35206 days ago17081399150.018190169 ETH
980191859572024-02-08 20:55:35214 days ago17074257350.017999812 ETH
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.