Base Sepolia Testnet

Contract

0xCD1e04D3350425fD1a46897c4706d3eDb8347409

Overview

ETH Balance

0.00000399999978054 ETH

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer105466462024-05-28 1:59:40330 days ago1716861580IN
0xCD1e04D3...Db8347409
0.000004 ETH0.000000020.00100029

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
127249992024-07-17 12:11:26280 days ago1721218286
0xCD1e04D3...Db8347409
27 wei
126680662024-07-16 4:33:40281 days ago1721104420
0xCD1e04D3...Db8347409
27 wei
126680012024-07-16 4:31:30281 days ago1721104290
0xCD1e04D3...Db8347409
27 wei
126678412024-07-16 4:26:10281 days ago1721103970
0xCD1e04D3...Db8347409
27 wei
126676002024-07-16 4:18:08281 days ago1721103488
0xCD1e04D3...Db8347409
27 wei
126674472024-07-16 4:13:02281 days ago1721103182
0xCD1e04D3...Db8347409
27 wei
126667302024-07-16 3:49:08281 days ago1721101748
0xCD1e04D3...Db8347409
27 wei
126658352024-07-16 3:19:18281 days ago1721099958
0xCD1e04D3...Db8347409
27 wei
126655772024-07-16 3:10:42281 days ago1721099442
0xCD1e04D3...Db8347409
27 wei
126653892024-07-16 3:04:26281 days ago1721099066
0xCD1e04D3...Db8347409
27 wei
126652172024-07-16 2:58:42281 days ago1721098722
0xCD1e04D3...Db8347409
27 wei
126646172024-07-16 2:38:42281 days ago1721097522
0xCD1e04D3...Db8347409
27 wei
126639762024-07-16 2:17:20281 days ago1721096240
0xCD1e04D3...Db8347409
27 wei
126638332024-07-16 2:12:34281 days ago1721095954
0xCD1e04D3...Db8347409
27 wei
126636712024-07-16 2:07:10281 days ago1721095630
0xCD1e04D3...Db8347409
27 wei
126631612024-07-16 1:50:10281 days ago1721094610
0xCD1e04D3...Db8347409
27 wei
126625702024-07-16 1:30:28281 days ago1721093428
0xCD1e04D3...Db8347409
27 wei
126620762024-07-16 1:14:00281 days ago1721092440
0xCD1e04D3...Db8347409
27 wei
126606442024-07-16 0:26:16281 days ago1721089576
0xCD1e04D3...Db8347409
27 wei
126605802024-07-16 0:24:08281 days ago1721089448
0xCD1e04D3...Db8347409
27 wei
126600032024-07-16 0:04:54281 days ago1721088294
0xCD1e04D3...Db8347409
27 wei
126369432024-07-15 11:16:14282 days ago1721042174
0xCD1e04D3...Db8347409
27 wei
126360562024-07-15 10:46:40282 days ago1721040400
0xCD1e04D3...Db8347409
27 wei
126356942024-07-15 10:34:36282 days ago1721039676
0xCD1e04D3...Db8347409
27 wei
126353362024-07-15 10:22:40282 days ago1721038960
0xCD1e04D3...Db8347409
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.