Base Sepolia Testnet

Contract

0x66cb796cE51bF9737Ca6567F3Ed7409106F7D1e7

Overview

ETH Balance

0 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer112577002024-06-13 13:01:28313 days ago1718283688IN
0x66cb796c...106F7D1e7
0.34 ETH0.000000020.00097027
Transfer111823662024-06-11 19:10:20315 days ago1718133020IN
0x66cb796c...106F7D1e7
0.011458 ETH0.000000020.00097027

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
138277102024-08-12 0:48:28254 days ago1723423708
0x66cb796c...106F7D1e7
0.001 ETH
138277102024-08-12 0:48:28254 days ago1723423708
0x66cb796c...106F7D1e7
0.001 ETH
136630372024-08-08 5:19:22257 days ago1723094362
0x66cb796c...106F7D1e7
0.0000001 ETH
135915222024-08-06 13:35:32259 days ago1722951332
0x66cb796c...106F7D1e7
0.0000001 ETH
132358622024-07-29 8:00:12267 days ago1722240012
0x66cb796c...106F7D1e7
0.18408858 ETH
131299202024-07-26 21:08:48270 days ago1722028128
0x66cb796c...106F7D1e7
0.0006 ETH
131299202024-07-26 21:08:48270 days ago1722028128
0x66cb796c...106F7D1e7
0.0006 ETH
130146042024-07-24 5:04:56272 days ago1721797496
0x66cb796c...106F7D1e7
0.0006 ETH
130146042024-07-24 5:04:56272 days ago1721797496
0x66cb796c...106F7D1e7
0.0006 ETH
130146042024-07-24 5:04:56272 days ago1721797496
0x66cb796c...106F7D1e7
0.0006 ETH
130140692024-07-24 4:47:06272 days ago1721796426
0x66cb796c...106F7D1e7
0.00067541 ETH
130140692024-07-24 4:47:06272 days ago1721796426
0x66cb796c...106F7D1e7
0.00067541 ETH
130140692024-07-24 4:47:06272 days ago1721796426
0x66cb796c...106F7D1e7
0.00067541 ETH
130139362024-07-24 4:42:40272 days ago1721796160
0x66cb796c...106F7D1e7
0.0008 ETH
130139362024-07-24 4:42:40272 days ago1721796160
0x66cb796c...106F7D1e7
0.0008 ETH
130139362024-07-24 4:42:40272 days ago1721796160
0x66cb796c...106F7D1e7
0.0008 ETH
129898342024-07-23 15:19:16273 days ago1721747956
0x66cb796c...106F7D1e7
0.0006 ETH
129898342024-07-23 15:19:16273 days ago1721747956
0x66cb796c...106F7D1e7
0.0006 ETH
129898342024-07-23 15:19:16273 days ago1721747956
0x66cb796c...106F7D1e7
0.0006 ETH
129389852024-07-22 11:04:18274 days ago1721646258
0x66cb796c...106F7D1e7
0.0005 ETH
129389852024-07-22 11:04:18274 days ago1721646258
0x66cb796c...106F7D1e7
0.0005 ETH
129389852024-07-22 11:04:18274 days ago1721646258
0x66cb796c...106F7D1e7
0.0005 ETH
129379882024-07-22 10:31:04274 days ago1721644264
0x66cb796c...106F7D1e7
0.0005 ETH
129379882024-07-22 10:31:04274 days ago1721644264
0x66cb796c...106F7D1e7
0.0005 ETH
129379882024-07-22 10:31:04274 days ago1721644264
0x66cb796c...106F7D1e7
0.0005 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.