ETH Price: $2,066.95 (-2.50%)
Gas: 0.04 Gwei

Contract

0x073Aa92997885dFdaFEFdE59cEBc0E6074E7bb40
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer237467702025-11-07 10:22:47118 days ago1762510967IN
0x073Aa929...074E7bb40
0.346681 ETH0.000043881.60018681
Transfer237198412025-11-03 15:57:47122 days ago1762185467IN
0x073Aa929...074E7bb40
0.0057 ETH0.000332812.13605753
Transfer219641552025-03-03 5:05:35368 days ago1740978335IN
0x073Aa929...074E7bb40
0.0062 ETH0.00002491.18598779

Latest 23 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer*237467772025-11-07 10:24:11118 days ago1762511051
0x073Aa929...074E7bb40
0.3456132 ETH
Transfer237467742025-11-07 10:23:35118 days ago1762511015
0x073Aa929...074E7bb40
0.00000488 ETH
Transfer237467742025-11-07 10:23:35118 days ago1762511015
0x073Aa929...074E7bb40
0.00106291 ETH
Transfer237198452025-11-03 15:58:35122 days ago1762185515
0x073Aa929...074E7bb40
0.0000114 ETH
Transfer237198452025-11-03 15:58:35122 days ago1762185515
0x073Aa929...074E7bb40
0.00383265 ETH
Transfer*237198452025-11-03 15:58:35122 days ago1762185515
0x073Aa929...074E7bb40
0.00185594 ETH
Transfer237134032025-11-02 18:23:23123 days ago1762107803
0x073Aa929...074E7bb40
0.00045961 ETH
Transfer237134032025-11-02 18:23:23123 days ago1762107803
0x073Aa929...074E7bb40
0.06156765 ETH
Transfer237134012025-11-02 18:22:59123 days ago1762107779
0x073Aa929...074E7bb40
0.06202727 ETH
Transfer237124472025-11-02 15:10:47123 days ago1762096247
0x073Aa929...074E7bb40
0.00053029 ETH
Transfer237124472025-11-02 15:10:47123 days ago1762096247
0x073Aa929...074E7bb40
0.19451291 ETH
Transfer237124452025-11-02 15:10:23123 days ago1762096223
0x073Aa929...074E7bb40
0.1950432 ETH
Transfer237120372025-11-02 13:48:11123 days ago1762091291
0x073Aa929...074E7bb40
0.00047937 ETH
Transfer237120372025-11-02 13:48:11123 days ago1762091291
0x073Aa929...074E7bb40
0.12870161 ETH
Transfer237120322025-11-02 13:47:11123 days ago1762091231
0x073Aa929...074E7bb40
0.12918098 ETH
Transfer237104082025-11-02 8:20:11123 days ago1762071611
0x073Aa929...074E7bb40
0.00045602 ETH
Transfer237104082025-11-02 8:20:11123 days ago1762071611
0x073Aa929...074E7bb40
0.08410446 ETH
Transfer237104052025-11-02 8:19:35123 days ago1762071575
0x073Aa929...074E7bb40
0.08456048 ETH
Transfer237065992025-11-01 19:34:35124 days ago1762025675
0x073Aa929...074E7bb40
0.00045894 ETH
Transfer237065992025-11-01 19:34:35124 days ago1762025675
0x073Aa929...074E7bb40
0.06954884 ETH
Transfer237065972025-11-01 19:34:11124 days ago1762025651
0x073Aa929...074E7bb40
0.07000779 ETH
Transfer*219641682025-03-03 5:08:11368 days ago1740978491
0x073Aa929...074E7bb40
0.0062 ETH
0x60803461219641682025-03-03 5:08:11368 days ago1740978491  Contract Creation0 ETH
Loading...
Loading
Loading...
Loading

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x47Fb709D...8E996C4B3
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:
london 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
{
  "viaIR": true,
  "metadata": {
    "bytecodeHash": "ipfs",
    "useLiteralContent": true
  },
  "optimizer": {
    "runs": 800,
    "enabled": true
  },
  "evmVersion": "london",
  "remappings": [],
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  }
}

Contract Security Audit

Contract ABI

API
[{"inputs":[{"internalType":"address","name":"_implementation","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"stateMutability":"payable","type":"fallback"}]

0x6080346100aa57601f61012038819003918201601f19168301916001600160401b038311848410176100af578084926020946040528339810103126100aa57516001600160a01b0381168082036100aa5715610065573055604051605a90816100c68239f35b60405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420696d706c656d656e746174696f6e206164647265737300006044820152606490fd5b600080fd5b634e487b7160e01b600052604160045260246000fdfe608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220a03b18dce0be0b4c9afe58a9eb85c35205e2cf087da098bbf1d23945bf89496064736f6c63430008110033000000000000000000000000d315125a705df47bdb0f7451f937e62aa7a09e0e

Deployed Bytecode

0x608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220a03b18dce0be0b4c9afe58a9eb85c35205e2cf087da098bbf1d23945bf89496064736f6c63430008110033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
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.