More Info
Private Name Tags
ContractCreator
Multichain Info
2 addresses found via
Latest 25 from a total of 30,929 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22059594 | 5 mins ago | IN | 0.01815834 ETH | 0.00001268 | ||||
Transfer | 22059285 | 1 hr ago | IN | 0.01104906 ETH | 0.00001356 | ||||
Transfer | 22058403 | 4 hrs ago | IN | 0.0211527 ETH | 0.00001717 | ||||
Transfer | 22055499 | 13 hrs ago | IN | 0.0223268 ETH | 0.00001213 | ||||
Transfer | 22054565 | 16 hrs ago | IN | 0.02670743 ETH | 0.0000123 | ||||
Transfer | 22053256 | 21 hrs ago | IN | 0.11721722 ETH | 0.00001239 | ||||
Transfer | 22053139 | 21 hrs ago | IN | 0.02902326 ETH | 0.00001206 | ||||
Transfer | 22053133 | 21 hrs ago | IN | 0.01115193 ETH | 0.00001252 | ||||
Transfer | 22051912 | 25 hrs ago | IN | 0.00868114 ETH | 0.00001331 | ||||
Transfer | 22051701 | 26 hrs ago | IN | 0.01408574 ETH | 0.00001284 | ||||
Transfer | 22051525 | 27 hrs ago | IN | 0.01615748 ETH | 0.00001155 | ||||
Transfer | 22050784 | 29 hrs ago | IN | 0.00971944 ETH | 0.00001461 | ||||
Transfer | 22050562 | 30 hrs ago | IN | 0.01120804 ETH | 0.00001477 | ||||
Transfer | 22050471 | 30 hrs ago | IN | 0.01051441 ETH | 0.00001088 | ||||
Transfer | 22049744 | 33 hrs ago | IN | 0.00986235 ETH | 0.00001257 | ||||
Transfer | 22049723 | 33 hrs ago | IN | 0.06047731 ETH | 0.00001267 | ||||
Transfer | 22049722 | 33 hrs ago | IN | 0.28314548 ETH | 0.00001241 | ||||
Transfer | 22048674 | 36 hrs ago | IN | 0.00729156 ETH | 0.00001289 | ||||
Transfer | 22047567 | 40 hrs ago | IN | 0.0131452 ETH | 0.00001296 | ||||
Transfer | 22047168 | 41 hrs ago | IN | 0.01133659 ETH | 0.00001549 | ||||
Transfer | 22047043 | 42 hrs ago | IN | 0.01525142 ETH | 0.00001186 | ||||
Transfer | 22046974 | 42 hrs ago | IN | 0.01212799 ETH | 0.0000131 | ||||
Transfer | 22046953 | 42 hrs ago | IN | 0.01596666 ETH | 0.00001241 | ||||
Transfer | 22046872 | 42 hrs ago | IN | 0.00899021 ETH | 0.00001415 | ||||
Transfer | 22046476 | 44 hrs ago | IN | 0.0907544 ETH | 0.0000211 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22032244 | 3 days ago | 365 ETH | ||||
Transfer | 22032244 | 3 days ago | 11.14711258 ETH | ||||
Transfer | 22018294 | 5 days ago | 0.0000758 ETH | ||||
Send | 22018294 | 5 days ago | 0.00031279 ETH | ||||
Send | 22018271 | 5 days ago | 0.00031279 ETH | ||||
Send | 21997936 | 8 days ago | 0.00004242 ETH | ||||
Send | 21997920 | 8 days ago | 0.00003367 ETH | ||||
Send | 21997919 | 8 days ago | 0.00003367 ETH | ||||
Send | 21997893 | 8 days ago | 0.00003367 ETH | ||||
Transfer | 21997689 | 8 days ago | 0.00039815 ETH | ||||
Send | 21997689 | 8 days ago | 0.00047271 ETH | ||||
Transfer | 21997350 | 8 days ago | 3,029.19272448 ETH | ||||
Transfer | 21983542 | 10 days ago | 367.78823841 ETH | ||||
Transfer | 21983542 | 10 days ago | 60 ETH | ||||
Transfer | 21970264 | 12 days ago | 0.00034896 ETH | ||||
Transfer | 21970264 | 12 days ago | 0.00081626 ETH | ||||
Transfer | 21970264 | 12 days ago | 0.00387539 ETH | ||||
Transfer | 21949375 | 15 days ago | 0.00000778 ETH | ||||
Transfer | 21949375 | 15 days ago | 0.00001999 ETH | ||||
Transfer | 21949375 | 15 days ago | 0.00002397 ETH | ||||
Transfer | 21933613 | 17 days ago | 0.00010856 ETH | ||||
Transfer | 21933613 | 17 days ago | 0.00013179 ETH | ||||
Transfer | 21933613 | 17 days ago | 0.00284354 ETH | ||||
Transfer | 21932659 | 17 days ago | 12.13406684 ETH | ||||
Transfer | 21932639 | 17 days ago | 35 ETH |
Loading...
Loading
Similar Match Source Code This contract matches the deployed Bytecode of the Source Code for Contract 0xDaB5dc22...0ba42d2a6 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 Etherscan.io on 2021-07-09 */ // 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()) } } } /// @title Proxy Factory - Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @author Stefan George - <[email protected]> contract GnosisSafeProxyFactory { event ProxyCreation(GnosisSafeProxy proxy, address singleton); /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @param singleton Address of singleton contract. /// @param data Payload for message call sent to new proxy contract. function createProxy(address singleton, bytes memory data) public returns (GnosisSafeProxy proxy) { proxy = new GnosisSafeProxy(singleton); if (data.length > 0) // solhint-disable-next-line no-inline-assembly assembly { if eq(call(gas(), proxy, 0, add(data, 0x20), mload(data), 0, 0), 0) { revert(0, 0) } } emit ProxyCreation(proxy, singleton); } /// @dev Allows to retrieve the runtime code of a deployed Proxy. This can be used to check that the expected Proxy was deployed. function proxyRuntimeCode() public pure returns (bytes memory) { return type(GnosisSafeProxy).runtimeCode; } /// @dev Allows to retrieve the creation code used for the Proxy deployment. With this it is easily possible to calculate predicted address. function proxyCreationCode() public pure returns (bytes memory) { return type(GnosisSafeProxy).creationCode; } /// @dev Allows to create new proxy contact using CREATE2 but it doesn't run the initializer. /// This method is only meant as an utility to be called from other methods /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function deployProxyWithNonce( address _singleton, bytes memory initializer, uint256 saltNonce ) internal returns (GnosisSafeProxy proxy) { // If the initializer changes the proxy address should change too. Hashing the initializer data is cheaper than just concatinating it bytes32 salt = keccak256(abi.encodePacked(keccak256(initializer), saltNonce)); bytes memory deploymentData = abi.encodePacked(type(GnosisSafeProxy).creationCode, uint256(uint160(_singleton))); // solhint-disable-next-line no-inline-assembly assembly { proxy := create2(0x0, add(0x20, deploymentData), mload(deploymentData), salt) } require(address(proxy) != address(0), "Create2 call failed"); } /// @dev Allows to create new proxy contact and execute a message call to the new proxy within one transaction. /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function createProxyWithNonce( address _singleton, bytes memory initializer, uint256 saltNonce ) public returns (GnosisSafeProxy proxy) { proxy = deployProxyWithNonce(_singleton, initializer, saltNonce); if (initializer.length > 0) // solhint-disable-next-line no-inline-assembly assembly { if eq(call(gas(), proxy, 0, add(initializer, 0x20), mload(initializer), 0, 0), 0) { revert(0, 0) } } emit ProxyCreation(proxy, _singleton); } /// @dev Allows to create new proxy contact, execute a message call to the new proxy and call a specified callback within one transaction /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. /// @param callback Callback that will be invoced after the new proxy contract has been successfully deployed and initialized. function createProxyWithCallback( address _singleton, bytes memory initializer, uint256 saltNonce, IProxyCreationCallback callback ) public returns (GnosisSafeProxy proxy) { uint256 saltNonceWithCallback = uint256(keccak256(abi.encodePacked(saltNonce, callback))); proxy = createProxyWithNonce(_singleton, initializer, saltNonceWithCallback); if (address(callback) != address(0)) callback.proxyCreated(proxy, _singleton, initializer, saltNonce); } /// @dev Allows to get the address for a new proxy contact created via `createProxyWithNonce` /// This method is only meant for address calculation purpose when you use an initializer that would revert, /// therefore the response is returned with a revert. When calling this method set `from` to the address of the proxy factory. /// @param _singleton Address of singleton contract. /// @param initializer Payload for message call sent to new proxy contract. /// @param saltNonce Nonce that will be used to generate the salt to calculate the address of the new proxy contract. function calculateCreateProxyWithNonceAddress( address _singleton, bytes calldata initializer, uint256 saltNonce ) external returns (GnosisSafeProxy proxy) { proxy = deployProxyWithNonce(_singleton, initializer, saltNonce); revert(string(abi.encodePacked(proxy))); } } interface IProxyCreationCallback { function proxyCreated( GnosisSafeProxy proxy, address _singleton, bytes calldata initializer, uint256 saltNonce ) external; }
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
Latest 25 blocks (From a total of 4,145 blocks with 244.91 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22059567 | 10 mins ago | 93 | 0.00 TH | 8,608,427 (23.94%) | 0.015124444179669836 ETH |
22059118 | 1 hr ago | 69 | 0.00 TH | 5,804,920 (16.16%) | 0.002951371484611824 ETH |
22058820 | 2 hrs ago | 70 | 0.00 TH | 3,371,149 (9.39%) | 0.003750851486276653 ETH |
22057924 | 5 hrs ago | 57 | 0.00 TH | 2,992,511 (8.33%) | 0.002198399838991055 ETH |
22057651 | 6 hrs ago | 56 | 0.00 TH | 21,317,029 (59.62%) | 0.002782437779856481 ETH |
22054762 | 16 hrs ago | 80 | 0.00 TH | 4,548,327 (12.68%) | 0.006008071421638041 ETH |
22053439 | 20 hrs ago | 185 | 0.00 TH | 9,370,979 (26.13%) | 0.006210307292728125 ETH |
22052842 | 22 hrs ago | 119 | 0.00 TH | 7,625,001 (21.28%) | 0.008308697476795748 ETH |
22052211 | 24 hrs ago | 36 | 0.00 TH | 3,012,390 (8.39%) | 0.003075442539354158 ETH |
22051442 | 27 hrs ago | 119 | 0.00 TH | 25,357,157 (70.64%) | 0.007811647552569455 ETH |
22050260 | 31 hrs ago | 53 | 0.00 TH | 2,017,660 (5.62%) | 0.002103921015051472 ETH |
22049366 | 34 hrs ago | 56 | 0.00 TH | 8,587,391 (23.90%) | 0.071780007007140412 ETH |
22047301 | 41 hrs ago | 104 | 0.00 TH | 5,060,478 (14.10%) | 0.002664841579709892 ETH |
22047246 | 41 hrs ago | 61 | 0.00 TH | 4,749,888 (13.26%) | 0.004453919373593997 ETH |
22047209 | 41 hrs ago | 111 | 0.00 TH | 6,377,913 (17.75%) | 0.005261648201499898 ETH |
22044565 | 2 days ago | 118 | 0.00 TH | 6,239,269 (17.37%) | 0.00816952035675212 ETH |
22044460 | 2 days ago | 121 | 0.00 TH | 5,676,535 (15.80%) | 0.004135060822833627 ETH |
22044397 | 2 days ago | 70 | 0.00 TH | 4,367,960 (12.17%) | 0.002878529592800236 ETH |
22044137 | 2 days ago | 139 | 0.00 TH | 5,014,615 (13.98%) | 0.008586408816652963 ETH |
22041371 | 2 days ago | 61 | 0.00 TH | 3,458,019 (9.64%) | 0.00338634867149542 ETH |
22040506 | 2 days ago | 76 | 0.00 TH | 4,066,861 (11.32%) | 0.002803054888475667 ETH |
22039682 | 2 days ago | 130 | 0.00 TH | 17,072,324 (47.61%) | 0.007955764287649069 ETH |
22039371 | 2 days ago | 101 | 0.00 TH | 5,403,933 (15.06%) | 0.007584897488769963 ETH |
22032349 | 3 days ago | 123 | 0.00 TH | 6,279,933 (17.50%) | 0.010694590423902496 ETH |
22032320 | 3 days ago | 200 | 0.00 TH | 9,499,480 (26.44%) | 0.004790486922202539 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 502019 withdrawals (145,501.451275623 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
639936 | 22059479 | 28 mins ago | 0.019193665 ETH |
639935 | 22059479 | 28 mins ago | 0.019219117 ETH |
639934 | 22059479 | 28 mins ago | 0.01918582 ETH |
639933 | 22059479 | 28 mins ago | 0.019193541 ETH |
639932 | 22059479 | 28 mins ago | 0.019221319 ETH |
639931 | 22059479 | 28 mins ago | 0.01918294 ETH |
639930 | 22059478 | 28 mins ago | 0.019168756 ETH |
639929 | 22059478 | 28 mins ago | 0.019211796 ETH |
639928 | 22059478 | 28 mins ago | 0.019207595 ETH |
639927 | 22059478 | 28 mins ago | 0.019207442 ETH |
639926 | 22059478 | 28 mins ago | 0.019160059 ETH |
639925 | 22059478 | 28 mins ago | 0.019200151 ETH |
639835 | 22059473 | 29 mins ago | 0.019220915 ETH |
639834 | 22059473 | 29 mins ago | 0.019183359 ETH |
639833 | 22059473 | 29 mins ago | 0.019168565 ETH |
639832 | 22059473 | 29 mins ago | 0.019194422 ETH |
639831 | 22059473 | 29 mins ago | 0.019192194 ETH |
639830 | 22059473 | 29 mins ago | 0.019193401 ETH |
639829 | 22059473 | 29 mins ago | 0.019207603 ETH |
639828 | 22059473 | 29 mins ago | 0.019204766 ETH |
639827 | 22059473 | 29 mins ago | 0.019210232 ETH |
639826 | 22059473 | 29 mins ago | 0.019193874 ETH |
639825 | 22059473 | 29 mins ago | 0.019187063 ETH |
639824 | 22059473 | 29 mins ago | 0.064818956 ETH |
635397 | 22059416 | 40 mins ago | 0.01919671 ETH |
Loading...
Loading
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ 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.