Base Sepolia Testnet

Contract

0x909236c83D2Ce8e7D3Cc085F9ecD28aaBD59Cfb5

Overview

ETH Balance

0.00988946 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer99288722024-05-13 18:47:12344 days ago1715626032IN
0x909236c8...aBD59Cfb5
0.01 ETH0.00003151.50000027

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
104362122024-05-25 12:38:32333 days ago1716640712
0x909236c8...aBD59Cfb5
0.00000001 ETH
104361972024-05-25 12:38:02333 days ago1716640682
0x909236c8...aBD59Cfb5
0.00000001 ETH
104361832024-05-25 12:37:34333 days ago1716640654
0x909236c8...aBD59Cfb5
0.00000001 ETH
104361672024-05-25 12:37:02333 days ago1716640622
0x909236c8...aBD59Cfb5
0.00000001 ETH
104361512024-05-25 12:36:30333 days ago1716640590
0x909236c8...aBD59Cfb5
0.00000001 ETH
104361352024-05-25 12:35:58333 days ago1716640558
0x909236c8...aBD59Cfb5
0.00000001 ETH
104361212024-05-25 12:35:30333 days ago1716640530
0x909236c8...aBD59Cfb5
0.00000001 ETH
104361052024-05-25 12:34:58333 days ago1716640498
0x909236c8...aBD59Cfb5
0.00000001 ETH
104360902024-05-25 12:34:28333 days ago1716640468
0x909236c8...aBD59Cfb5
0.00000001 ETH
104360742024-05-25 12:33:56333 days ago1716640436
0x909236c8...aBD59Cfb5
0.00000001 ETH
104360592024-05-25 12:33:26333 days ago1716640406
0x909236c8...aBD59Cfb5
0.00000001 ETH
104360432024-05-25 12:32:54333 days ago1716640374
0x909236c8...aBD59Cfb5
0.00000001 ETH
104360272024-05-25 12:32:22333 days ago1716640342
0x909236c8...aBD59Cfb5
0.00000001 ETH
104360152024-05-25 12:31:58333 days ago1716640318
0x909236c8...aBD59Cfb5
0.00000001 ETH
104359992024-05-25 12:31:26333 days ago1716640286
0x909236c8...aBD59Cfb5
0.00000001 ETH
104359122024-05-25 12:28:32333 days ago1716640112
0x909236c8...aBD59Cfb5
0.00000001 ETH
104358952024-05-25 12:27:58333 days ago1716640078
0x909236c8...aBD59Cfb5
0.00000001 ETH
104358822024-05-25 12:27:32333 days ago1716640052
0x909236c8...aBD59Cfb5
0.00000001 ETH
104358682024-05-25 12:27:04333 days ago1716640024
0x909236c8...aBD59Cfb5
0.00000001 ETH
104358542024-05-25 12:26:36333 days ago1716639996
0x909236c8...aBD59Cfb5
0.00000001 ETH
104358402024-05-25 12:26:08333 days ago1716639968
0x909236c8...aBD59Cfb5
0.00000001 ETH
104358242024-05-25 12:25:36333 days ago1716639936
0x909236c8...aBD59Cfb5
0.00000001 ETH
104358092024-05-25 12:25:06333 days ago1716639906
0x909236c8...aBD59Cfb5
0.00000001 ETH
104357922024-05-25 12:24:32333 days ago1716639872
0x909236c8...aBD59Cfb5
0.00000001 ETH
104357762024-05-25 12:24:00333 days ago1716639840
0x909236c8...aBD59Cfb5
0.00000001 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.