Sepolia Testnet

Contract

0xfb071a5655dAC21Ccacdb96f531b30b1f2987682

Overview

ETH Balance

0.459754361433929743 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer60126522024-05-31 12:53:12189 days ago1717159992IN
0xfb071a56...1f2987682
0.3 ETH0.0014260952.00354035
Transfer60125052024-05-31 12:18:48189 days ago1717157928IN
0xfb071a56...1f2987682
0.13144742 ETH0.0017707664.57225393
Transfer59870882024-05-27 9:05:24193 days ago1716800724IN
0xfb071a56...1f2987682
0.1 ETH0.0011701555.72185721

Latest 14 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
59938392024-05-28 11:40:12192 days ago1716896412
0xfb071a56...1f2987682
0.01 ETH
59938392024-05-28 11:40:12192 days ago1716896412
0xfb071a56...1f2987682
0.00272679 ETH
59938332024-05-28 11:39:00192 days ago1716896340
0xfb071a56...1f2987682
0.01 ETH
59938332024-05-28 11:39:00192 days ago1716896340
0xfb071a56...1f2987682
0.00170951 ETH
59938302024-05-28 11:38:00192 days ago1716896280
0xfb071a56...1f2987682
0.01 ETH
59938302024-05-28 11:38:00192 days ago1716896280
0xfb071a56...1f2987682
0.00430625 ETH
59938262024-05-28 11:37:12192 days ago1716896232
0xfb071a56...1f2987682
0.01 ETH
59938262024-05-28 11:37:12192 days ago1716896232
0xfb071a56...1f2987682
0.02176152 ETH
59916692024-05-28 2:44:48192 days ago1716864288
0xfb071a56...1f2987682
0.00023495 ETH
59916252024-05-28 2:34:48192 days ago1716863688
0xfb071a56...1f2987682
0.00018088 ETH
59915702024-05-28 2:21:48192 days ago1716862908
0xfb071a56...1f2987682
0.00012566 ETH
59915612024-05-28 2:19:48192 days ago1716862788
0xfb071a56...1f2987682
0.00006509 ETH
59915552024-05-28 2:17:48192 days ago1716862668
0xfb071a56...1f2987682
0.00058236 ETH
59915552024-05-28 2:17:48192 days ago1716862668  Contract Creation0 ETH
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.