ETH Price: $3,387.27 (-2.69%)
Gas: 1 Gwei

Contract

0x62674b8aCe7D939bB07bea6d32c55b74650e0eaA
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Value
Set Approval For...201498812024-06-22 21:19:356 days ago1719091175IN
0x62674b8a...4650e0eaA
0 ETH0.000059832.04871527
Set Approval For...201140502024-06-17 21:00:3511 days ago1718658035IN
0x62674b8a...4650e0eaA
0 ETH0.000323476.33819283
Set Approval For...201043282024-06-16 12:23:1112 days ago1718540591IN
0x62674b8a...4650e0eaA
0 ETH0.000185683.63322078
Set Approval For...201043152024-06-16 12:20:3512 days ago1718540435IN
0x62674b8a...4650e0eaA
0 ETH0.000180583.53258023
Set Approval For...200769782024-06-12 16:35:4716 days ago1718210147IN
0x62674b8a...4650e0eaA
0 ETH0.0011437922.41150391
Set Approval For...200757852024-06-12 12:35:4716 days ago1718195747IN
0x62674b8a...4650e0eaA
0 ETH0.0021297241.72983334
Safe Transfer Fr...200503552024-06-08 23:20:2320 days ago1717888823IN
0x62674b8a...4650e0eaA
0 ETH0.000219254.82655116
Safe Transfer Fr...200503522024-06-08 23:19:4720 days ago1717888787IN
0x62674b8a...4650e0eaA
0 ETH0.00023884.75459996
Safe Transfer Fr...200503462024-06-08 23:18:3520 days ago1717888715IN
0x62674b8a...4650e0eaA
0 ETH0.000231774.61448712
Safe Transfer Fr...200503432024-06-08 23:17:5920 days ago1717888679IN
0x62674b8a...4650e0eaA
0 ETH0.000251094.99914826
Safe Transfer Fr...200503402024-06-08 23:17:2320 days ago1717888643IN
0x62674b8a...4650e0eaA
0 ETH0.000230524.58967953
Safe Transfer Fr...200503362024-06-08 23:16:3520 days ago1717888595IN
0x62674b8a...4650e0eaA
0 ETH0.000232934.63760864
Safe Transfer Fr...200503332024-06-08 23:15:5920 days ago1717888559IN
0x62674b8a...4650e0eaA
0 ETH0.000238174.74201353
Safe Transfer Fr...200503302024-06-08 23:15:2320 days ago1717888523IN
0x62674b8a...4650e0eaA
0 ETH0.00024624.90179282
Safe Transfer Fr...200502962024-06-08 23:08:3520 days ago1717888115IN
0x62674b8a...4650e0eaA
0 ETH0.000264785.27174975
Safe Transfer Fr...200502932024-06-08 23:07:5920 days ago1717888079IN
0x62674b8a...4650e0eaA
0 ETH0.000238844.75525301
Safe Transfer Fr...200502912024-06-08 23:07:3520 days ago1717888055IN
0x62674b8a...4650e0eaA
0 ETH0.000232634.63159859
Safe Transfer Fr...200502872024-06-08 23:06:4720 days ago1717888007IN
0x62674b8a...4650e0eaA
0 ETH0.000236194.7025868
Safe Transfer Fr...200502842024-06-08 23:06:1120 days ago1717887971IN
0x62674b8a...4650e0eaA
0 ETH0.000245594.88968402
Safe Transfer Fr...200502812024-06-08 23:05:3520 days ago1717887935IN
0x62674b8a...4650e0eaA
0 ETH0.000254675.07055882
Safe Transfer Fr...200502702024-06-08 23:03:2320 days ago1717887803IN
0x62674b8a...4650e0eaA
0 ETH0.000333124.94793308
Safe Transfer Fr...200284342024-06-05 21:52:1123 days ago1717624331IN
0x62674b8a...4650e0eaA
0 ETH0.0014069930.97262612
Safe Transfer Fr...200284282024-06-05 21:50:5923 days ago1717624259IN
0x62674b8a...4650e0eaA
0 ETH0.0015370130.60132304
Safe Transfer Fr...200284202024-06-05 21:49:2323 days ago1717624163IN
0x62674b8a...4650e0eaA
0 ETH0.0019497128.9588437
Safe Transfer Fr...200277802024-06-05 19:40:4723 days ago1717616447IN
0x62674b8a...4650e0eaA
0 ETH0.0019838139.49693504
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

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