Sepolia Testnet

Contract

0xaE5732799253F987BE5A336588771ee9740040F3

Overview

ETH Balance

0.20706620680752 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer70229972024-11-06 10:40:2498 days ago1730889624IN
0xaE573279...9740040F3
0.07 ETH0.001125253.58104075
Transfer70229802024-11-06 10:36:2498 days ago1730889384IN
0xaE573279...9740040F3
0.1 ETH0.0011908156.70541793
Transfer70229712024-11-06 10:34:2498 days ago1730889264IN
0xaE573279...9740040F3
0.04 ETH0.0013014761.97521312
Transfer70228012024-11-06 9:57:2498 days ago1730887044IN
0xaE573279...9740040F3
0.08 ETH0.0003001614.29355989
Transfer69629522024-10-28 12:14:36107 days ago1730117676IN
0xaE573279...9740040F3
0.01 ETH0.000143046.81161257

Latest 7 internal transactions

Advanced mode:
Parent Transaction Hash Block
From
To
71208162024-11-21 6:17:3684 days ago1732169856
0xaE573279...9740040F3
0.001 ETH
71143342024-11-20 7:17:3684 days ago1732087056
0xaE573279...9740040F3
0.001 ETH
71142662024-11-20 7:03:0084 days ago1732086180
0xaE573279...9740040F3
0.001 ETH
70602592024-11-12 6:51:3692 days ago1731394296
0xaE573279...9740040F3
0.005 ETH
70232942024-11-06 11:45:1298 days ago1730893512
0xaE573279...9740040F3
0.00001 ETH
70232942024-11-06 11:45:1298 days ago1730893512
0xaE573279...9740040F3
0.08492379 ETH
70232942024-11-06 11:45:1298 days ago1730893512  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.