Base Sepolia Testnet

Contract

0x0B90C6b8456f5e36B31c332E9003BEA1B990fcF9

Overview

ETH Balance

0.0134569 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer101331512024-05-18 12:16:30340 days ago1716034590IN
0x0B90C6b8...1B990fcF9
0.0157 ETH0.000000020.00110028

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
104191502024-05-25 3:09:48333 days ago1716606588
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104191342024-05-25 3:09:16333 days ago1716606556
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104190922024-05-25 3:07:52333 days ago1716606472
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104190642024-05-25 3:06:56333 days ago1716606416
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104190182024-05-25 3:05:24333 days ago1716606324
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104189622024-05-25 3:03:32333 days ago1716606212
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104189202024-05-25 3:02:08333 days ago1716606128
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104188842024-05-25 3:00:56333 days ago1716606056
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104188582024-05-25 3:00:04333 days ago1716606004
0x0B90C6b8...1B990fcF9
0.00000126 ETH
104188342024-05-25 2:59:16333 days ago1716605956
0x0B90C6b8...1B990fcF9
0.00000126 ETH
103400052024-05-23 7:11:38335 days ago1716448298
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103399742024-05-23 7:10:36335 days ago1716448236
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103399572024-05-23 7:10:02335 days ago1716448202
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103399292024-05-23 7:09:06335 days ago1716448146
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103399062024-05-23 7:08:20335 days ago1716448100
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103398692024-05-23 7:07:06335 days ago1716448026
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103398242024-05-23 7:05:36335 days ago1716447936
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103398122024-05-23 7:05:12335 days ago1716447912
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103397562024-05-23 7:03:20335 days ago1716447800
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103397442024-05-23 7:02:56335 days ago1716447776
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103397182024-05-23 7:02:04335 days ago1716447724
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103396992024-05-23 7:01:26335 days ago1716447686
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103396822024-05-23 7:00:52335 days ago1716447652
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103396242024-05-23 6:58:56335 days ago1716447536
0x0B90C6b8...1B990fcF9
0.00000076 ETH
103395122024-05-23 6:55:12335 days ago1716447312
0x0B90C6b8...1B990fcF9
0.00000076 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.