ETH Price: $1,993.76 (-3.57%)

Contract

0xCf6a97d02f9Cc47C94dE5a4874C32a0182638fb4
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

Token Holdings

More Info

Private Name Tags

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Exec Transaction228195092025-06-30 20:05:23269 days ago1751313923IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.000351834.21744502
Exec Transaction228194972025-06-30 20:02:59269 days ago1751313779IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.000231284.37205382
Exec Transaction219295222025-02-26 9:10:23394 days ago1740561023IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.000040910.71851554
Exec Transaction204837622024-08-08 12:07:11595 days ago1723118831IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.000762719.0018662
Exec Transaction204837512024-08-08 12:04:59595 days ago1723118699IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.000943468.65727112
Exec Transaction197166692024-04-23 7:41:23703 days ago1713858083IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0009256212
Exec Transaction196906312024-04-19 16:20:11706 days ago1713543611IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.002973415.64313917
Exec Transaction192121662024-02-12 13:12:47773 days ago1707743567IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0016933519.988604
Exec Transaction188200272023-12-19 12:34:35828 days ago1702989275IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0045195951.31181353
Exec Transaction188199552023-12-19 12:19:47828 days ago1702988387IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0037829151.06933964
Exec Transaction188199452023-12-19 12:17:47828 days ago1702988267IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0035709848.13881825
Exec Transaction188199072023-12-19 12:10:11828 days ago1702987811IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0038147950.96784983
Exec Transaction188198972023-12-19 12:08:11828 days ago1702987691IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0039668953
Exec Transaction188198802023-12-19 12:04:47828 days ago1702987487IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.003520147.03061289
Exec Transaction184773982023-11-01 12:57:35876 days ago1698843455IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0018262524.39977657
Exec Transaction184773662023-11-01 12:51:11876 days ago1698843071IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0011412615.24799163
Exec Transaction184773422023-11-01 12:46:23876 days ago1698842783IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0013472418
Exec Transaction184773292023-11-01 12:43:47876 days ago1698842627IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0014969420
Exec Transaction179129272023-08-14 11:56:35955 days ago1692014195IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0017627820.01324106
Exec Transaction178636582023-08-07 14:30:11962 days ago1691418611IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0090674235.37692189
Exec Transaction167751972023-03-07 8:19:591116 days ago1678177199IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.001775920.16213191
Exec Transaction167750462023-03-07 7:49:351116 days ago1678175375IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0014027518.93715482
Exec Transaction167750412023-03-07 7:48:351116 days ago1678175315IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0014138519.02958251
Exec Transaction167750352023-03-07 7:47:231116 days ago1678175243IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0014541619.60289229
Exec Transaction167749632023-03-07 7:32:471116 days ago1678174367IN
Smart Account by Safe 0xCf6a97d0...182638fb4
0 ETH0.0015679220.94843825
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
-122431812021-04-15 7:01:501807 days ago1618470110  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.