ETH Price: $1,857.80 (-6.22%)
Gas: 0.06 Gwei
 

Overview

ETH Balance

0.001 ETH

Eth Value

$1.86 (@ $1,857.80/ETH)

More Info

Private Name Tags

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction153648452022-08-18 11:51:451289 days ago1660823505IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.000392786
Exec Transaction153648062022-08-18 11:43:011289 days ago1660822981IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.000351794.31005356
Exec Transaction150560232022-07-01 10:17:081338 days ago1656670628IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0014449713.9580983
Exec Transaction148913712022-06-02 13:55:511366 days ago1654178151IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0053259751.45965399
Exec Transaction146799512022-04-29 15:21:261400 days ago1651245686IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0065804863.5734332
Exec Transaction146355162022-04-22 15:35:071407 days ago1650641707IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0023303847.88719984
Exec Transaction146355162022-04-22 15:35:071407 days ago1650641707IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0023303847.88719984
Exec Transaction146354592022-04-22 15:23:101407 days ago1650640990IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0063104561
Exec Transaction145004662022-04-01 12:51:371428 days ago1648817497IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0033111632
Exec Transaction143077002022-03-02 12:49:211458 days ago1646225361IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0032578831.48869907
Exec Transaction143073722022-03-02 11:43:131458 days ago1646221393IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0032152931.06269494
Exec Transaction141204302022-02-01 13:40:531487 days ago1643722853IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0073448585
Exec Transaction139329142022-01-03 14:07:471516 days ago1641218867IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.00908716105.1779784
Transfer139328702022-01-03 13:57:171516 days ago1641218237IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0.2 ETH0.00278349107.39628793
Exec Transaction137274012021-12-02 12:40:211548 days ago1638448821IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0072584484
Exec Transaction135431752021-11-03 9:46:401578 days ago1635932800IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0094984109.92251892
Exec Transaction133342642021-10-01 15:23:001610 days ago1633101780IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0082953696.00000145
Exec Transaction131396622021-09-01 11:55:341640 days ago1630497334IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0067712677.4
Exec Transaction129463242021-08-02 13:55:391670 days ago1627912539IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0017420535
Exec Transaction129463222021-08-02 13:54:491670 days ago1627912489IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.003061135
Exec Transaction127680222021-07-05 14:29:371698 days ago1625495377IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0 ETH0.0012181610.1
Transfer127679732021-07-05 14:18:581698 days ago1625494738IN
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0.02 ETH0.0004172716.10000167

Latest 2 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer153648452022-08-18 11:51:451289 days ago1660823505
Smart Account by Safe 0xC06bcA0D...8e5B2412e
0.219 ETH
-125044842021-05-25 16:04:431739 days ago1621958683  Contract Creation0 ETH
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 0x655A9e6b...77e966e18
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
Proxy

Compiler Version
v0.5.14+commit.1f1aaa4

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2020-01-13
*/

pragma solidity ^0.5.3;

/// @title Proxy - Generic proxy contract allows to execute all transactions applying the code of a master contract.
/// @author Stefan George - <stefan@gnosis.io>
/// @author Richard Meissner - <richard@gnosis.io>
contract Proxy {

    // 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)
        public
    {
        require(_masterCopy != address(0), "Invalid master copy address provided");
        masterCopy = _masterCopy;
    }

    /// @dev Fallback function forwards all transactions and returns all received return data.
    function ()
        external
        payable
    {
        // 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

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

0x608060405234801561001057600080fd5b506040516101e73803806101e78339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260248152602001806101c36024913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060aa806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032496e76616c6964206d617374657220636f707920616464726573732070726f766964656400000000000000000000000034cfac646f301356faa8b21e94227e3583fe3f5f

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea265627a7a72315820d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff64736f6c634300050e0032

Deployed Bytecode Sourcemap

245:1554:0:-;;;1155:42;1151:1;1145:8;1141:57;1335:66;1331:1;1318:15;1315:87;1312:2;;;1432:10;1429:1;1422:21;1471:4;1468:1;1461:15;1312:2;1524:14;1521:1;1518;1505:34;1620:1;1617;1601:14;1598:1;1586:10;1581:3;1568:54;1657:16;1654:1;1651;1636:38;1703:1;1694:7;1691:14;1688:2;;;1718:16;1715:1;1708:27;1688:2;1761:16;1758:1;1751:27

Swarm Source

bzzr://d8a00dc4fe6bf675a9d7416fc2d00bb3433362aa8186b750f76c4027269667ff

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.