ETH Price: $1,999.11 (+3.21%)

Contract

0xa16f07B4Dd32250DEc69C63eCd0aef6CD6096d3d
 

Overview

ETH Balance

0 ETH

Eth Value

$0.00

More Info

Private Name Tags

Multichain Info

1 address found via
Transaction Hash
Method
Block
From
To
Exec Transaction246196962026-03-09 11:43:5911 hrs ago1773056639IN
0xa16f07B4...CD6096d3d
0 ETH0.000154850.14079309
Exec Transaction245339322026-02-25 12:28:3512 days ago1772022515IN
0xa16f07B4...CD6096d3d
0 ETH0.000401470.37058881
Exec Transaction245338932026-02-25 12:20:4712 days ago1772022047IN
0xa16f07B4...CD6096d3d
0 ETH0.000056880.18461557
Exec Transaction245182672026-02-23 8:02:4714 days ago1771833767IN
0xa16f07B4...CD6096d3d
0 ETH0.000075980.06906788
Exec Transaction244990052026-02-20 15:37:3517 days ago1771601855IN
0xa16f07B4...CD6096d3d
0 ETH0.000162560.96130378
Exec Transaction244853952026-02-18 18:04:2319 days ago1771437863IN
0xa16f07B4...CD6096d3d
0 ETH0.00002510.26457177
Exec Transaction244478622026-02-13 12:28:2324 days ago1770985703IN
0xa16f07B4...CD6096d3d
0 ETH0.00008750.06786179
Exec Transaction243970872026-02-06 10:08:3531 days ago1770372515IN
0xa16f07B4...CD6096d3d
0 ETH0.000454810.41969025
Exec Transaction243761102026-02-03 11:44:3534 days ago1770119075IN
0xa16f07B4...CD6096d3d
0 ETH0.001347892.13720234
Exec Transaction243471982026-01-30 10:50:5938 days ago1769770259IN
0xa16f07B4...CD6096d3d
0 ETH0.000027290.14348215
Exec Transaction242962502026-01-23 8:19:3545 days ago1769156375IN
0xa16f07B4...CD6096d3d
0 ETH0.000005730.04227445
Exec Transaction242907542026-01-22 13:54:5946 days ago1769090099IN
0xa16f07B4...CD6096d3d
0 ETH0.000242130.53742055
Exec Transaction242833132026-01-21 12:58:1147 days ago1769000291IN
0xa16f07B4...CD6096d3d
0 ETH0.000091410.14381957
Exec Transaction242405002026-01-15 13:46:3553 days ago1768484795IN
0xa16f07B4...CD6096d3d
0 ETH0.000366110.22330721
Exec Transaction240747052025-12-23 10:25:3576 days ago1766485535IN
0xa16f07B4...CD6096d3d
0 ETH0.000016050.03896039
Exec Transaction239333372025-12-03 13:52:4796 days ago1764769967IN
0xa16f07B4...CD6096d3d
0 ETH0.000971591.5
Exec Transaction239180552025-12-01 10:31:5998 days ago1764585119IN
0xa16f07B4...CD6096d3d
0 ETH0.000794321.5
Exec Transaction238469162025-11-21 10:53:23108 days ago1763722403IN
0xa16f07B4...CD6096d3d
0 ETH0.014681631.43438728
Exec Transaction238395382025-11-20 10:04:23109 days ago1763633063IN
0xa16f07B4...CD6096d3d
0 ETH0.000027780.12123719
Exec Transaction237426792025-11-06 20:39:11123 days ago1762461551IN
0xa16f07B4...CD6096d3d
0 ETH0.000720160.40009943
Exec Transaction237328092025-11-05 11:29:35124 days ago1762342175IN
0xa16f07B4...CD6096d3d
0 ETH0.000348670.45732134
Exec Transaction237247782025-11-04 8:30:47125 days ago1762245047IN
0xa16f07B4...CD6096d3d
0 ETH0.000401411.36104459
Exec Transaction237201382025-11-03 16:57:35126 days ago1762189055IN
0xa16f07B4...CD6096d3d
0 ETH0.000445741.89128702
Exec Transaction237189482025-11-03 12:58:11126 days ago1762174691IN
0xa16f07B4...CD6096d3d
0 ETH0.001867692.39121504
Exec Transaction236900242025-10-30 11:52:23130 days ago1761825143IN
0xa16f07B4...CD6096d3d
0 ETH0.00004810.48773301
View all transactions

Latest 1 internal transaction

Advanced mode:
Parent Transaction Hash Method Block
From
To
0x60806040216810192025-01-22 15:46:47411 days ago1737560807  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 0xbe6E7581...0978C932f
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
SafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity Standard Json-Input format)

// SPDX-License-Identifier: LGPL-3.0-only
pragma solidity >=0.7.0 <0.9.0;

/**
 * @title IProxy - Helper interface to access the singleton address of the Proxy on-chain.
 * @author Richard Meissner - @rmeissner
 */
interface IProxy {
    function masterCopy() external view returns (address);
}

/**
 * @title SafeProxy - 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 SafeProxy {
    // 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;

    /**
     * @notice Constructor function sets address of singleton contract.
     * @param _singleton Singleton address.
     */
    constructor(address _singleton) {
        require(_singleton != address(0), "Invalid singleton address provided");
        singleton = _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)
            // 0xa619486e == keccak("masterCopy()"). The value is right padded to 32-bytes with 0s
            if eq(calldataload(0), 0xa619486e00000000000000000000000000000000000000000000000000000000) {
                mstore(0, _singleton)
                return(0, 0x20)
            }
            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())
        }
    }
}

Settings
{
  "optimizer": {
    "enabled": false,
    "runs": 200
  },
  "outputSelection": {
    "*": {
      "*": [
        "evm.bytecode",
        "evm.deployedBytecode",
        "devdoc",
        "userdoc",
        "metadata",
        "abi"
      ]
    }
  },
  "metadata": {
    "useLiteralContent": true
  },
  "libraries": {}
}

Contract Security Audit

Contract ABI

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

0x608060405234801561001057600080fd5b506040516101e63803806101e68339818101604052602081101561003357600080fd5b8101908080519060200190929190505050600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1614156100ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004018080602001828103825260228152602001806101c46022913960400191505060405180910390fd5b806000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505060ab806101196000396000f3fe608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033496e76616c69642073696e676c65746f6e20616464726573732070726f766964656400000000000000000000000041675c099f32341bf84bfc5382af534df5c7461a

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

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.