Base Sepolia Testnet

Contract

0x2b53B5db1313Ad0B75E58e7c75ce1B7D907d9556

Overview

ETH Balance

0 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer122575622024-07-06 16:30:12290 days ago1720283412IN
0x2b53B5db...D907d9556
0.02 ETH0.000000020.00091298
Transfer122575342024-07-06 16:29:16290 days ago1720283356IN
0x2b53B5db...D907d9556
0.05 ETH0.000000020.00106734
Transfer122573882024-07-06 16:24:24290 days ago1720283064IN
0x2b53B5db...D907d9556
0.08 ETH0.000000010.00039017
Transfer118094312024-06-26 7:32:30301 days ago1719387150IN
0x2b53B5db...D907d9556
0.07 ETH0.000000470.01734485
Transfer115119912024-06-19 10:17:50308 days ago1718792270IN
0x2b53B5db...D907d9556
0.14 ETH0.000000020.00097033
Transfer102932742024-05-22 5:13:56336 days ago1716354836IN
0x2b53B5db...D907d9556
0.3 ETH0.000041131.50016984
Transfer96088812024-05-06 9:00:50352 days ago1714986050IN
0x2b53B5db...D907d9556
0.05 ETH0.000041131.50000027
Transfer94825162024-05-03 10:48:40355 days ago1714733320IN
0x2b53B5db...D907d9556
0.2 ETH0.00003151.50000026
Transfer94823392024-05-03 10:42:46355 days ago1714732966IN
0x2b53B5db...D907d9556
0.1 ETH0.00003151.50000027

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
135593712024-08-05 19:43:50260 days ago1722887030
0x2b53B5db...D907d9556
0.0003 ETH
135593712024-08-05 19:43:50260 days ago1722887030
0x2b53B5db...D907d9556
0.0003 ETH
135593512024-08-05 19:43:10260 days ago1722886990
0x2b53B5db...D907d9556
0.0003 ETH
135593512024-08-05 19:43:10260 days ago1722886990
0x2b53B5db...D907d9556
0.0003 ETH
130760772024-07-25 15:14:02271 days ago1721920442
0x2b53B5db...D907d9556
0.0003 ETH
130760382024-07-25 15:12:44271 days ago1721920364
0x2b53B5db...D907d9556
0.0003 ETH
130715402024-07-25 12:42:48272 days ago1721911368
0x2b53B5db...D907d9556
0.0003 ETH
130712182024-07-25 12:32:04272 days ago1721910724
0x2b53B5db...D907d9556
0.0003 ETH
130705282024-07-25 12:09:04272 days ago1721909344
0x2b53B5db...D907d9556
0.0003 ETH
130692632024-07-25 11:26:54272 days ago1721906814
0x2b53B5db...D907d9556
0.0003 ETH
130691082024-07-25 11:21:44272 days ago1721906504
0x2b53B5db...D907d9556
0.0003 ETH
130687632024-07-25 11:10:14272 days ago1721905814
0x2b53B5db...D907d9556
0.0003 ETH
130684402024-07-25 10:59:28272 days ago1721905168
0x2b53B5db...D907d9556
0.0003 ETH
130684002024-07-25 10:58:08272 days ago1721905088
0x2b53B5db...D907d9556
0.0003 ETH
130680162024-07-25 10:45:20272 days ago1721904320
0x2b53B5db...D907d9556
1 wei
130679672024-07-25 10:43:42272 days ago1721904222
0x2b53B5db...D907d9556
0.00029999 ETH
129822132024-07-23 11:05:14274 days ago1721732714
0x2b53B5db...D907d9556
0.0003 ETH
129822132024-07-23 11:05:14274 days ago1721732714
0x2b53B5db...D907d9556
0.0003 ETH
129821732024-07-23 11:03:54274 days ago1721732634
0x2b53B5db...D907d9556
0.0003 ETH
129821732024-07-23 11:03:54274 days ago1721732634
0x2b53B5db...D907d9556
0.0001 ETH
129817642024-07-23 10:50:16274 days ago1721731816
0x2b53B5db...D907d9556
0.00019999 ETH
129817302024-07-23 10:49:08274 days ago1721731748
0x2b53B5db...D907d9556
0.0003 ETH
129817302024-07-23 10:49:08274 days ago1721731748
0x2b53B5db...D907d9556
0.0003 ETH
129816892024-07-23 10:47:46274 days ago1721731666
0x2b53B5db...D907d9556
0.0003 ETH
129816892024-07-23 10:47:46274 days ago1721731666
0x2b53B5db...D907d9556
0.0001 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.