Base Sepolia Testnet

Contract

0x7d324f7F8Be7C295D0853e36f92bAAaeB6b65eF4

Overview

ETH Balance

0.000003999999781296 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer105083932024-05-27 4:44:34331 days ago1716785074IN
0x7d324f7F...eB6b65eF4
0.000004 ETH0.000000020.00100029

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
127252932024-07-17 12:21:14280 days ago1721218874
0x7d324f7F...eB6b65eF4
27 wei
126717402024-07-16 6:36:08281 days ago1721111768
0x7d324f7F...eB6b65eF4
27 wei
126714882024-07-16 6:27:44281 days ago1721111264
0x7d324f7F...eB6b65eF4
27 wei
126705362024-07-16 5:56:00281 days ago1721109360
0x7d324f7F...eB6b65eF4
27 wei
126702802024-07-16 5:47:28281 days ago1721108848
0x7d324f7F...eB6b65eF4
27 wei
126701382024-07-16 5:42:44281 days ago1721108564
0x7d324f7F...eB6b65eF4
27 wei
126700222024-07-16 5:38:52281 days ago1721108332
0x7d324f7F...eB6b65eF4
27 wei
126695822024-07-16 5:24:12281 days ago1721107452
0x7d324f7F...eB6b65eF4
27 wei
126687592024-07-16 4:56:46281 days ago1721105806
0x7d324f7F...eB6b65eF4
27 wei
126674182024-07-16 4:12:04281 days ago1721103124
0x7d324f7F...eB6b65eF4
27 wei
126661312024-07-16 3:29:10281 days ago1721100550
0x7d324f7F...eB6b65eF4
27 wei
126660242024-07-16 3:25:36281 days ago1721100336
0x7d324f7F...eB6b65eF4
27 wei
126651922024-07-16 2:57:52281 days ago1721098672
0x7d324f7F...eB6b65eF4
27 wei
126642742024-07-16 2:27:16281 days ago1721096836
0x7d324f7F...eB6b65eF4
27 wei
126641942024-07-16 2:24:36281 days ago1721096676
0x7d324f7F...eB6b65eF4
27 wei
126635702024-07-16 2:03:48281 days ago1721095428
0x7d324f7F...eB6b65eF4
27 wei
126621082024-07-16 1:15:04281 days ago1721092504
0x7d324f7F...eB6b65eF4
27 wei
126613432024-07-16 0:49:34281 days ago1721090974
0x7d324f7F...eB6b65eF4
27 wei
126612532024-07-16 0:46:34281 days ago1721090794
0x7d324f7F...eB6b65eF4
27 wei
126611922024-07-16 0:44:32281 days ago1721090672
0x7d324f7F...eB6b65eF4
27 wei
126605442024-07-16 0:22:56281 days ago1721089376
0x7d324f7F...eB6b65eF4
27 wei
126243602024-07-15 4:16:48282 days ago1721017008
0x7d324f7F...eB6b65eF4
27 wei
126240952024-07-15 4:07:58282 days ago1721016478
0x7d324f7F...eB6b65eF4
27 wei
126239322024-07-15 4:02:32282 days ago1721016152
0x7d324f7F...eB6b65eF4
27 wei
126234952024-07-15 3:47:58282 days ago1721015278
0x7d324f7F...eB6b65eF4
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.