ETH Price: $1,988.70 (+0.42%)
Gas: 0.46 Gwei
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Safe Transfer Fr...221122322025-03-23 21:19:231 hr ago1742764763IN
0x62674b8a...4650e0eaA
0 ETH0.00003980.86610859
Set Approval For...221001542025-03-22 4:52:2342 hrs ago1742619143IN
0x62674b8a...4650e0eaA
0 ETH0.000047150.92388087
Set Approval For...220567992025-03-16 3:36:477 days ago1742096207IN
0x62674b8a...4650e0eaA
0 ETH0.000026880.52677437
Set Approval For...220130312025-03-10 0:56:2313 days ago1741568183IN
0x62674b8a...4650e0eaA
0 ETH0.000074182.54708718
Set Approval For...218779672025-02-19 4:15:4732 days ago1739938547IN
0x62674b8a...4650e0eaA
0 ETH0.000079752.73052921
Set Approval For...217765602025-02-04 23:57:1146 days ago1738713431IN
0x62674b8a...4650e0eaA
0 ETH0.000071612.30015314
Set Approval For...217765502025-02-04 23:55:1146 days ago1738713311IN
0x62674b8a...4650e0eaA
0 ETH0.000119782.34699395
Set Approval For...217025742025-01-25 16:00:2357 days ago1737820823IN
0x62674b8a...4650e0eaA
0 ETH0.000486979.52610863
Set Approval For...216566462025-01-19 6:08:5963 days ago1737266939IN
0x62674b8a...4650e0eaA
0 ETH0.0005287110.35956495
Set Approval For...215213292024-12-31 8:41:2382 days ago1735634483IN
0x62674b8a...4650e0eaA
0 ETH0.000845116.55896373
Safe Transfer Fr...215182412024-12-30 22:21:1183 days ago1735597271IN
0x62674b8a...4650e0eaA
0 ETH0.000433919.6
Set Approval For...214681712024-12-23 22:30:1190 days ago1734993011IN
0x62674b8a...4650e0eaA
0 ETH0.00055510.85692776
Set Approval For...214588272024-12-22 15:07:3591 days ago1734880055IN
0x62674b8a...4650e0eaA
0 ETH0.000479199.37392702
Set Approval For...214279242024-12-18 7:27:3595 days ago1734506855IN
0x62674b8a...4650e0eaA
0 ETH0.0005454510.68759327
Set Approval For...211210952024-11-05 11:17:11138 days ago1730805431IN
0x62674b8a...4650e0eaA
0 ETH0.000207834.07237184
Set Approval For...211027632024-11-02 21:53:35141 days ago1730584415IN
0x62674b8a...4650e0eaA
0 ETH0.000169833.32782098
Set Approval For...211020582024-11-02 19:31:11141 days ago1730575871IN
0x62674b8a...4650e0eaA
0 ETH0.000346936.79794032
Set Approval For...210984392024-11-02 7:22:11141 days ago1730532131IN
0x62674b8a...4650e0eaA
0 ETH0.000130892.56478778
Set Approval For...210980442024-11-02 6:02:59141 days ago1730527379IN
0x62674b8a...4650e0eaA
0 ETH0.000153593.00950593
Set Approval For...210588152024-10-27 18:39:47147 days ago1730054387IN
0x62674b8a...4650e0eaA
0 ETH0.0005489310.75585906
Transfer From210084482024-10-20 18:01:47154 days ago1729447307IN
0x62674b8a...4650e0eaA
0 ETH0.0006618811.08606997
Set Approval For...209163472024-10-07 21:22:59167 days ago1728336179IN
0x62674b8a...4650e0eaA
0 ETH0.000761726.13228718
Set Approval For...207240342024-09-11 1:17:11193 days ago1726017431IN
0x62674b8a...4650e0eaA
0 ETH0.000115882.27071349
Set Approval For...206104422024-08-26 4:41:11209 days ago1724647271IN
0x62674b8a...4650e0eaA
0 ETH0.000025660.88120845
Set Approval For...205939472024-08-23 21:20:11212 days ago1724448011IN
0x62674b8a...4650e0eaA
0 ETH0.000144952.84022918
View all transactions

View more zero value Internal Transactions in Advanced View mode

Advanced mode:
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xf286AA8c...c5B6DB028
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.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2021-12-15
*/

// SPDX-License-Identifier: MIT

pragma solidity 0.8.7;

/**
 * @dev This abstract contract provides a fallback function that delegates all calls to another contract using the EVM
 * instruction `delegatecall`. We refer to the second contract as the _implementation_ behind the proxy, and it has to
 * be specified by overriding the virtual {_implementation} function.
 *
 * Additionally, delegation to the implementation can be triggered manually through the {_fallback} function, or to a
 * different contract through the {_delegate} function.
 *
 * The success and return data of the delegated call will be returned back to the caller of the proxy.
 */
