Base Sepolia Testnet

Contract

0xAa5EdCEe79C370B291808f562D1E32f0f3755B87

Overview

ETH Balance

0 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To

There are no matching entries

> 10 Internal Transactions and 4 Token Transfers found.

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
151689172024-09-12 1:55:22223 days ago1726106122
0xAa5EdCEe...0f3755B87
0.00009878 ETH
151689172024-09-12 1:55:22223 days ago1726106122
0xAa5EdCEe...0f3755B87
0.00009878 ETH
151687732024-09-12 1:50:34223 days ago1726105834
0xAa5EdCEe...0f3755B87
0.00056312 ETH
151687732024-09-12 1:50:34223 days ago1726105834
0xAa5EdCEe...0f3755B87
0.00056312 ETH
150332242024-09-08 22:32:16226 days ago1725834736
0xAa5EdCEe...0f3755B87
0.0005 ETH
150332242024-09-08 22:32:16226 days ago1725834736
0xAa5EdCEe...0f3755B87
0.0005 ETH
148647762024-09-05 0:57:20230 days ago1725497840
0xAa5EdCEe...0f3755B87
0.00002987 ETH
148647762024-09-05 0:57:20230 days ago1725497840
0xAa5EdCEe...0f3755B87
0.00002987 ETH
148645972024-09-05 0:51:22230 days ago1725497482
0xAa5EdCEe...0f3755B87
0.0000125 ETH
148645972024-09-05 0:51:22230 days ago1725497482
0xAa5EdCEe...0f3755B87
0.0000125 ETH
146274992024-08-30 13:08:06235 days ago1725023286
0xAa5EdCEe...0f3755B87
0.000222 ETH
146274992024-08-30 13:08:06235 days ago1725023286
0xAa5EdCEe...0f3755B87
0.000222 ETH
146272822024-08-30 13:00:52235 days ago1725022852
0xAa5EdCEe...0f3755B87
0.000085 ETH
146272822024-08-30 13:00:52235 days ago1725022852
0xAa5EdCEe...0f3755B87
0.000085 ETH
145515702024-08-28 18:57:08237 days ago1724871428
0xAa5EdCEe...0f3755B87
0.000888 ETH
145515702024-08-28 18:57:08237 days ago1724871428
0xAa5EdCEe...0f3755B87
0.000888 ETH
145513532024-08-28 18:49:54237 days ago1724870994
0xAa5EdCEe...0f3755B87
0.000555 ETH
145513532024-08-28 18:49:54237 days ago1724870994
0xAa5EdCEe...0f3755B87
0.000555 ETH
145047672024-08-27 16:57:02238 days ago1724777822
0xAa5EdCEe...0f3755B87
0.00088 ETH
145047672024-08-27 16:57:02238 days ago1724777822
0xAa5EdCEe...0f3755B87
0.00088 ETH
145046922024-08-27 16:54:32238 days ago1724777672
0xAa5EdCEe...0f3755B87
0.0009854 ETH
145046922024-08-27 16:54:32238 days ago1724777672
0xAa5EdCEe...0f3755B87
0.0009854 ETH
145046332024-08-27 16:52:34238 days ago1724777554
0xAa5EdCEe...0f3755B87
0.000099 ETH
145046332024-08-27 16:52:34238 days ago1724777554
0xAa5EdCEe...0f3755B87
0.000099 ETH
143271802024-08-23 14:17:28242 days ago1724422648
0xAa5EdCEe...0f3755B87
0.000088 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  ]

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.