More Info
Private Name Tags
ContractCreator
Latest 13 from a total of 13 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 7442132 | 89 days ago | IN | 0 APE | 0.00178542 | ||||
Exec Transaction | 6406370 | 113 days ago | IN | 0 APE | 0.00330387 | ||||
Exec Transaction | 6406248 | 113 days ago | IN | 0 APE | 0.00178542 | ||||
Exec Transaction | 6222560 | 117 days ago | IN | 0 APE | 0.00178511 | ||||
Transfer | 6185340 | 118 days ago | IN | 4,115.68 APE | 0.00069507 | ||||
Exec Transaction | 4954235 | 130 days ago | IN | 0 APE | 0.00178509 | ||||
Exec Transaction | 4248850 | 138 days ago | IN | 0 APE | 0.00178511 | ||||
Exec Transaction | 4215793 | 139 days ago | IN | 0 APE | 0.00178509 | ||||
Transfer | 4215621 | 139 days ago | IN | 78,215.92 APE | 0.00069507 | ||||
Transfer | 4160473 | 140 days ago | IN | 1 APE | 0.00069507 | ||||
Exec Transaction | 3800446 | 144 days ago | IN | 0 APE | 0.00172151 | ||||
Transfer | 3715502 | 145 days ago | IN | 1 APE | 0.00069507 | ||||
Exec Transaction | 1989695 | 157 days ago | IN | 0 APE | 0.00291127 |
Latest 25 internal transactions (View All)
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
12576636 | 15 hrs ago | 0.475 APE | ||||
12427302 | 4 days ago | 0.42475 APE | ||||
12222120 | 9 days ago | 0.4 APE | ||||
12209914 | 9 days ago | 0.525 APE | ||||
12178656 | 10 days ago | 0.75 APE | ||||
12144926 | 10 days ago | 0.675 APE | ||||
12051419 | 12 days ago | 0.52 APE | ||||
12035962 | 12 days ago | 0.5625 APE | ||||
12035917 | 12 days ago | 0.9 APE | ||||
11994483 | 13 days ago | 0.45 APE | ||||
11994459 | 13 days ago | 0.45 APE | ||||
11992199 | 13 days ago | 0.475 APE | ||||
11979707 | 13 days ago | 0.425 APE | ||||
11973916 | 13 days ago | 0.5225 APE | ||||
11973841 | 13 days ago | 0.45 APE | ||||
11948736 | 14 days ago | 0.425 APE | ||||
11835965 | 15 days ago | 1.375 APE | ||||
11835952 | 15 days ago | 0.425 APE | ||||
11819781 | 16 days ago | 0.6 APE | ||||
11797795 | 16 days ago | 0.45 APE | ||||
11723607 | 17 days ago | 0.44975 APE | ||||
11720255 | 17 days ago | 0.75 APE | ||||
11689957 | 18 days ago | 0.47 APE | ||||
11689957 | 18 days ago | 0.47 APE | ||||
11689957 | 18 days ago | 0.44125 APE |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
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
Contract Source Code (Solidity)
/** *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
- No Contract Security Audit Submitted- Submit Audit Here
Contract ABI
API[{"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
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.