contract Proxy {

    address implementation_;
    address public admin;

    constructor(address impl) {
        implementation_ = impl;
        admin = msg.sender;
    }

    function setImplementation(address newImpl) public {
        require(msg.sender == admin);
        implementation_ = newImpl;
    }
    
    function implementation() public view returns (address impl) {
        impl = implementation_;
    }

    /**
     * @dev Delegates the current call to `implementation`.
     *
     * This function does not return to its internall call site, it will return directly to the external caller.
     */
    function _delegate(address implementation__) internal virtual {
        assembly {
            // Copy msg.data. We take full control of memory in this inline assembly
            // block because it will not return to Solidity code. We overwrite the
            // Solidity scratch pad at memory position 0.
            calldatacopy(0, 0, calldatasize())

            // Call the implementation.
            // out and outsize are 0 because we don't know the size yet.
            let result := delegatecall(gas(), implementation__, 0, calldatasize(), 0, 0)

            // Copy the returned data.
            returndatacopy(0, 0, returndatasize())

            switch result
            // delegatecall returns 0 on error.
            case 0 {
                revert(0, returndatasize())
            }
            default {
                return(0, returndatasize())
            }
        }
    }

    /**
     * @dev This is a virtual function that should be overriden so it returns the address to which the fallback function
     * and {_fallback} should delegate.
     */
    function _implementation() internal view returns (address) {
        return implementation_;
    }


    /**
     * @dev Fallback function that delegates calls to the address returned by `_implementation()`. Will run if no other
     * function in the contract matches the call data.
     */
    fallback() external payable virtual {
        _delegate(_implementation());
    }

}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"admin","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"implementation","outputs":[{"internalType":"address","name":"impl","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newImpl","type":"address"}],"name":"setImplementation","outputs":[],"stateMutability":"nonpayable","type":"function"}]

Deployed Bytecode

0x6080604052600436106100345760003560e01c80635c60da1b14610050578063d784d42614610086578063f851a440146100a6575b61004e6100496000546001600160a01b031690565b6100c6565b005b34801561005c57600080fd5b506000546001600160a01b03165b6040516001600160a01b03909116815260200160405180910390f35b34801561009257600080fd5b5061004e6100a1366004610123565b6100ea565b3480156100b257600080fd5b5060015461006a906001600160a01b031681565b3660008037600080366000845af43d6000803e8080156100e5573d6000f35b3d6000fd5b6001546001600160a01b0316331461010157600080fd5b600080546001600160a01b0319166001600160a01b0392909216919091179055565b60006020828403121561013557600080fd5b81356001600160a01b038116811461014c57600080fd5b939250505056fea26469706673582212209a3b90ebe87548716a7a376a329a95f6849eb347f8e2e6114ccea44868fc2aac64736f6c63430008070033

Deployed Bytecode Sourcemap

670:2148:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;2777:28;2787:17;2475:7;2502:15;-1:-1:-1;;;;;2502:15:0;;2425:100;2787:17;2777:9;:28::i;:::-;670:2148;1003:102;;;;;;;;;;-1:-1:-1;2475:7:0;2502:15;-1:-1:-1;;;;;2502:15:0;1003:102;;;-1:-1:-1;;;;;469:32:1;;;451:51;;439:2;424:18;1003:102:0;;;;;;;857:134;;;;;;;;;;-1:-1:-1;857:134:0;;;;;:::i;:::-;;:::i;724:20::-;;;;;;;;;;-1:-1:-1;724:20:0;;;;-1:-1:-1;;;;;724:20:0;;;1314:922;1659:14;1656:1;1653;1640:34;1879:1;1876;1860:14;1857:1;1839:16;1832:5;1819:62;1958:16;1955:1;1952;1937:38;1998:6;2067:68;;;;2186:16;2183:1;2176:27;2067:68;2103:16;2100:1;2093:27;857:134;941:5;;-1:-1:-1;;;;;941:5:0;927:10;:19;919:28;;;;;;958:15;:25;;-1:-1:-1;;;;;;958:25:0;-1:-1:-1;;;;;958:25:0;;;;;;;;;;857:134::o;14:286:1:-;73:6;126:2;114:9;105:7;101:23;97:32;94:52;;;142:1;139;132:12;94:52;168:23;;-1:-1:-1;;;;;220:31:1;;210:42;;200:70;;266:1;263;256:12;200:70;289:5;14:286;-1:-1:-1;;;14:286:1:o

Swarm Source

ipfs://9a3b90ebe87548716a7a376a329a95f6849eb347f8e2e6114ccea44868fc2aac

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  ]

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.