Base Sepolia Testnet

Contract

0x52D5310D59ce44b4f285cD8c89c93fC6100f903e

Overview

ETH Balance

2.017088867427171332 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer106079142024-05-29 12:01:56328 days ago1716984116IN
0x52D5310D...6100f903e
1 ETH0.000000020.00100028
Transfer102598462024-05-21 10:39:40336 days ago1716287980IN
0x52D5310D...6100f903e
0.5 ETH0.000000020.0010003
Transfer98899522024-05-12 21:09:52345 days ago1715548192IN
0x52D5310D...6100f903e
0.2 ETH0.000000020.00100026
Transfer96161612024-05-06 13:03:30351 days ago1715000610IN
0x52D5310D...6100f903e
0.35 ETH0.000000020.00100028
Transfer96161372024-05-06 13:02:42351 days ago1715000562IN
0x52D5310D...6100f903e
0.1 ETH0.000000020.00100027

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
133606002024-08-01 5:18:08265 days ago1722489488
0x52D5310D...6100f903e
0.0005 ETH
133605532024-08-01 5:16:34265 days ago1722489394
0x52D5310D...6100f903e
0.0003 ETH
133604752024-08-01 5:13:58265 days ago1722489238
0x52D5310D...6100f903e
0.0001 ETH
133604112024-08-01 5:11:50265 days ago1722489110
0x52D5310D...6100f903e
0.00277777 ETH
133602602024-08-01 5:06:48265 days ago1722488808
0x52D5310D...6100f903e
0.00277777 ETH
133324272024-07-31 13:39:02265 days ago1722433142
0x52D5310D...6100f903e
0.00002 ETH
133323902024-07-31 13:37:48265 days ago1722433068
0x52D5310D...6100f903e
0.00001 ETH
133323902024-07-31 13:37:48265 days ago1722433068
0x52D5310D...6100f903e
0.00001 ETH
133323902024-07-31 13:37:48265 days ago1722433068
0x52D5310D...6100f903e
0.00001 ETH
133323702024-07-31 13:37:08265 days ago1722433028
0x52D5310D...6100f903e
0.0009 ETH
133323702024-07-31 13:37:08265 days ago1722433028
0x52D5310D...6100f903e
0.0009 ETH
133323702024-07-31 13:37:08265 days ago1722433028
0x52D5310D...6100f903e
0.0009 ETH
133322392024-07-31 13:32:46265 days ago1722432766
0x52D5310D...6100f903e
0.001 ETH
133321972024-07-31 13:31:22265 days ago1722432682
0x52D5310D...6100f903e
0.0004 ETH
133321972024-07-31 13:31:22265 days ago1722432682
0x52D5310D...6100f903e
0.0004 ETH
133321972024-07-31 13:31:22265 days ago1722432682
0x52D5310D...6100f903e
0.0004 ETH
133321442024-07-31 13:29:36265 days ago1722432576
0x52D5310D...6100f903e
0.0002 ETH
133320972024-07-31 13:28:02265 days ago1722432482
0x52D5310D...6100f903e
0.00001 ETH
133320502024-07-31 13:26:28265 days ago1722432388
0x52D5310D...6100f903e
0.0002 ETH
133320502024-07-31 13:26:28265 days ago1722432388
0x52D5310D...6100f903e
0.0002 ETH
133320502024-07-31 13:26:28265 days ago1722432388
0x52D5310D...6100f903e
0.0002 ETH
133320212024-07-31 13:25:30265 days ago1722432330
0x52D5310D...6100f903e
0.0001 ETH
133320212024-07-31 13:25:30265 days ago1722432330
0x52D5310D...6100f903e
0.0001 ETH
133320212024-07-31 13:25:30265 days ago1722432330
0x52D5310D...6100f903e
0.0001 ETH
133316242024-07-31 13:12:16265 days ago1722431536
0x52D5310D...6100f903e
0.00277777 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.