Base Sepolia Testnet

Contract

0x85fa943e27b343A929BB6213a868c5d38b31FCE8

Overview

ETH Balance

0.031219999998890451 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer100564452024-05-16 17:39:38341 days ago1715881178IN
0x85fa943e...38b31FCE8
0.06 ETH0.000041131.50000032
Transfer99538432024-05-14 8:39:34344 days ago1715675974IN
0x85fa943e...38b31FCE8
0.02 ETH0.000041131.50000025
Transfer98759922024-05-12 13:24:32345 days ago1715520272IN
0x85fa943e...38b31FCE8
0.025 ETH0.00003151.50000025

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
127205542024-07-17 9:43:16280 days ago1721209396
0x85fa943e...38b31FCE8
27 wei
127203872024-07-17 9:37:42280 days ago1721209062
0x85fa943e...38b31FCE8
27 wei
127202382024-07-17 9:32:44280 days ago1721208764
0x85fa943e...38b31FCE8
27 wei
127165362024-07-17 7:29:20280 days ago1721201360
0x85fa943e...38b31FCE8
27 wei
127160702024-07-17 7:13:48280 days ago1721200428
0x85fa943e...38b31FCE8
27 wei
127115472024-07-17 4:43:02280 days ago1721191382
0x85fa943e...38b31FCE8
27 wei
127104102024-07-17 4:05:08280 days ago1721189108
0x85fa943e...38b31FCE8
27 wei
127091452024-07-17 3:22:58280 days ago1721186578
0x85fa943e...38b31FCE8
27 wei
127084472024-07-17 2:59:42280 days ago1721185182
0x85fa943e...38b31FCE8
27 wei
127082772024-07-17 2:54:02280 days ago1721184842
0x85fa943e...38b31FCE8
27 wei
127063102024-07-17 1:48:28280 days ago1721180908
0x85fa943e...38b31FCE8
27 wei
127061412024-07-17 1:42:50280 days ago1721180570
0x85fa943e...38b31FCE8
27 wei
127045012024-07-17 0:48:10280 days ago1721177290
0x85fa943e...38b31FCE8
27 wei
127023192024-07-16 23:35:26280 days ago1721172926
0x85fa943e...38b31FCE8
27 wei
127008462024-07-16 22:46:20280 days ago1721169980
0x85fa943e...38b31FCE8
27 wei
126995872024-07-16 22:04:22280 days ago1721167462
0x85fa943e...38b31FCE8
27 wei
126973872024-07-16 20:51:02280 days ago1721163062
0x85fa943e...38b31FCE8
27 wei
126951832024-07-16 19:37:34280 days ago1721158654
0x85fa943e...38b31FCE8
27 wei
126915662024-07-16 17:37:00280 days ago1721151420
0x85fa943e...38b31FCE8
27 wei
126910022024-07-16 17:18:12280 days ago1721150292
0x85fa943e...38b31FCE8
27 wei
126898962024-07-16 16:41:20280 days ago1721148080
0x85fa943e...38b31FCE8
27 wei
126874602024-07-16 15:20:08280 days ago1721143208
0x85fa943e...38b31FCE8
27 wei
126871362024-07-16 15:09:20280 days ago1721142560
0x85fa943e...38b31FCE8
27 wei
126854692024-07-16 14:13:46280 days ago1721139226
0x85fa943e...38b31FCE8
27 wei
126314582024-07-15 8:13:24282 days ago1721031204
0x85fa943e...38b31FCE8
27 wei
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.