Base Sepolia Testnet

Contract

0x17C64039A28B2E207A5a22fA678d259790c692E3

Overview

ETH Balance

0.620020000000000003 ETH

Token Holdings

Multichain Info

N/A
Transaction Hash
Method
Block
From
To
Transfer140670292024-08-17 13:45:46249 days ago1723902346IN
0x17C64039...790c692E3
0.12 ETH0.000041131.50000033
Transfer138009402024-08-11 9:56:08255 days ago1723370168IN
0x17C64039...790c692E3
0.5 ETH0.000041351.50815153
Transfer130202402024-07-24 8:12:48273 days ago1721808768IN
0x17C64039...790c692E3
0.5 ETH0.000162855.9386327
Transfer116379152024-06-22 8:15:18305 days ago1719044118IN
0x17C64039...790c692E3
1.5 ETH0.000000020.00100029
Transfer106964232024-05-31 13:12:14327 days ago1717161134IN
0x17C64039...790c692E3
0.6 ETH0.000000020.00100026
Transfer106848882024-05-31 6:47:44327 days ago1717138064IN
0x17C64039...790c692E3
0.4 ETH0.000000020.00100025
Transfer103894332024-05-24 10:39:14334 days ago1716547154IN
0x17C64039...790c692E3
1 ETH0.000000020.00100029
Transfer100629212024-05-16 21:15:30341 days ago1715894130IN
0x17C64039...790c692E3
0.5 ETH0.000000020.00132905

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
149821132024-09-07 18:08:34227 days ago1725732514
0x17C64039...790c692E3
0.00008 ETH
149821132024-09-07 18:08:34227 days ago1725732514
0x17C64039...790c692E3
0.00008 ETH
149821132024-09-07 18:08:34227 days ago1725732514
0x17C64039...790c692E3
0.00008 ETH
139438462024-08-14 17:19:40251 days ago1723655980
0x17C64039...790c692E3
0.00013 ETH
139438462024-08-14 17:19:40251 days ago1723655980
0x17C64039...790c692E3
0.00013 ETH
139438302024-08-14 17:19:08251 days ago1723655948
0x17C64039...790c692E3
0.0001 ETH
139438302024-08-14 17:19:08251 days ago1723655948
0x17C64039...790c692E3
0.0001 ETH
138807252024-08-13 6:15:38253 days ago1723529738
0x17C64039...790c692E3
0.0001 ETH
138807252024-08-13 6:15:38253 days ago1723529738
0x17C64039...790c692E3
0.0001 ETH
138806902024-08-13 6:14:28253 days ago1723529668
0x17C64039...790c692E3
0.00012 ETH
138806902024-08-13 6:14:28253 days ago1723529668
0x17C64039...790c692E3
0.00012 ETH
138806642024-08-13 6:13:36253 days ago1723529616
0x17C64039...790c692E3
0.00012 ETH
138806642024-08-13 6:13:36253 days ago1723529616
0x17C64039...790c692E3
0.00012 ETH
138806472024-08-13 6:13:02253 days ago1723529582
0x17C64039...790c692E3
0.00012 ETH
138806472024-08-13 6:13:02253 days ago1723529582
0x17C64039...790c692E3
0.00012 ETH
138806232024-08-13 6:12:14253 days ago1723529534
0x17C64039...790c692E3
0.0001 ETH
138806232024-08-13 6:12:14253 days ago1723529534
0x17C64039...790c692E3
0.0001 ETH
138572302024-08-12 17:12:28253 days ago1723482748
0x17C64039...790c692E3
0.0002 ETH
138572302024-08-12 17:12:28253 days ago1723482748
0x17C64039...790c692E3
0.0002 ETH
138571932024-08-12 17:11:14253 days ago1723482674
0x17C64039...790c692E3
0.00012 ETH
138571932024-08-12 17:11:14253 days ago1723482674
0x17C64039...790c692E3
0.00012 ETH
138571742024-08-12 17:10:36253 days ago1723482636
0x17C64039...790c692E3
0.0002 ETH
138571742024-08-12 17:10:36253 days ago1723482636
0x17C64039...790c692E3
0.0002 ETH
138027782024-08-11 10:57:24255 days ago1723373844
0x17C64039...790c692E3
0.00012 ETH
138027782024-08-11 10:57:24255 days ago1723373844
0x17C64039...790c692E3
0.00012 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.