Base Sepolia Testnet

Contract

0x49a4BB83ec591418C5fd774B274dae56114cE501

Overview

ETH Balance

0.000003999999780216 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer105083762024-05-27 4:44:00331 days ago1716785040IN
0x49a4BB83...6114cE501
0.000004 ETH0.000000020.00100029

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
127253732024-07-17 12:23:54280 days ago1721219034
0x49a4BB83...6114cE501
27 wei
126747792024-07-16 8:17:26281 days ago1721117846
0x49a4BB83...6114cE501
27 wei
126735612024-07-16 7:36:50281 days ago1721115410
0x49a4BB83...6114cE501
27 wei
126729802024-07-16 7:17:28281 days ago1721114248
0x49a4BB83...6114cE501
27 wei
126685412024-07-16 4:49:30281 days ago1721105370
0x49a4BB83...6114cE501
27 wei
126683782024-07-16 4:44:04281 days ago1721105044
0x49a4BB83...6114cE501
27 wei
126674802024-07-16 4:14:08281 days ago1721103248
0x49a4BB83...6114cE501
27 wei
126673172024-07-16 4:08:42281 days ago1721102922
0x49a4BB83...6114cE501
27 wei
126672432024-07-16 4:06:14281 days ago1721102774
0x49a4BB83...6114cE501
27 wei
126668482024-07-16 3:53:04281 days ago1721101984
0x49a4BB83...6114cE501
27 wei
126660282024-07-16 3:25:44281 days ago1721100344
0x49a4BB83...6114cE501
27 wei
126655412024-07-16 3:09:30281 days ago1721099370
0x49a4BB83...6114cE501
27 wei
126648412024-07-16 2:46:10281 days ago1721097970
0x49a4BB83...6114cE501
27 wei
126640352024-07-16 2:19:18281 days ago1721096358
0x49a4BB83...6114cE501
27 wei
126637982024-07-16 2:11:24281 days ago1721095884
0x49a4BB83...6114cE501
27 wei
126629142024-07-16 1:41:56281 days ago1721094116
0x49a4BB83...6114cE501
27 wei
126619682024-07-16 1:10:24281 days ago1721092224
0x49a4BB83...6114cE501
27 wei
126618082024-07-16 1:05:04281 days ago1721091904
0x49a4BB83...6114cE501
27 wei
126603042024-07-16 0:14:56281 days ago1721088896
0x49a4BB83...6114cE501
27 wei
126602272024-07-16 0:12:22281 days ago1721088742
0x49a4BB83...6114cE501
27 wei
126600682024-07-16 0:07:04281 days ago1721088424
0x49a4BB83...6114cE501
27 wei
126291812024-07-15 6:57:30282 days ago1721026650
0x49a4BB83...6114cE501
27 wei
126288372024-07-15 6:46:02282 days ago1721025962
0x49a4BB83...6114cE501
27 wei
126264512024-07-15 5:26:30282 days ago1721021190
0x49a4BB83...6114cE501
27 wei
126257202024-07-15 5:02:08282 days ago1721019728
0x49a4BB83...6114cE501
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.