Sepolia Testnet

Contract

0x3100d11D08Ae820074FBa2eB5A0657De77FD1308

Overview

ETH Balance

0.540591001336768826 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer61523812024-06-21 4:37:12230 days ago1718944632IN
0x3100d11D...e77FD1308
0.5 ETH0.000041151.50088117
Transfer60924142024-06-12 12:39:00239 days ago1718195940IN
0x3100d11D...e77FD1308
0.3 ETH0.001174455.92394821
Transfer60924002024-06-12 12:36:00239 days ago1718195760IN
0x3100d11D...e77FD1308
0.1 ETH0.0011931256.81553992

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Block
From
To
61956552024-06-27 5:02:24224 days ago1719464544
0x3100d11D...e77FD1308
0.0034748 ETH
61956332024-06-27 4:58:00224 days ago1719464280
0x3100d11D...e77FD1308
0.00851844 ETH
61911412024-06-26 13:57:36225 days ago1719410256
0x3100d11D...e77FD1308
0.00560074 ETH
61911232024-06-26 13:54:00225 days ago1719410040
0x3100d11D...e77FD1308
0.0098143 ETH
61909922024-06-26 13:27:48225 days ago1719408468
0x3100d11D...e77FD1308
0.00054079 ETH
61909732024-06-26 13:24:00225 days ago1719408240
0x3100d11D...e77FD1308
0.00072407 ETH
61909422024-06-26 13:17:48225 days ago1719407868
0x3100d11D...e77FD1308
0.00003392 ETH
61907982024-06-26 12:49:00225 days ago1719406140
0x3100d11D...e77FD1308
0.00668049 ETH
61907182024-06-26 12:33:00225 days ago1719405180
0x3100d11D...e77FD1308
0.00270433 ETH
61903362024-06-26 11:16:36225 days ago1719400596
0x3100d11D...e77FD1308
0.00207485 ETH
61903332024-06-26 11:16:00225 days ago1719400560
0x3100d11D...e77FD1308
0.00546417 ETH
61903332024-06-26 11:16:00225 days ago1719400560
0x3100d11D...e77FD1308
0.00822326 ETH
61253192024-06-17 7:33:24234 days ago1718609604
0x3100d11D...e77FD1308
0.00066471 ETH
61051512024-06-14 9:00:24237 days ago1718355624
0x3100d11D...e77FD1308
0.00481261 ETH
61051492024-06-14 9:00:00237 days ago1718355600
0x3100d11D...e77FD1308
0.00801849 ETH
61051492024-06-14 9:00:00237 days ago1718355600
0x3100d11D...e77FD1308
0.0007666 ETH
61047152024-06-14 7:28:12237 days ago1718350092
0x3100d11D...e77FD1308
0.00222125 ETH
61046922024-06-14 7:23:24237 days ago1718349804
0x3100d11D...e77FD1308
0.00233128 ETH
61045212024-06-14 6:47:24237 days ago1718347644
0x3100d11D...e77FD1308
0.00078676 ETH
61044462024-06-14 6:31:12237 days ago1718346672
0x3100d11D...e77FD1308
0.1 ETH
61044372024-06-14 6:29:12237 days ago1718346552
0x3100d11D...e77FD1308
0.1 ETH
61044322024-06-14 6:28:12237 days ago1718346492
0x3100d11D...e77FD1308
0.00000467 ETH
60972962024-06-13 5:39:00238 days ago1718257140
0x3100d11D...e77FD1308
0.00389832 ETH
60972872024-06-13 5:37:12238 days ago1718257032
0x3100d11D...e77FD1308
0.00843103 ETH
60972302024-06-13 5:25:48238 days ago1718256348
0x3100d11D...e77FD1308
0.00440509 ETH
View All Internal Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x734fdf52...0F3f9A82d
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
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

[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

Deployed Bytecode

0x608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220848d096f9c481a5b694ab87e0a4c770de1a5316a9072906cfdc9799c6c7d50d064736f6c63430008110033

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
[ 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.