Base Sepolia Testnet

Contract

0x3f06266716Ea8a47A1D3B37F3b421b1E7f85945A

Overview

ETH Balance

0.000003999999701568 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer104887592024-05-26 17:50:06331 days ago1716745806IN
0x3f062667...E7f85945A
0.000004 ETH0.000000020.0010012

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
127155212024-07-17 6:55:30280 days ago1721199330
0x3f062667...E7f85945A
27 wei
127138642024-07-17 6:00:16280 days ago1721196016
0x3f062667...E7f85945A
27 wei
127129462024-07-17 5:29:40280 days ago1721194180
0x3f062667...E7f85945A
27 wei
127122612024-07-17 5:06:50280 days ago1721192810
0x3f062667...E7f85945A
27 wei
127101862024-07-17 3:57:40280 days ago1721188660
0x3f062667...E7f85945A
27 wei
127096212024-07-17 3:38:50280 days ago1721187530
0x3f062667...E7f85945A
27 wei
127059172024-07-17 1:35:22280 days ago1721180122
0x3f062667...E7f85945A
27 wei
127054722024-07-17 1:20:32280 days ago1721179232
0x3f062667...E7f85945A
27 wei
127050402024-07-17 1:06:08280 days ago1721178368
0x3f062667...E7f85945A
27 wei
127039122024-07-17 0:28:32280 days ago1721176112
0x3f062667...E7f85945A
27 wei
127035982024-07-17 0:18:04280 days ago1721175484
0x3f062667...E7f85945A
27 wei
127032682024-07-17 0:07:04280 days ago1721174824
0x3f062667...E7f85945A
27 wei
126735612024-07-16 7:36:50281 days ago1721115410
0x3f062667...E7f85945A
27 wei
126731212024-07-16 7:22:10281 days ago1721114530
0x3f062667...E7f85945A
27 wei
126730142024-07-16 7:18:36281 days ago1721114316
0x3f062667...E7f85945A
27 wei
126729132024-07-16 7:15:14281 days ago1721114114
0x3f062667...E7f85945A
27 wei
126725802024-07-16 7:04:08281 days ago1721113448
0x3f062667...E7f85945A
27 wei
126715442024-07-16 6:29:36281 days ago1721111376
0x3f062667...E7f85945A
27 wei
126707002024-07-16 6:01:28281 days ago1721109688
0x3f062667...E7f85945A
27 wei
126704922024-07-16 5:54:32281 days ago1721109272
0x3f062667...E7f85945A
27 wei
126699262024-07-16 5:35:40281 days ago1721108140
0x3f062667...E7f85945A
27 wei
126694572024-07-16 5:20:02281 days ago1721107202
0x3f062667...E7f85945A
27 wei
126685672024-07-16 4:50:22281 days ago1721105422
0x3f062667...E7f85945A
27 wei
126676922024-07-16 4:21:12281 days ago1721103672
0x3f062667...E7f85945A
27 wei
126669252024-07-16 3:55:38281 days ago1721102138
0x3f062667...E7f85945A
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.