ETH Price: $2,148.61 (-0.90%)

Contract

0x2D0AADbc014E6912fE4c455C76409bC7b4B32f3A
 

Overview

ETH Balance

0.001303620900924174 ETH

Eth Value

$2.80 (@ $2,148.61/ETH)

More Info

Private Name Tags

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Transfer183412572023-10-13 11:44:47894 days ago1697197487IN
0x2D0AADbc...7b4B32f3A
0.03 ETH0.000154475.65397357
Transfer177973282023-07-29 7:52:23970 days ago1690617143IN
0x2D0AADbc...7b4B32f3A
0.1 ETH0.0003287715.65572579
Transfer177709242023-07-25 15:11:59974 days ago1690297919IN
0x2D0AADbc...7b4B32f3A
0.06 ETH0.0009622245.8200599

Latest 25 internal transactions (View All)

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer183827802023-10-19 7:04:59888 days ago1697699099
0x2D0AADbc...7b4B32f3A
0.00060814 ETH
Transfer183827802023-10-19 7:04:59888 days ago1697699099
0x2D0AADbc...7b4B32f3A
0.02912191 ETH
Transfer183827802023-10-19 7:04:59888 days ago1697699099
0x2D0AADbc...7b4B32f3A
0.00146264 ETH
Transfer181468762023-09-16 6:15:35921 days ago1694844935
0x2D0AADbc...7b4B32f3A
0.00055064 ETH
Transfer181468762023-09-16 6:15:35921 days ago1694844935
0x2D0AADbc...7b4B32f3A
0.00790955 ETH
Transfer181468762023-09-16 6:15:35921 days ago1694844935
0x2D0AADbc...7b4B32f3A
0.00156235 ETH
Transfer181468542023-09-16 6:11:11921 days ago1694844671
0x2D0AADbc...7b4B32f3A
0.00117246 ETH
Transfer181468542023-09-16 6:11:11921 days ago1694844671
0x2D0AADbc...7b4B32f3A
0.0026449 ETH
Transfer181260052023-09-13 7:49:59924 days ago1694591399
0x2D0AADbc...7b4B32f3A
0.02 ETH
Transfer181255402023-09-13 6:16:11924 days ago1694585771
0x2D0AADbc...7b4B32f3A
0.00415041 ETH
Submit181255402023-09-13 6:16:11924 days ago1694585771
0x2D0AADbc...7b4B32f3A
0.000001 ETH
Transfer181255402023-09-13 6:16:11924 days ago1694585771
0x2D0AADbc...7b4B32f3A
0.00879635 ETH
0xe020dc5d180836152023-09-07 9:19:23930 days ago1694078363
0x2D0AADbc...7b4B32f3A
0.0001 ETH
Transfer180710442023-09-05 15:02:11932 days ago1693926131
0x2D0AADbc...7b4B32f3A
0.00173138 ETH
Transfer180710442023-09-05 15:02:11932 days ago1693926131
0x2D0AADbc...7b4B32f3A
0.00422018 ETH
Transfer179031542023-08-13 3:08:47956 days ago1691896127
0x2D0AADbc...7b4B32f3A
0.00428756 ETH
Bridge To V2179031542023-08-13 3:08:47956 days ago1691896127
0x2D0AADbc...7b4B32f3A
0.01 ETH
Transfer179031542023-08-13 3:08:47956 days ago1691896127
0x2D0AADbc...7b4B32f3A
0.00793632 ETH
Submit178249712023-08-02 4:37:11967 days ago1690951031
0x2D0AADbc...7b4B32f3A
0.0001 ETH
Submit178121442023-07-31 9:38:11968 days ago1690796291
0x2D0AADbc...7b4B32f3A
0.0001 ETH
Transfer177997042023-07-29 15:51:35970 days ago1690645895
0x2D0AADbc...7b4B32f3A
0.00256993 ETH
Transfer177997042023-07-29 15:51:35970 days ago1690645895
0x2D0AADbc...7b4B32f3A
0.00621787 ETH
Transfer177980492023-07-29 10:18:35970 days ago1690625915
0x2D0AADbc...7b4B32f3A
0.00803154 ETH
Fulfill Basic Or...177980492023-07-29 10:18:35970 days ago1690625915
0x2D0AADbc...7b4B32f3A
0 ETH
Transfer177980492023-07-29 10:18:35970 days ago1690625915
0x2D0AADbc...7b4B32f3A
0.01439873 ETH
View All Internal Transactions
Loading...
Loading
Loading...
Loading
Cross-Chain Transactions

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 0xe30184b5...86c5509a8 in BNB Smart Chain Mainnet
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SmartAccountProxy

Compiler Version
v0.8.17+commit.8df45f5f

Optimization Enabled:
Yes with 200 runs

Other Settings:
Default EvmVersion, None license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2025-07-29
*/

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity ^0.8.12;

/**
 * A wrapper factory contract to deploy SmartAccount as an Account-Abstraction wallet contract.
 */
interface ISmartAccountProxy {
    function masterCopy() external view returns (address);
}

