Base Sepolia Testnet

Contract

0x13fd66B13b9a4F82c6Acf30647bdFB6F3203bD48

Overview

ETH Balance

0.00000000000097991 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
127126502024-07-17 5:19:48280 days ago1721193588
0x13fd66B1...F3203bD48
27 wei
127096672024-07-17 3:40:22280 days ago1721187622
0x13fd66B1...F3203bD48
27 wei
127089262024-07-17 3:15:40280 days ago1721186140
0x13fd66B1...F3203bD48
27 wei
127080382024-07-17 2:46:04280 days ago1721184364
0x13fd66B1...F3203bD48
27 wei
127071212024-07-17 2:15:30280 days ago1721182530
0x13fd66B1...F3203bD48
27 wei
127064982024-07-17 1:54:44280 days ago1721181284
0x13fd66B1...F3203bD48
27 wei
127059262024-07-17 1:35:40280 days ago1721180140
0x13fd66B1...F3203bD48
27 wei
127058722024-07-17 1:33:52280 days ago1721180032
0x13fd66B1...F3203bD48
27 wei
127047562024-07-17 0:56:40280 days ago1721177800
0x13fd66B1...F3203bD48
27 wei
127036552024-07-17 0:19:58280 days ago1721175598
0x13fd66B1...F3203bD48
27 wei
126683532024-07-16 4:43:14281 days ago1721104994
0x13fd66B1...F3203bD48
27 wei
126675982024-07-16 4:18:04281 days ago1721103484
0x13fd66B1...F3203bD48
27 wei
126673872024-07-16 4:11:02281 days ago1721103062
0x13fd66B1...F3203bD48
27 wei
126671252024-07-16 4:02:18281 days ago1721102538
0x13fd66B1...F3203bD48
27 wei
126668172024-07-16 3:52:02281 days ago1721101922
0x13fd66B1...F3203bD48
27 wei
126666652024-07-16 3:46:58281 days ago1721101618
0x13fd66B1...F3203bD48
27 wei
126658752024-07-16 3:20:38281 days ago1721100038
0x13fd66B1...F3203bD48
27 wei
126655232024-07-16 3:08:54281 days ago1721099334
0x13fd66B1...F3203bD48
27 wei
126624092024-07-16 1:25:06281 days ago1721093106
0x13fd66B1...F3203bD48
27 wei
126621732024-07-16 1:17:14281 days ago1721092634
0x13fd66B1...F3203bD48
27 wei
126620362024-07-16 1:12:40281 days ago1721092360
0x13fd66B1...F3203bD48
27 wei
126619052024-07-16 1:08:18281 days ago1721092098
0x13fd66B1...F3203bD48
27 wei
126617752024-07-16 1:03:58281 days ago1721091838
0x13fd66B1...F3203bD48
27 wei
126610802024-07-16 0:40:48281 days ago1721090448
0x13fd66B1...F3203bD48
27 wei
126609012024-07-16 0:34:50281 days ago1721090090
0x13fd66B1...F3203bD48
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  ]

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.