Base Sepolia Testnet

Contract

0x7ef7C4de1E188aaa128AA7d06F5a7dfb059D0DA7

Overview

ETH Balance

0.009874415049806815 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer96200952024-05-06 15:14:38351 days ago1715008478IN
0x7ef7C4de...b059D0DA7
0.01 ETH0.00003151.50000027

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
157552192024-09-25 15:38:46209 days ago1727278726
0x7ef7C4de...b059D0DA7
0.00000098 ETH
140196382024-08-16 11:26:04250 days ago1723807564
0x7ef7C4de...b059D0DA7
0.00000988 ETH
138286902024-08-12 1:21:08254 days ago1723425668
0x7ef7C4de...b059D0DA7
0.00000098 ETH
138286902024-08-12 1:21:08254 days ago1723425668
0x7ef7C4de...b059D0DA7
0.00000098 ETH
138286902024-08-12 1:21:08254 days ago1723425668
0x7ef7C4de...b059D0DA7
0.00000098 ETH
135075532024-08-04 14:56:34261 days ago1722783394
0x7ef7C4de...b059D0DA7
0.00000009 ETH
130756662024-07-25 15:00:20271 days ago1721919620
0x7ef7C4de...b059D0DA7
0.00000989 ETH
128781952024-07-21 1:17:58276 days ago1721524678
0x7ef7C4de...b059D0DA7
0.0000099 ETH
127748032024-07-18 15:51:34278 days ago1721317894
0x7ef7C4de...b059D0DA7
0.00000991 ETH
126030362024-07-14 16:26:00282 days ago1720974360
0x7ef7C4de...b059D0DA7
0.00000099 ETH
125145112024-07-12 15:15:10284 days ago1720797310
0x7ef7C4de...b059D0DA7
0.00000992 ETH
123401812024-07-08 14:24:10288 days ago1720448650
0x7ef7C4de...b059D0DA7
0.00000993 ETH
122981452024-07-07 15:02:58289 days ago1720364578
0x7ef7C4de...b059D0DA7
0.00000994 ETH
122141332024-07-05 16:22:34291 days ago1720196554
0x7ef7C4de...b059D0DA7
0.00001 ETH
121647722024-07-04 12:57:12293 days ago1720097832
0x7ef7C4de...b059D0DA7
0 ETH
112749882024-06-13 22:37:44313 days ago1718318264
0x7ef7C4de...b059D0DA7
0 ETH
111733132024-06-11 14:08:34315 days ago1718114914
0x7ef7C4de...b059D0DA7
0 ETH
108716582024-06-04 14:33:24322 days ago1717511604
0x7ef7C4de...b059D0DA7
0 ETH
106553212024-05-30 14:22:10327 days ago1717078930
0x7ef7C4de...b059D0DA7
0 ETH
99637642024-05-14 14:10:16343 days ago1715695816
0x7ef7C4de...b059D0DA7
0 ETH
99251792024-05-13 16:44:06344 days ago1715618646
0x7ef7C4de...b059D0DA7
0.0000001 ETH
99251062024-05-13 16:41:40344 days ago1715618500
0x7ef7C4de...b059D0DA7
0 ETH
98779002024-05-12 14:28:08345 days ago1715524088
0x7ef7C4de...b059D0DA7
0 ETH
97513262024-05-09 16:09:00348 days ago1715270940
0x7ef7C4de...b059D0DA7
0 ETH
97503392024-05-09 15:36:06348 days ago1715268966
0x7ef7C4de...b059D0DA7
0 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.