APE Price: $0.68 (+4.88%)

Contract

0x2e112A0d3562b2a02E00c8745df9Ef75d0D2368C

Overview

APE Balance

Apechain LogoApechain LogoApechain Logo0.6 APE

APE Value

$0.41 (@ $0.69/APE)

Token Holdings

Multichain Info

No addresses found
Transaction Hash
Method
Block
From
To
Exec Transaction95310892025-02-09 5:13:5120 mins ago1739078031IN
0x2e112A0d...5d0D2368C
0 APE0.0309346925.42069
Exec Transaction94819212025-02-08 7:15:1522 hrs ago1738998915IN
0x2e112A0d...5d0D2368C
0 APE0.0046952225.42069
Exec Transaction94815502025-02-08 7:02:4922 hrs ago1738998169IN
0x2e112A0d...5d0D2368C
0 APE0.0056034325.42069
Exec Transaction94779882025-02-08 4:58:2824 hrs ago1738990708IN
0x2e112A0d...5d0D2368C
0 APE0.0033637625.42069
Exec Transaction94779392025-02-08 4:56:3724 hrs ago1738990597IN
0x2e112A0d...5d0D2368C
0 APE0.0230949225.42069
Exec Transaction94776582025-02-08 4:44:4724 hrs ago1738989887IN
0x2e112A0d...5d0D2368C
0 APE0.0124917725.42069
Exec Transaction94775852025-02-08 4:42:3024 hrs ago1738989750IN
0x2e112A0d...5d0D2368C
0 APE0.0138704125.42069
Exec Transaction94769862025-02-08 4:24:1125 hrs ago1738988651IN
0x2e112A0d...5d0D2368C
0 APE0.0117905425.42069
Exec Transaction94769162025-02-08 4:22:1925 hrs ago1738988539IN
0x2e112A0d...5d0D2368C
0 APE0.0255098125.42069
Exec Transaction94766742025-02-08 4:14:4825 hrs ago1738988088IN
0x2e112A0d...5d0D2368C
0 APE0.0255113425.42069
Exec Transaction94765942025-02-08 4:12:2225 hrs ago1738987942IN
0x2e112A0d...5d0D2368C
0 APE0.0255100925.42069
Exec Transaction94764802025-02-08 4:08:4725 hrs ago1738987727IN
0x2e112A0d...5d0D2368C
0 APE0.0160834925.42069
Exec Transaction94760872025-02-08 3:55:4525 hrs ago1738986945IN
0x2e112A0d...5d0D2368C
0 APE0.0258084325.42069
Exec Transaction94757492025-02-08 3:45:0025 hrs ago1738986300IN
0x2e112A0d...5d0D2368C
0 APE0.0263630325.42069
Exec Transaction94754792025-02-08 3:36:3425 hrs ago1738985794IN
0x2e112A0d...5d0D2368C
0 APE0.0255107325.42069
Exec Transaction94753722025-02-08 3:33:3026 hrs ago1738985610IN
0x2e112A0d...5d0D2368C
0 APE0.0174923825.42069
Exec Transaction94750222025-02-08 3:20:2326 hrs ago1738984823IN
0x2e112A0d...5d0D2368C
0 APE0.0193714525.42069
Exec Transaction94742142025-02-08 2:55:3326 hrs ago1738983333IN
0x2e112A0d...5d0D2368C
0 APE0.0051541925.42069
Exec Transaction94231082025-02-07 2:39:462 days ago1738895986IN
0x2e112A0d...5d0D2368C
0 APE0.0076438725.42069
Exec Transaction93454142025-02-05 17:55:473 days ago1738778147IN
0x2e112A0d...5d0D2368C
0 APE0.0115092925.42069
Transfer93453052025-02-05 17:52:473 days ago1738777967IN
0x2e112A0d...5d0D2368C
0.3 APE0.0006950725.42069
Exec Transaction92417242025-02-03 21:47:555 days ago1738619275IN
0x2e112A0d...5d0D2368C
0 APE0.0016591825.42069
Exec Transaction92416282025-02-03 21:44:595 days ago1738619099IN
0x2e112A0d...5d0D2368C
0 APE0.0045166925.42069
Exec Transaction91937602025-02-02 23:50:436 days ago1738540243IN
0x2e112A0d...5d0D2368C
0 APE0.0048213325.42069
Exec Transaction91700982025-02-02 16:12:406 days ago1738512760IN
0x2e112A0d...5d0D2368C
0 APE0.002772625.42069
View all transactions

Latest 2 internal transactions

Parent Transaction Hash Block From To
90666602025-01-31 23:44:178 days ago1738367057
0x2e112A0d...5d0D2368C
0.2 APE
90233292025-01-31 7:45:338 days ago1738309533  Contract Creation0 APE

Loading...
Loading

Similar Match Source Code
This contract matches the deployed Bytecode of the Source Code for Contract 0x5b8ef3b7...24732EB6A
The constructor portion of the code might be different and could alter the actual behaviour of the contract

Contract Name:
GnosisSafeProxy

Compiler Version
v0.7.6+commit.7338295f

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion, GNU LGPLv3 license
/**
 *Submitted for verification at apescan.io on 2024-11-20
*/

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

/// @title IProxy - Helper interface to access masterCopy of the Proxy on-chain
/// @author Richard Meissner - <[email protected]>
interface IProxy {
    function masterCopy() external view returns (address);
}

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

    /// @dev 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

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

Deployed Bytecode

0x608060405273ffffffffffffffffffffffffffffffffffffffff600054167fa619486e0000000000000000000000000000000000000000000000000000000060003514156050578060005260206000f35b3660008037600080366000845af43d6000803e60008114156070573d6000fd5b3d6000f3fea2646970667358221220d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b955264736f6c63430007060033

Deployed Bytecode Sourcemap

524:1528:0:-:0;;;1376:42;1372:1;1366:8;1362:57;1556:66;1552:1;1539:15;1536:87;1533:2;;;1653:10;1650:1;1643:21;1692:4;1689:1;1682:15;1533:2;1745:14;1742:1;1739;1726:34;1843:1;1840;1824:14;1821:1;1809:10;1802:5;1789:56;1880:16;1877:1;1874;1859:38;1926:1;1917:7;1914:14;1911:2;;;1958:16;1955:1;1948:27;1911:2;2014:16;2011:1;2004:27

Swarm Source

ipfs://d1429297349653a4918076d650332de1a1068c5f3e07c5c82360c277770b9552

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
[ 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.