Base Sepolia Testnet

Contract

0x2173A18dE9dc72e0Bf2A8C323eFe868fF1865DEF

Overview

ETH Balance

0 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer151014402024-09-10 12:26:08225 days ago1725971168IN
0x2173A18d...fF1865DEF
3.7 ETH0.0027423100
Transfer140577102024-08-17 8:35:08249 days ago1723883708IN
0x2173A18d...fF1865DEF
215.94 ETH0.000000020.00106752

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
157549762024-09-25 15:30:40209 days ago1727278240
0x2173A18d...fF1865DEF
10 ETH
157549762024-09-25 15:30:40209 days ago1727278240
0x2173A18d...fF1865DEF
10 ETH
157549102024-09-25 15:28:28209 days ago1727278108
0x2173A18d...fF1865DEF
5 ETH
157549102024-09-25 15:28:28209 days ago1727278108
0x2173A18d...fF1865DEF
5 ETH
157549062024-09-25 15:28:20209 days ago1727278100
0x2173A18d...fF1865DEF
0.02294444 ETH
157547452024-09-25 15:22:58209 days ago1727277778
0x2173A18d...fF1865DEF
0.8 ETH
157547452024-09-25 15:22:58209 days ago1727277778
0x2173A18d...fF1865DEF
0.8 ETH
157547432024-09-25 15:22:54209 days ago1727277774
0x2173A18d...fF1865DEF
0.8 ETH
151966642024-09-12 17:20:16222 days ago1726161616
0x2173A18d...fF1865DEF
0.001 ETH
151014842024-09-10 12:27:36225 days ago1725971256
0x2173A18d...fF1865DEF
2.87605555 ETH
142243472024-08-21 5:09:42245 days ago1724216982
0x2173A18d...fF1865DEF
0.02394444 ETH
140612472024-08-17 10:33:02249 days ago1723890782
0x2173A18d...fF1865DEF
24 ETH
140612192024-08-17 10:32:06249 days ago1723890726
0x2173A18d...fF1865DEF
50 ETH
140611842024-08-17 10:30:56249 days ago1723890656
0x2173A18d...fF1865DEF
50 ETH
140611582024-08-17 10:30:04249 days ago1723890604
0x2173A18d...fF1865DEF
50 ETH
140593352024-08-17 9:29:18249 days ago1723886958
0x2173A18d...fF1865DEF
41.91605555 ETH
140175982024-08-16 10:18:04250 days ago1723803484
0x2173A18d...fF1865DEF
46 ETH
140175982024-08-16 10:18:04250 days ago1723803484
0x2173A18d...fF1865DEF
46 ETH
140175612024-08-16 10:16:50250 days ago1723803410
0x2173A18d...fF1865DEF
80 ETH
140175612024-08-16 10:16:50250 days ago1723803410
0x2173A18d...fF1865DEF
80 ETH
140173452024-08-16 10:09:38250 days ago1723802978
0x2173A18d...fF1865DEF
50 ETH
140173452024-08-16 10:09:38250 days ago1723802978
0x2173A18d...fF1865DEF
50 ETH
140172852024-08-16 10:07:38250 days ago1723802858
0x2173A18d...fF1865DEF
50 ETH
140172852024-08-16 10:07:38250 days ago1723802858
0x2173A18d...fF1865DEF
50 ETH
135723652024-08-06 2:56:58260 days ago1722913018
0x2173A18d...fF1865DEF
0.0005 ETH
View All Internal Transactions

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x49Bb4587...d91eECCA3
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.17+commit.8df45f5f

Optimization Enabled:
Yes with 800 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

File 1 of 1 : Proxy.sol
// SPDX-License-Identifier: MIT
pragma solidity 0.8.17;

/**
 * @title Proxy // This is the user's Smart Account
 * @notice Basic proxy that delegates all calls to a fixed implementation contract.
 * @dev    Implementation address is stored in the slot defined by the Proxy's address
 */
contract Proxy {
    constructor(address _implementation) {
        require(
            _implementation != address(0),
            "Invalid implementation address"
        );
        assembly {
            sstore(address(), _implementation)
        }
    }

    fallback() external payable {
        address target;
        assembly {
            target := sload(address())
            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())
            }
        }
    }
}

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

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220a03b18dce0be0b4c9afe58a9eb85c35205e2cf087da098bbf1d23945bf89496064736f6c63430008110033

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
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.