ETH Price: $1,554.82 (-3.85%)

Contract

0x755c62ca4d1A5A8da128dd629cFA810679fc2fD2
 

Multichain Info

Transaction Hash
Method
Block
From
To
Transfer222173912025-04-07 13:42:355 hrs ago1744033355IN
0x755c62ca...679fc2fD2
0.000001 ETH0.000097864.66
Transfer222171782025-04-07 12:59:355 hrs ago1744030775IN
0x755c62ca...679fc2fD2
0.000001 ETH0.000103263.77859847
Exec Transaction222164912025-04-07 10:41:118 hrs ago1744022471IN
0x755c62ca...679fc2fD2
0 ETH0.000232663.19167042
Exec Transaction222164312025-04-07 10:29:118 hrs ago1744021751IN
0x755c62ca...679fc2fD2
0 ETH0.000280993.47948274
Exec Transaction221943132025-04-04 8:18:473 days ago1743754727IN
0x755c62ca...679fc2fD2
0 ETH0.000094660.61581262
Transfer221389242025-03-27 14:43:2311 days ago1743086603IN
0x755c62ca...679fc2fD2
106.45 ETH0.000073782.6999594
Exec Transaction219916422025-03-07 1:11:1131 days ago1741309871IN
0x755c62ca...679fc2fD2
0 ETH0.000583182.79827929
Exec Transaction219915492025-03-07 0:52:3531 days ago1741308755IN
0x755c62ca...679fc2fD2
0 ETH0.000215253.11606914
Transfer218357792025-02-13 6:29:1153 days ago1739428151IN
0x755c62ca...679fc2fD2
0.41686583 ETH0.000035031.28188744
Transfer217659872025-02-03 12:29:4763 days ago1738585787IN
0x755c62ca...679fc2fD2
5.51657064 ETH0.0002975610.88835474
Exec Transaction216716482025-01-21 8:23:4776 days ago1737447827IN
0x755c62ca...679fc2fD2
0 ETH0.0006528.92610543
Exec Transaction216716392025-01-21 8:21:5976 days ago1737447719IN
0x755c62ca...679fc2fD2
0 ETH0.000659238.37284614
Transfer214138912024-12-16 8:29:59112 days ago1734337799IN
0x755c62ca...679fc2fD2
1.3 ETH0.000232928.52300114
Transfer214068772024-12-15 8:58:35113 days ago1734253115IN
0x755c62ca...679fc2fD2
1.5 ETH0.000170836.25093207
Transfer213756522024-12-11 0:21:23117 days ago1733876483IN
0x755c62ca...679fc2fD2
3.2 ETH0.0004272415.63353684
Transfer213695752024-12-10 3:59:11118 days ago1733803151IN
0x755c62ca...679fc2fD2
2 ETH0.0005677820.77597266
Transfer213695722024-12-10 3:58:35118 days ago1733803115IN
0x755c62ca...679fc2fD2
0.1 ETH0.0005733320.97894466
Transfer213641132024-12-09 9:41:11119 days ago1733737271IN
0x755c62ca...679fc2fD2
34 ETH0.0003473412.70963742
Transfer213641062024-12-09 9:39:47119 days ago1733737187IN
0x755c62ca...679fc2fD2
0.1 ETH0.0003616413.23312031

Latest 4 internal transactions

Advanced mode:
Parent Transaction Hash Method Block
From
To
Transfer222164912025-04-07 10:41:118 hrs ago1744022471
0x755c62ca...679fc2fD2
127 ETH
Transfer219915492025-03-07 0:52:3531 days ago1741308755
0x755c62ca...679fc2fD2
3 ETH
Transfer216716482025-01-21 8:23:4776 days ago1737447827
0x755c62ca...679fc2fD2
11.52 ETH
0x60806040213487132024-12-07 6:05:23121 days ago1733551523  Contract Creation0 ETH
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
File 1 of 1 : SafeProxy.sol
// 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 - <[email protected]>
 * @author Richard Meissner - <[email protected]>
 */
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"}]

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea264697066735822122003d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f31441364736f6c63430007060033

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
Chain Token Portfolio % Price Amount Value
ETH63.65%$0.999598963,223.0907$962,835.87
ETH15.75%$0.9999238,226.57$238,202.75
ETH8.76%$0.00947413,990,204.9126$132,546
ETH3.89%$0.065546898,885.6534$58,918.69
ETH
Ether (ETH)
1.34%$1,551.6813.0634$20,270.25
ETH0.65%$0.043957223,784$9,836.98
ETH0.56%$1,551.685.5$8,534.23
ETH0.55%$0.009449885,000$8,362.68
ETH0.25%$5.24726$3,804.24
ETH0.12%$0.016822103,856$1,747.06
ETH0.06%$3.14271.1$851.25
POL3.77%$1,559.4736.6$57,076.57
POL0.10%$0.5111422,972.3844$1,519.31
POL0.09%$0.99991,350.2403$1,350.11
POL0.04%$0.00181316,833$573.32
POL<0.01%$0.45740653.1983$24.33
POL<0.01%$0.17182542$7.22
BASE0.39%$1,504.333.88$5,836.82
AVAX0.02%$16.7822$369.19
OP<0.01%$1,551.710.007$10.86
BSC<0.01%$552.720.003$1.66
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.