/// @title SmartAccountProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
contract SmartAccountProxy is ISmartAccountProxy {
    // singleton always needs to be first declared variable, to ensure that it is at the same location in the contracts to which calls are delegated.
    // To reduce deployment costs this variable is internal and needs to be retrieved via `getStorageAt`
    address internal singleton;

    /// @dev Constructor function sets address of singleton contract.
    /// @param _singleton Singleton address.
    function initialize(address _singleton, bytes memory _initdata) external {
        require(singleton == address(0), "Initialized already");
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _singleton;

        (bool success,) = _singleton.delegatecall(_initdata);
        require(success, "init failed");
    }

    function masterCopy() external view returns (address) {
        return singleton;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback() external payable {
        // solhint-disable-next-line no-inline-assembly
        assembly {
            let _singleton := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas(), _singleton, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }
}

Contract Security Audit

Contract ABI

API
[{"stateMutability":"payable","type":"fallback"},{"inputs":[{"internalType":"address","name":"_singleton","type":"address"},{"internalType":"bytes","name":"_initdata","type":"bytes"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"masterCopy","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"}]

0x608060405234801561001057600080fd5b50610352806100206000396000f3fe6080604052600436106100295760003560e01c8063a619486e14610055578063d1f5789414610081575b600080546001600160a01b03163682803781823684845af490503d82833e80610050573d82fd5b503d81f35b34801561006157600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b34801561008d57600080fd5b506100a161009c36600461021d565b6100a3565b005b6000546001600160a01b0316156100f75760405162461bcd60e51b8152602060048201526013602482015272496e697469616c697a656420616c726561647960681b60448201526064015b60405180910390fd5b6001600160a01b0382166101585760405162461bcd60e51b815260206004820152602260248201527f496e76616c69642073696e676c65746f6e20616464726573732070726f766964604482015261195960f21b60648201526084016100ee565b600080546001600160a01b0319166001600160a01b03841690811782556040516101839084906102ed565b600060405180830381855af49150503d80600081146101be576040519150601f19603f3d011682016040523d82523d6000602084013e6101c3565b606091505b50509050806102025760405162461bcd60e51b815260206004820152600b60248201526a1a5b9a5d0819985a5b195960aa1b60448201526064016100ee565b505050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561023057600080fd5b82356001600160a01b038116811461024757600080fd5b9150602083013567ffffffffffffffff8082111561026457600080fd5b818501915085601f83011261027857600080fd5b81358181111561028a5761028a610207565b604051601f8201601f19908116603f011681019083821181831017156102b2576102b2610207565b816040528281528860208487010111156102cb57600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b8181101561030e57602081860181015185830152016102f4565b50600092019182525091905056fea26469706673582212204562a53397a5ec95ae3a45e3c739fc82314f87e701a71907f89ebfd3656322ef64736f6c63430008110033

Deployed Bytecode

0x6080604052600436106100295760003560e01c8063a619486e14610055578063d1f5789414610081575b600080546001600160a01b03163682803781823684845af490503d82833e80610050573d82fd5b503d81f35b34801561006157600080fd5b50600054604080516001600160a01b039092168252519081900360200190f35b34801561008d57600080fd5b506100a161009c36600461021d565b6100a3565b005b6000546001600160a01b0316156100f75760405162461bcd60e51b8152602060048201526013602482015272496e697469616c697a656420616c726561647960681b60448201526064015b60405180910390fd5b6001600160a01b0382166101585760405162461bcd60e51b815260206004820152602260248201527f496e76616c69642073696e676c65746f6e20616464726573732070726f766964604482015261195960f21b60648201526084016100ee565b600080546001600160a01b0319166001600160a01b03841690811782556040516101839084906102ed565b600060405180830381855af49150503d80600081146101be576040519150601f19603f3d011682016040523d82523d6000602084013e6101c3565b606091505b50509050806102025760405162461bcd60e51b815260206004820152600b60248201526a1a5b9a5d0819985a5b195960aa1b60448201526064016100ee565b505050565b634e487b7160e01b600052604160045260246000fd5b6000806040838503121561023057600080fd5b82356001600160a01b038116811461024757600080fd5b9150602083013567ffffffffffffffff8082111561026457600080fd5b818501915085601f83011261027857600080fd5b81358181111561028a5761028a610207565b604051601f8201601f19908116603f011681019083821181831017156102b2576102b2610207565b816040528281528860208487010111156102cb57600080fd5b8260208601602083013760006020848301015280955050505050509250929050565b6000825160005b8181101561030e57602081860181015185830152016102f4565b50600092019182525091905056fea26469706673582212204562a53397a5ec95ae3a45e3c739fc82314f87e701a71907f89ebfd3656322ef64736f6c63430008110033

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
0x2D0AADbc014E6912fE4c455C76409bC7b4B32f3A
Net Worth in USD
$6.90

Net Worth in ETH
0.003212

Token Allocations
ETH 40.92%
GNS 28.23%
USDT 9.14%
Others 21.72%
Chain Token Portfolio % Price Amount Value
ETH
Ether (ETH)
40.58%$2,148.610.00130362$2.8
ETH6.46%$2,151.30.0002072$0.4457
ETH3.11%$2,148.610.0001$0.2148
ARB28.23%$0.7793482.5$1.95
ARB3.02%$0.9998060.2085$0.2084
ARB0.28%$2,148.810.00000889$0.019095
OP9.14%$0.9995080.6309$0.6306
OP0.06%$2,148.520.00000189$0.004061
BSC3.84%$642.010.00041281$0.265027
BSC3.32%$1.440.1593$0.2294
BSC1.95%$0.9998880.1346$0.1345
POL0.01%$0.0967030.0104$0.001007
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.