Base Sepolia Testnet

Contract

0xAF206412F095f077e5a0008B5837CC853fa78ae3

Overview

ETH Balance

0.000003999999123191 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer103149702024-05-22 17:17:08335 days ago1716398228IN
0xAF206412...53fa78ae3
0.000004 ETH0.000000230.01130481

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
127252472024-07-17 12:19:42280 days ago1721218782
0xAF206412...53fa78ae3
27 wei
127250722024-07-17 12:13:52280 days ago1721218432
0xAF206412...53fa78ae3
27 wei
127204352024-07-17 9:39:18280 days ago1721209158
0xAF206412...53fa78ae3
27 wei
127165042024-07-17 7:28:16280 days ago1721201296
0xAF206412...53fa78ae3
27 wei
127123012024-07-17 5:08:10280 days ago1721192890
0xAF206412...53fa78ae3
27 wei
127120102024-07-17 4:58:28280 days ago1721192308
0xAF206412...53fa78ae3
27 wei
127073202024-07-17 2:22:08280 days ago1721182928
0xAF206412...53fa78ae3
27 wei
127047342024-07-17 0:55:56280 days ago1721177756
0xAF206412...53fa78ae3
27 wei
127041842024-07-17 0:37:36280 days ago1721176656
0xAF206412...53fa78ae3
27 wei
127026862024-07-16 23:47:40280 days ago1721173660
0xAF206412...53fa78ae3
27 wei
127019582024-07-16 23:23:24280 days ago1721172204
0xAF206412...53fa78ae3
27 wei
127011192024-07-16 22:55:26280 days ago1721170526
0xAF206412...53fa78ae3
27 wei
126987232024-07-16 21:35:34280 days ago1721165734
0xAF206412...53fa78ae3
27 wei
126964892024-07-16 20:21:06280 days ago1721161266
0xAF206412...53fa78ae3
27 wei
126930182024-07-16 18:25:24280 days ago1721154324
0xAF206412...53fa78ae3
27 wei
126902862024-07-16 16:54:20280 days ago1721148860
0xAF206412...53fa78ae3
27 wei
126901182024-07-16 16:48:44280 days ago1721148524
0xAF206412...53fa78ae3
27 wei
126899642024-07-16 16:43:36280 days ago1721148216
0xAF206412...53fa78ae3
27 wei
126895162024-07-16 16:28:40280 days ago1721147320
0xAF206412...53fa78ae3
27 wei
126890382024-07-16 16:12:44280 days ago1721146364
0xAF206412...53fa78ae3
27 wei
126820712024-07-16 12:20:30281 days ago1721132430
0xAF206412...53fa78ae3
27 wei
126792322024-07-16 10:45:52281 days ago1721126752
0xAF206412...53fa78ae3
27 wei
126289332024-07-15 6:49:14282 days ago1721026154
0xAF206412...53fa78ae3
27 wei
126283022024-07-15 6:28:12282 days ago1721024892
0xAF206412...53fa78ae3
27 wei
126274872024-07-15 6:01:02282 days ago1721023262
0xAF206412...53fa78ae3
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.