Base Sepolia Testnet

Contract

0xD1b33805Fc28f863f471c3E0b164Dd22E0563fB0

Overview

ETH Balance

0.037975011127183027 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer134269062024-08-02 18:08:20263 days ago1722622100IN
0xD1b33805...2E0563fB0
0.02 ETH0.000000280.01040604
Transfer134268922024-08-02 18:07:52263 days ago1722622072IN
0xD1b33805...2E0563fB0
0.02 ETH0.000000290.01069326
Transfer133387262024-07-31 17:09:00265 days ago1722445740IN
0xD1b33805...2E0563fB0
0.02 ETH0.000000290.01076617
Transfer133382192024-07-31 16:52:06265 days ago1722444726IN
0xD1b33805...2E0563fB0
0.01 ETH0.00000030.01102471

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
151928232024-09-12 15:12:14222 days ago1726153934
0xD1b33805...2E0563fB0
0.0004 ETH
151927952024-09-12 15:11:18222 days ago1726153878
0xD1b33805...2E0563fB0
0.0003 ETH
151927672024-09-12 15:10:22222 days ago1726153822
0xD1b33805...2E0563fB0
0.0002 ETH
151927342024-09-12 15:09:16222 days ago1726153756
0xD1b33805...2E0563fB0
0.00009999 ETH
151524192024-09-11 16:45:26223 days ago1726073126
0xD1b33805...2E0563fB0
0.0004 ETH
151523882024-09-11 16:44:24223 days ago1726073064
0xD1b33805...2E0563fB0
0.0003 ETH
151523602024-09-11 16:43:28223 days ago1726073008
0xD1b33805...2E0563fB0
0.0002 ETH
151523252024-09-11 16:42:18223 days ago1726072938
0xD1b33805...2E0563fB0
0.00009999 ETH
151074782024-09-10 15:47:24224 days ago1725983244
0xD1b33805...2E0563fB0
0.0004 ETH
151074562024-09-10 15:46:40224 days ago1725983200
0xD1b33805...2E0563fB0
0.0003 ETH
151074332024-09-10 15:45:54224 days ago1725983154
0xD1b33805...2E0563fB0
0.0002 ETH
151074042024-09-10 15:44:56224 days ago1725983096
0xD1b33805...2E0563fB0
0.00009999 ETH
150666912024-09-09 17:07:50225 days ago1725901670
0xD1b33805...2E0563fB0
0.0004 ETH
150666652024-09-09 17:06:58225 days ago1725901618
0xD1b33805...2E0563fB0
0.0003 ETH
150666442024-09-09 17:06:16225 days ago1725901576
0xD1b33805...2E0563fB0
0.0002 ETH
150666122024-09-09 17:05:12225 days ago1725901512
0xD1b33805...2E0563fB0
0.00009999 ETH
150220892024-09-08 16:21:06226 days ago1725812466
0xD1b33805...2E0563fB0
0.0001 ETH
150220542024-09-08 16:19:56226 days ago1725812396
0xD1b33805...2E0563fB0
0.0001 ETH
150211442024-09-08 15:49:36226 days ago1725810576
0xD1b33805...2E0563fB0
0.0001 ETH
150210912024-09-08 15:47:50226 days ago1725810470
0xD1b33805...2E0563fB0
0.00009999 ETH
149791662024-09-07 16:30:20227 days ago1725726620
0xD1b33805...2E0563fB0
0.0004 ETH
149791402024-09-07 16:29:28227 days ago1725726568
0xD1b33805...2E0563fB0
0.0003 ETH
149791132024-09-07 16:28:34227 days ago1725726514
0xD1b33805...2E0563fB0
0.0002 ETH
149790682024-09-07 16:27:04227 days ago1725726424
0xD1b33805...2E0563fB0
0.00009999 ETH
149373692024-09-06 17:17:06228 days ago1725643026
0xD1b33805...2E0563fB0
0.0004 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.