Base Sepolia Testnet

Contract

0x7C36241F9dFaBF8179BCFBFAE22Fe2C083Dc4d6D

Overview

ETH Balance

0.01980148 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer101328062024-05-18 12:05:00340 days ago1716033900IN
0x7C36241F...083Dc4d6D
0.0215 ETH0.000000020.00110028

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
103408902024-05-23 7:41:08335 days ago1716450068
0x7C36241F...083Dc4d6D
0.00000062 ETH
103408392024-05-23 7:39:26335 days ago1716449966
0x7C36241F...083Dc4d6D
0.00000062 ETH
103407102024-05-23 7:35:08335 days ago1716449708
0x7C36241F...083Dc4d6D
0.00000062 ETH
103406552024-05-23 7:33:18335 days ago1716449598
0x7C36241F...083Dc4d6D
0.00000062 ETH
103406392024-05-23 7:32:46335 days ago1716449566
0x7C36241F...083Dc4d6D
0.00000062 ETH
103406292024-05-23 7:32:26335 days ago1716449546
0x7C36241F...083Dc4d6D
0.00000062 ETH
103405762024-05-23 7:30:40335 days ago1716449440
0x7C36241F...083Dc4d6D
0.00000062 ETH
103405522024-05-23 7:29:52335 days ago1716449392
0x7C36241F...083Dc4d6D
0.00000062 ETH
103404512024-05-23 7:26:30335 days ago1716449190
0x7C36241F...083Dc4d6D
0.00000062 ETH
103404342024-05-23 7:25:56335 days ago1716449156
0x7C36241F...083Dc4d6D
0.00000062 ETH
103404132024-05-23 7:25:14335 days ago1716449114
0x7C36241F...083Dc4d6D
0.00000062 ETH
103404032024-05-23 7:24:54335 days ago1716449094
0x7C36241F...083Dc4d6D
0.00000062 ETH
103403912024-05-23 7:24:30335 days ago1716449070
0x7C36241F...083Dc4d6D
0.00000062 ETH
103403792024-05-23 7:24:06335 days ago1716449046
0x7C36241F...083Dc4d6D
0.00000062 ETH
103403722024-05-23 7:23:52335 days ago1716449032
0x7C36241F...083Dc4d6D
0.00000062 ETH
103403512024-05-23 7:23:10335 days ago1716448990
0x7C36241F...083Dc4d6D
0.00000062 ETH
103403342024-05-23 7:22:36335 days ago1716448956
0x7C36241F...083Dc4d6D
0.00000062 ETH
103402262024-05-23 7:19:00335 days ago1716448740
0x7C36241F...083Dc4d6D
0.00000062 ETH
103402092024-05-23 7:18:26335 days ago1716448706
0x7C36241F...083Dc4d6D
0.00000062 ETH
103401842024-05-23 7:17:36335 days ago1716448656
0x7C36241F...083Dc4d6D
0.00000062 ETH
103401672024-05-23 7:17:02335 days ago1716448622
0x7C36241F...083Dc4d6D
0.00000062 ETH
103401552024-05-23 7:16:38335 days ago1716448598
0x7C36241F...083Dc4d6D
0.00000062 ETH
103401232024-05-23 7:15:34335 days ago1716448534
0x7C36241F...083Dc4d6D
0.00000062 ETH
102911512024-05-22 4:03:10336 days ago1716350590
0x7C36241F...083Dc4d6D
0.00000877 ETH
102910732024-05-22 4:00:34336 days ago1716350434
0x7C36241F...083Dc4d6D
0.00000877 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.