Base Sepolia Testnet

Contract

0xd3783d6FC472D4cD5369ebCa3580d9201a63b409

Overview

ETH Balance

0.00032509233465091 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer99499482024-05-14 6:29:44344 days ago1715668184IN
0xd3783d6F...01a63b409
0.09 ETH0.00003151.50000028

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
157784062024-09-26 4:31:40209 days ago1727325100
0xd3783d6F...01a63b409
0.04856784 ETH
113844542024-06-16 11:26:36311 days ago1718537196
0xd3783d6F...01a63b409
0.000041 ETH
113844192024-06-16 11:25:26311 days ago1718537126
0xd3783d6F...01a63b409
0.000031 ETH
113843822024-06-16 11:24:12311 days ago1718537052
0xd3783d6F...01a63b409
0.000033 ETH
113843272024-06-16 11:22:22311 days ago1718536942
0xd3783d6F...01a63b409
0.000034 ETH
113842942024-06-16 11:21:16311 days ago1718536876
0xd3783d6F...01a63b409
0.000053 ETH
113842632024-06-16 11:20:14311 days ago1718536814
0xd3783d6F...01a63b409
0.000064 ETH
113842322024-06-16 11:19:12311 days ago1718536752
0xd3783d6F...01a63b409
0.000041 ETH
113841982024-06-16 11:18:04311 days ago1718536684
0xd3783d6F...01a63b409
0.000031 ETH
113841682024-06-16 11:17:04311 days ago1718536624
0xd3783d6F...01a63b409
0.000036 ETH
113841332024-06-16 11:15:54311 days ago1718536554
0xd3783d6F...01a63b409
0.000036 ETH
113841022024-06-16 11:14:52311 days ago1718536492
0xd3783d6F...01a63b409
0.000033 ETH
113840702024-06-16 11:13:48311 days ago1718536428
0xd3783d6F...01a63b409
0.000038 ETH
113840302024-06-16 11:12:28311 days ago1718536348
0xd3783d6F...01a63b409
0.00003 ETH
113839872024-06-16 11:11:02311 days ago1718536262
0xd3783d6F...01a63b409
0.00006 ETH
113839522024-06-16 11:09:52311 days ago1718536192
0xd3783d6F...01a63b409
0.000048 ETH
113839172024-06-16 11:08:42311 days ago1718536122
0xd3783d6F...01a63b409
0.000037 ETH
113838822024-06-16 11:07:32311 days ago1718536052
0xd3783d6F...01a63b409
0.000051 ETH
113838182024-06-16 11:05:24311 days ago1718535924
0xd3783d6F...01a63b409
0.000046 ETH
113837842024-06-16 11:04:16311 days ago1718535856
0xd3783d6F...01a63b409
0.000044 ETH
113837392024-06-16 11:02:46311 days ago1718535766
0xd3783d6F...01a63b409
0.000051 ETH
113836932024-06-16 11:01:14311 days ago1718535674
0xd3783d6F...01a63b409
0.000053 ETH
113836352024-06-16 10:59:18311 days ago1718535558
0xd3783d6F...01a63b409
0.000058 ETH
113834842024-06-16 10:54:16311 days ago1718535256
0xd3783d6F...01a63b409
0.000041 ETH
113834522024-06-16 10:53:12311 days ago1718535192
0xd3783d6F...01a63b409
0.000055 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.