ETH Price: $2,147.39 (+4.49%)
 

More Info

Private Name Tags

Multichain Info

1 address found via
Transaction Hash
Block
From
To
Exec Transaction401357952025-12-30 2:15:3765 days ago1767060937IN
0x0f287639...7Be9B6363
0 ETH0.000000070.00094791
Exec Transaction392424632025-12-09 9:57:5386 days ago1765274273IN
0x0f287639...7Be9B6363
0 ETH0.000000170.00048266
Exec Transaction392423482025-12-09 9:54:0386 days ago1765274043IN
0x0f287639...7Be9B6363
0 ETH0.000000070.000654
Exec Transaction384165012025-11-20 7:05:49105 days ago1763622349IN
0x0f287639...7Be9B6363
0 ETH0.000000290.00279044
Exec Transaction380701602025-11-12 6:41:07113 days ago1762929667IN
0x0f287639...7Be9B6363
0 ETH0.000000240.00258681
Exec Transaction378546802025-11-07 6:58:27118 days ago1762498707IN
0x0f287639...7Be9B6363
0 ETH0.000000690.00207786
Exec Transaction368226112025-10-14 9:36:09142 days ago1760434569IN
0x0f287639...7Be9B6363
0 ETH0.000000460.00521716
Exec Transaction351331792025-09-05 7:01:45181 days ago1757055705IN
0x0f287639...7Be9B6363
0 ETH0.000000140.00040659
Exec Transaction351331532025-09-05 7:00:53181 days ago1757055653IN
0x0f287639...7Be9B6363
0 ETH0.000000030.00036425
Exec Transaction351331252025-09-05 6:59:57181 days ago1757055597IN
0x0f287639...7Be9B6363
0 ETH0.000000080.00034127
Exec Transaction351330352025-09-05 6:56:57181 days ago1757055417IN
0x0f287639...7Be9B6363
0 ETH0.000000080.00037187
Exec Transaction351329562025-09-05 6:54:19181 days ago1757055259IN
0x0f287639...7Be9B6363
0 ETH0.000000020.00032593
Exec Transaction327169362025-07-11 8:40:19237 days ago1752223219IN
0x0f287639...7Be9B6363
0 ETH0.000001990.0038
Exec Transaction327169072025-07-11 8:39:21237 days ago1752223161IN
0x0f287639...7Be9B6363
0 ETH0.000000450.0044
Exec Transaction327168422025-07-11 8:37:11237 days ago1752223031IN
0x0f287639...7Be9B6363
0 ETH0.00000080.0043
Exec Transaction314958462025-06-13 2:17:19265 days ago1749781039IN
0x0f287639...7Be9B6363
0 ETH0.000003390.013
Exec Transaction314957982025-06-13 2:15:43265 days ago1749780943IN
0x0f287639...7Be9B6363
0 ETH0.000001230.0127
Exec Transaction302117202025-05-14 8:53:07295 days ago1747212787IN
0x0f287639...7Be9B6363
0 ETH0.000000460.0037
Exec Transaction302111202025-05-14 8:33:07295 days ago1747211587IN
0x0f287639...7Be9B6363
0 ETH0.000000190.0025
Exec Transaction302109392025-05-14 8:27:05295 days ago1747211225IN
0x0f287639...7Be9B6363
0 ETH0.000000380.0036
Exec Transaction302108642025-05-14 8:24:35295 days ago1747211075IN
0x0f287639...7Be9B6363
0 ETH0.00000120.0037
Exec Transaction299053942025-05-07 6:42:15302 days ago1746600135IN
0x0f287639...7Be9B6363
0 ETH0.000002020.0024
Exec Transaction298658082025-05-06 8:42:43303 days ago1746520963IN
0x0f287639...7Be9B6363
0 ETH0.00000030.0034
Exec Transaction298656542025-05-06 8:37:35303 days ago1746520655IN
0x0f287639...7Be9B6363
0 ETH0.000000330.0037
Exec Transaction298653692025-05-06 8:28:05303 days ago1746520085IN
0x0f287639...7Be9B6363
0 ETH0.000001070.0035
View all transactions

Latest 2 internal transactions

Parent Transaction Hash Block From To
392424632025-12-09 9:57:5386 days ago1765274273
0x0f287639...7Be9B6363
0.00086307 ETH
294754352025-04-27 7:50:17312 days ago1745740217  Contract Creation0 ETH

Cross-Chain Transactions
Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x2E6C632a...29aC35Bf0
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, GNU LGPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at basescan.org on 2024-02-05
*/

// 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())
        }
    }
}

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

Deployed Bytecode Sourcemap

536:1541:0:-:0;;;1401:42;1397:1;1391:8;1387:57;1581:66;1577:1;1564:15;1561:87;1558:2;;;1678:10;1675:1;1668:21;1717:4;1714:1;1707:15;1558:2;1770:14;1767:1;1764;1751:34;1868:1;1865;1849:14;1846:1;1834:10;1827:5;1814:56;1905:16;1902:1;1899;1884:38;1951:1;1942:7;1939:14;1936:2;;;1983:16;1980:1;1973:27;1936:2;2039:16;2036:1;2029:27

Swarm Source

ipfs://03d1488ee65e08fa41e58e888a9865554c535f2c77126a82cb4c0f917f314413

Block Transaction Difficulty Gas Used Reward
View All Blocks Produced

Block Uncle Number Difficulty Gas Used Reward
View All Uncles
Loading...
Loading
Loading...
Loading
Loading...
Loading

Validator Index Block Amount
View All Withdrawals

Transaction Hash Block Value Eth2 PubKey Valid
View All Deposits
0x0f2876396a71Fe09a175D97F83744377Be9B6363
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.