ETH Price: $1,982.20 (-3.95%)

Contract

0x2DBa6ccAC1676e1EF07b67f83FfE80eDb228ab7E
 

Overview

ETH Balance

0.000062420165498534 ETH

Eth Value

$0.12 (@ $1,982.20/ETH)

Token Holdings

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Transfer237195332025-11-03 14:55:11144 days ago1762181711IN
0x2DBa6ccA...Db228ab7E
0.01086101 ETH0.000083913.06003436
Transfer237184652025-11-03 11:20:59144 days ago1762168859IN
0x2DBa6ccA...Db228ab7E
0.01048061 ETH0.000048662.31738575

Latest 13 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer237197852025-11-03 15:45:59144 days ago1762184759
0x2DBa6ccA...Db228ab7E
0.127 ETH
Transfer237197852025-11-03 15:45:59144 days ago1762184759
0x2DBa6ccA...Db228ab7E
0.00193779 ETH
Transfer237197672025-11-03 15:42:11144 days ago1762184531
0x2DBa6ccA...Db228ab7E
0.002 ETH
Transfer237197672025-11-03 15:42:11144 days ago1762184531
0x2DBa6ccA...Db228ab7E
0.00416291 ETH
Transfer237197582025-11-03 15:40:23144 days ago1762184423
0x2DBa6ccA...Db228ab7E
0.12476002 ETH
Transfer237195472025-11-03 14:57:59144 days ago1762181879
0x2DBa6ccA...Db228ab7E
0.0004717 ETH
Transfer237187822025-11-03 12:24:47144 days ago1762172687
0x2DBa6ccA...Db228ab7E
0.00023917 ETH
Transfer237187792025-11-03 12:24:11144 days ago1762172651
0x2DBa6ccA...Db228ab7E
0.00023987 ETH
Transfer237187772025-11-03 12:23:47144 days ago1762172627
0x2DBa6ccA...Db228ab7E
0.00050715 ETH
Transfer237184972025-11-03 11:27:23144 days ago1762169243
0x2DBa6ccA...Db228ab7E
0.00894185 ETH
Transfer237184672025-11-03 11:21:23144 days ago1762168883
0x2DBa6ccA...Db228ab7E
0.0002319 ETH
Transfer237184662025-11-03 11:21:11144 days ago1762168871
0x2DBa6ccA...Db228ab7E
0.00030685 ETH
0x60803461237184662025-11-03 11:21:11144 days ago1762168871  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"}]

0x6080346100aa57601f61012038819003918201601f19168301916001600160401b038311848410176100af578084926020946040528339810103126100aa57516001600160a01b0381168082036100aa5715610065573055604051605a90816100c68239f35b60405162461bcd60e51b815260206004820152601e60248201527f496e76616c696420696d706c656d656e746174696f6e206164647265737300006044820152606490fd5b600080fd5b634e487b7160e01b600052604160045260246000fdfe608060405230546000808092368280378136915af43d82803e156020573d90f35b3d90fdfea2646970667358221220a03b18dce0be0b4c9afe58a9eb85c35205e2cf087da098bbf1d23945bf89496064736f6c634300081100330000000000000000000000000000002512019dafb59528b82cb92d3c5d2423ac

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.