APE Price: $0.89 (-1.30%)

Contract

0xEDa22ffa071d8497B978C54Cf9129D63ab0398d0

Overview

APE Balance

Apechain LogoApechain LogoApechain Logo4,243.696604 APE

APE Value

$3,792.83 (@ $0.89/APE)

Token Holdings

Transaction Hash
Method
Block
From
To
Exec Transaction206792024-09-09 15:06:33142 days ago1725894393IN
0xEDa22ffa...3ab0398d0
0 APE0.0022188725.42069
Transfer206672024-09-09 14:58:40142 days ago1725893920IN
0xEDa22ffa...3ab0398d0
0.05 APE0.0006950725.42069

Latest 25 internal transactions (View All)

Parent Transaction Hash Block From To
89462312025-01-29 13:23:566 hrs ago1738157036
0xEDa22ffa...3ab0398d0
1.415476 APE
89207852025-01-28 20:50:0022 hrs ago1738097400
0xEDa22ffa...3ab0398d0
1.429542 APE
89101692025-01-28 14:43:1528 hrs ago1738075395
0xEDa22ffa...3ab0398d0
1.386635 APE
88890372025-01-28 0:27:5342 hrs ago1738024073
0xEDa22ffa...3ab0398d0
1.346277 APE
88860942025-01-27 22:38:1944 hrs ago1738017499
0xEDa22ffa...3ab0398d0
1.35502 APE
88860812025-01-27 22:37:5644 hrs ago1738017476
0xEDa22ffa...3ab0398d0
1.354496 APE
88858372025-01-27 22:29:2844 hrs ago1738016968
0xEDa22ffa...3ab0398d0
1.360951 APE
88377022025-01-26 20:08:332 days ago1737922113
0xEDa22ffa...3ab0398d0
1.254264 APE
88376872025-01-26 20:08:042 days ago1737922084
0xEDa22ffa...3ab0398d0
1.254926 APE
88376802025-01-26 20:07:402 days ago1737922060
0xEDa22ffa...3ab0398d0
1.255659 APE
88289262025-01-26 15:55:393 days ago1737906939
0xEDa22ffa...3ab0398d0
1.268508 APE
87829712025-01-25 15:08:404 days ago1737817720
0xEDa22ffa...3ab0398d0
1.276929 APE
87829632025-01-25 15:08:194 days ago1737817699
0xEDa22ffa...3ab0398d0
1.276044 APE
87829532025-01-25 15:07:574 days ago1737817677
0xEDa22ffa...3ab0398d0
1.276029 APE
87829362025-01-25 15:07:334 days ago1737817653
0xEDa22ffa...3ab0398d0
1.275911 APE
87290762025-01-24 13:45:215 days ago1737726321
0xEDa22ffa...3ab0398d0
1.218376 APE
86887692025-01-23 19:56:105 days ago1737662170
0xEDa22ffa...3ab0398d0
0.866771 APE
86887422025-01-23 19:55:305 days ago1737662130
0xEDa22ffa...3ab0398d0
0.86696 APE
86791922025-01-23 16:40:416 days ago1737650441
0xEDa22ffa...3ab0398d0
1.242265 APE
86791632025-01-23 16:40:166 days ago1737650416
0xEDa22ffa...3ab0398d0
1.241197 APE
86791402025-01-23 16:39:566 days ago1737650396
0xEDa22ffa...3ab0398d0
1.241485 APE
85931082025-01-21 22:24:417 days ago1737498281
0xEDa22ffa...3ab0398d0
1.237059 APE
85930972025-01-21 22:24:197 days ago1737498259
0xEDa22ffa...3ab0398d0
1.237012 APE
84705122025-01-19 18:46:0010 days ago1737312360
0xEDa22ffa...3ab0398d0
1.141061 APE
84620862025-01-19 14:31:0310 days ago1737297063
0xEDa22ffa...3ab0398d0
1.169814 APE
View All Internal Transactions

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.