Base Sepolia Testnet

Contract

0xA60998dED85413b0086914F653198C829000F9E0

Overview

ETH Balance

0.090236546 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer101183612024-05-18 4:03:30340 days ago1716005010IN
0xA60998dE...29000F9E0
0.1 ETH0.00003151.50000026

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
103378122024-05-23 5:58:32335 days ago1716443912
0xA60998dE...29000F9E0
0.00001 ETH
103377982024-05-23 5:58:04335 days ago1716443884
0xA60998dE...29000F9E0
0.00001 ETH
103377862024-05-23 5:57:40335 days ago1716443860
0xA60998dE...29000F9E0
0.0001 ETH
103377722024-05-23 5:57:12335 days ago1716443832
0xA60998dE...29000F9E0
0.00001 ETH
103377582024-05-23 5:56:44335 days ago1716443804
0xA60998dE...29000F9E0
0.00001 ETH
103377462024-05-23 5:56:20335 days ago1716443780
0xA60998dE...29000F9E0
0.00001 ETH
103377152024-05-23 5:55:18335 days ago1716443718
0xA60998dE...29000F9E0
0.00001 ETH
103377012024-05-23 5:54:50335 days ago1716443690
0xA60998dE...29000F9E0
0.0001 ETH
103376882024-05-23 5:54:24335 days ago1716443664
0xA60998dE...29000F9E0
0.0001 ETH
103376742024-05-23 5:53:56335 days ago1716443636
0xA60998dE...29000F9E0
0.0001 ETH
103376592024-05-23 5:53:26335 days ago1716443606
0xA60998dE...29000F9E0
0.00001 ETH
103376412024-05-23 5:52:50335 days ago1716443570
0xA60998dE...29000F9E0
0.00001 ETH
103376292024-05-23 5:52:26335 days ago1716443546
0xA60998dE...29000F9E0
0.0001 ETH
103376142024-05-23 5:51:56335 days ago1716443516
0xA60998dE...29000F9E0
0.0001 ETH
103375952024-05-23 5:51:18335 days ago1716443478
0xA60998dE...29000F9E0
0.00001 ETH
103375832024-05-23 5:50:54335 days ago1716443454
0xA60998dE...29000F9E0
0.00001 ETH
103375702024-05-23 5:50:28335 days ago1716443428
0xA60998dE...29000F9E0
0.00001 ETH
103375522024-05-23 5:49:52335 days ago1716443392
0xA60998dE...29000F9E0
0.00001 ETH
103375392024-05-23 5:49:26335 days ago1716443366
0xA60998dE...29000F9E0
0.00001 ETH
103375272024-05-23 5:49:02335 days ago1716443342
0xA60998dE...29000F9E0
0.00001 ETH
103375082024-05-23 5:48:24335 days ago1716443304
0xA60998dE...29000F9E0
0.00001 ETH
103374962024-05-23 5:48:00335 days ago1716443280
0xA60998dE...29000F9E0
0.000001 ETH
103374792024-05-23 5:47:26335 days ago1716443246
0xA60998dE...29000F9E0
0.00001 ETH
103374672024-05-23 5:47:02335 days ago1716443222
0xA60998dE...29000F9E0
0.0001 ETH
103374532024-05-23 5:46:34335 days ago1716443194
0xA60998dE...29000F9E0
0.00001 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.