ETH Price: $2,511.75 (+1.58%)

Contract

0x0102aa8213248824e51245c36501afB541E7d7A1
 

Overview

ETH Balance

0.000875910561397068 ETH

Eth Value

$2.20 (@ $2,511.75/ETH)

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Execute Meta Tx196015662024-04-07 4:54:59204 days ago1712465699IN
0x0102aa82...541E7d7A1
0 ETH0.001249279.46950366
Execute Meta Tx196015522024-04-07 4:52:11204 days ago1712465531IN
0x0102aa82...541E7d7A1
0 ETH0.003567559.74934815
Execute Meta Tx196015252024-04-07 4:46:47204 days ago1712465207IN
0x0102aa82...541E7d7A1
0 ETH0.001130968.77870024
Execute Meta Tx193691862024-03-05 13:12:47236 days ago1709644367IN
0x0102aa82...541E7d7A1
0 ETH0.0300422277.21110565
Execute Meta Tx193623702024-03-04 14:23:11237 days ago1709562191IN
0x0102aa82...541E7d7A1
0 ETH0.01472012118.18834327
Execute Meta Tx186244122023-11-22 2:49:11341 days ago1700621351IN
0x0102aa82...541E7d7A1
0 ETH0.0032877130.76861948
Execute Meta Tx185957832023-11-18 2:31:59345 days ago1700274719IN
0x0102aa82...541E7d7A1
0 ETH0.0024669818.88082281
Transfer185804792023-11-15 23:10:35347 days ago1700089835IN
0x0102aa82...541E7d7A1
0.0597257 ETH0.0008017430.97831266
Execute Meta Tx185229322023-11-07 22:01:47355 days ago1699394507IN
0x0102aa82...541E7d7A1
0 ETH0.0028267326.46037363
Execute Meta Tx184118172023-10-23 8:35:11370 days ago1698050111IN
0x0102aa82...541E7d7A1
0 ETH0.001088468.78419983
Execute Meta Tx184002932023-10-21 17:52:11372 days ago1697910731IN
0x0102aa82...541E7d7A1
0 ETH0.0017019215.93201043
Execute Meta Tx181202882023-09-12 12:35:47411 days ago1694522147IN
0x0102aa82...541E7d7A1
0 ETH0.0015114312.19649348
Inherit159647742022-11-14 0:44:47714 days ago1668386687IN
0x0102aa82...541E7d7A1
0 ETH0.0007325415
Execute Meta Tx159626132022-11-13 17:31:47714 days ago1668360707IN
0x0102aa82...541E7d7A1
0 ETH0.0048449819
Execute Meta Tx147044712022-05-03 11:47:48908 days ago1651578468IN
0x0102aa82...541E7d7A1
0 ETH0.0045745742.9034254
Execute Meta Tx143668172022-03-11 17:21:07961 days ago1647019267IN
0x0102aa82...541E7d7A1
0 ETH0.0070282745.8196166

Latest 10 internal transactions

Advanced mode:
Parent Transaction Hash Block From To
196015522024-04-07 4:52:11204 days ago1712465531
0x0102aa82...541E7d7A1
0.00417725 ETH
196015252024-04-07 4:46:47204 days ago1712465207
0x0102aa82...541E7d7A1
0.00124414 ETH
193691862024-03-05 13:12:47236 days ago1709644367
0x0102aa82...541E7d7A1
0.0298504 ETH
193691632024-03-05 13:08:11236 days ago1709644091
0x0102aa82...541E7d7A1
0.01512563 ETH
193626632024-03-04 15:22:35237 days ago1709565755
0x0102aa82...541E7d7A1
0.01954778 ETH
193623702024-03-04 14:23:11237 days ago1709562191
0x0102aa82...541E7d7A1
0.01642839 ETH
193621622024-03-04 13:41:35237 days ago1709559695
0x0102aa82...541E7d7A1
0.01739957 ETH
185957832023-11-18 2:31:59345 days ago1700274719
0x0102aa82...541E7d7A1
0.00292501 ETH
185957832023-11-18 2:31:59345 days ago1700274719
0x0102aa82...541E7d7A1
0.05629757 ETH
143668102022-03-11 17:19:04961 days ago1647019144  Contract Creation0 ETH
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0xF2935113...87976e346
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
WalletProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
Yes with 100000 runs

Other Settings:
default evmVersion, None license
/**
 *Submitted for verification at Etherscan.io on 2022-05-25
*/

// SPDX-License-Identifier: LGPL-3.0-or-later
// Taken from: https://github.com/gnosis/safe-contracts/blob/development/contracts/proxies/GnosisSafeProxy.sol
pragma solidity ^0.7.0;

/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <[email protected]>
interface IProxy {
    function masterCopy() external view returns (address);
}

/// @title WalletProxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <[email protected]>
/// @author Richard Meissner - <[email protected]>
contract WalletProxy {

    // masterCopy 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 masterCopy;

    /// @dev Constructor function sets address of master copy contract.
    /// @param _masterCopy Master copy address.
    constructor(address _masterCopy)
    {
        require(_masterCopy != address(0), "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    fallback()
    payable
    external
    {
        // solium-disable-next-line security/no-inline-assembly
        assembly {
            let _masterCopy := and(sload(0), 0xffffffffffffffffffffffffffffffffffffffff)
        // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, _masterCopy)
                return(0, 0x20)
            }
            calldatacopy(0, 0, calldatasize())
            let success := delegatecall(gas(), _masterCopy, 0, calldatasize(), 0, 0)
            returndatacopy(0, 0, returndatasize())
            if eq(success, 0) { revert(0, returndatasize()) }
            return(0, returndatasize())
        }
    }
}

Contract Security Audit

Contract ABI

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

Deployed Bytecode

0x6080604052600073ffffffffffffffffffffffffffffffffffffffff8154167fa619486e0000000000000000000000000000000000000000000000000000000082351415604e57808252602082f35b3682833781823684845af490503d82833e806067573d82fd5b503d81f3fea2646970667358221220676404d5a2e50e328cc18fc786619f9629ae43d7ff695286c941717f0a1541e564736f6c63430007060033

Deployed Bytecode Sourcemap

628:1536:0:-:0;;;1516:1;1520:42;1516:1;1510:8;1506:57;1696:66;1516:1;1679:15;1676:87;1673:2;;;1793:11;1516:1;1783:22;1833:4;1516:1;1823:15;1673:2;1886:14;1516:1;;1867:34;1516:1;;1886:14;1516:1;1950:11;1943:5;1930:57;1915:72;;2022:16;1516:1;;2001:38;2059:7;2053:2;;2083:16;1516:1;2073:27;2053:2;;2126:16;1516:1;2116:27

Swarm Source

ipfs://676404d5a2e50e328cc18fc786619f9629ae43d7ff695286c941717f0a1541e5

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
[ 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.