Base Sepolia Testnet

Contract

0x67626b7ef9B64F497703C13e5856f9F15bB12ec7

Overview

ETH Balance

0.000003999999781107 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer105082422024-05-27 4:39:32331 days ago1716784772IN
0x67626b7e...15bB12ec7
0.000004 ETH0.000000020.00100029

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
126722912024-07-16 6:54:30281 days ago1721112870
0x67626b7e...15bB12ec7
27 wei
126719712024-07-16 6:43:50281 days ago1721112230
0x67626b7e...15bB12ec7
27 wei
126700192024-07-16 5:38:46281 days ago1721108326
0x67626b7e...15bB12ec7
27 wei
126688092024-07-16 4:58:26281 days ago1721105906
0x67626b7e...15bB12ec7
27 wei
126682212024-07-16 4:38:50281 days ago1721104730
0x67626b7e...15bB12ec7
27 wei
126678782024-07-16 4:27:24281 days ago1721104044
0x67626b7e...15bB12ec7
27 wei
126678112024-07-16 4:25:10281 days ago1721103910
0x67626b7e...15bB12ec7
27 wei
126677122024-07-16 4:21:52281 days ago1721103712
0x67626b7e...15bB12ec7
27 wei
126675552024-07-16 4:16:38281 days ago1721103398
0x67626b7e...15bB12ec7
27 wei
126668262024-07-16 3:52:20281 days ago1721101940
0x67626b7e...15bB12ec7
27 wei
126664632024-07-16 3:40:14281 days ago1721101214
0x67626b7e...15bB12ec7
27 wei
126659792024-07-16 3:24:06281 days ago1721100246
0x67626b7e...15bB12ec7
27 wei
126652732024-07-16 3:00:34281 days ago1721098834
0x67626b7e...15bB12ec7
27 wei
126628312024-07-16 1:39:10281 days ago1721093950
0x67626b7e...15bB12ec7
27 wei
126623882024-07-16 1:24:24281 days ago1721093064
0x67626b7e...15bB12ec7
27 wei
126612632024-07-16 0:46:54281 days ago1721090814
0x67626b7e...15bB12ec7
27 wei
126610552024-07-16 0:39:58281 days ago1721090398
0x67626b7e...15bB12ec7
27 wei
126602952024-07-16 0:14:38281 days ago1721088878
0x67626b7e...15bB12ec7
27 wei
126600472024-07-16 0:06:22281 days ago1721088382
0x67626b7e...15bB12ec7
27 wei
126599732024-07-16 0:03:54281 days ago1721088234
0x67626b7e...15bB12ec7
27 wei
126427892024-07-15 14:31:06281 days ago1721053866
0x67626b7e...15bB12ec7
27 wei
126411612024-07-15 13:36:50281 days ago1721050610
0x67626b7e...15bB12ec7
27 wei
126389502024-07-15 12:23:08282 days ago1721046188
0x67626b7e...15bB12ec7
27 wei
126386892024-07-15 12:14:26282 days ago1721045666
0x67626b7e...15bB12ec7
27 wei
126385182024-07-15 12:08:44282 days ago1721045324
0x67626b7e...15bB12ec7
27 wei
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.