Feature Tip: Add private address tag to any address under My Name Tag !
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 359 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 22286669 | 1 hr ago | IN | 0 ETH | 0.00013518 | ||||
Transfer | 22286500 | 2 hrs ago | IN | 0.00898225 ETH | 0.00000984 | ||||
Transfer | 22280744 | 21 hrs ago | IN | 0.0129528 ETH | 0.00000973 | ||||
Transfer | 22274317 | 42 hrs ago | IN | 0.02454994 ETH | 0.0000144 | ||||
Transfer | 22257776 | 4 days ago | IN | 0.01698693 ETH | 0.00001245 | ||||
Transfer | 22252807 | 4 days ago | IN | 0.01450633 ETH | 0.00001228 | ||||
Transfer | 22252360 | 4 days ago | IN | 0.00889759 ETH | 0.00001367 | ||||
Transfer | 22238500 | 6 days ago | IN | 0.09229866 ETH | 0.00003341 | ||||
Transfer | 22231311 | 7 days ago | IN | 0.01769746 ETH | 0.00001666 | ||||
Transfer | 22179855 | 14 days ago | IN | 0.01604183 ETH | 0.00001682 | ||||
Transfer | 22173442 | 15 days ago | IN | 0.01321186 ETH | 0.00002812 | ||||
Transfer | 22127646 | 22 days ago | IN | 0.01964967 ETH | 0.00000974 | ||||
Transfer | 22122022 | 23 days ago | IN | 0.01662682 ETH | 0.00001136 | ||||
Transfer | 22104248 | 25 days ago | IN | 0.01382544 ETH | 0.00001039 | ||||
Transfer | 22058754 | 31 days ago | IN | 0.00814799 ETH | 0.00001488 | ||||
Transfer | 22033998 | 35 days ago | IN | 0.0133697 ETH | 0.00001851 | ||||
Transfer | 21981222 | 42 days ago | IN | 0.01206131 ETH | 0.00001745 | ||||
Transfer | 21967857 | 44 days ago | IN | 0.02087696 ETH | 0.00002369 | ||||
Transfer | 21901677 | 53 days ago | IN | 0.00971203 ETH | 0.00002075 | ||||
Transfer | 21896717 | 54 days ago | IN | 0.48918479 ETH | 0.00006386 | ||||
Transfer | 21835195 | 63 days ago | IN | 0.01513266 ETH | 0.0000286 | ||||
Transfer | 21775762 | 71 days ago | IN | 0.02752063 ETH | 0.00009439 | ||||
Transfer | 21775269 | 71 days ago | IN | 0.0435379 ETH | 0.00008199 | ||||
Transfer | 21737454 | 76 days ago | IN | 0.02789262 ETH | 0.00009675 | ||||
Exec Transaction | 21726969 | 78 days ago | IN | 0 ETH | 0.00021236 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 22286669 | 1 hr ago | 10.5 ETH | ||||
Transfer | 21726969 | 78 days ago | 102.7 ETH | ||||
Transfer | 21300177 | 137 days ago | 193 ETH | ||||
Transfer | 21233240 | 147 days ago | 67.99 ETH | ||||
Transfer | 21025571 | 176 days ago | 7.5 ETH | ||||
Transfer | 20660772 | 227 days ago | 11.88 ETH | ||||
Transfer | 20187922 | 293 days ago | 96 ETH | ||||
Transfer | 20187889 | 293 days ago | 288 ETH | ||||
Transfer | 20180793 | 294 days ago | 132.05575423 ETH | ||||
Transfer | 20180634 | 294 days ago | 73.07022101 ETH | ||||
Transfer | 20180633 | 294 days ago | 170.4974549 ETH | ||||
Swap Exact Token... | 19681885 | 363 days ago | 32 ETH | ||||
Swap Exact Token... | 19630361 | 371 days ago | 128 ETH | ||||
Swap Exact Token... | 19575964 | 378 days ago | 64 ETH | ||||
Swap Exact Token... | 19568141 | 379 days ago | 128 ETH | ||||
Transfer | 19445179 | 397 days ago | 130 ETH | ||||
Transfer | 19322983 | 414 days ago | 33.3 ETH | ||||
Transfer | 19265934 | 422 days ago | 65.9 ETH | ||||
Transfer | 19202866 | 431 days ago | 66.4 ETH | ||||
Transfer | 19088548 | 447 days ago | 97.65 ETH | ||||
Transfer | 19031791 | 455 days ago | 256.1 ETH | ||||
Transfer | 19031728 | 455 days ago | 1 ETH | ||||
Transfer | 18967597 | 464 days ago | 1.7 ETH | ||||
Transfer | 18896332 | 474 days ago | 43.9 ETH | ||||
Transfer | 18896266 | 474 days ago | 0.1 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 16 blocks produced
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
20062150 | 310 days ago | 85 | 0.00 TH | 5,584,430 (18.61%) | 0.006532414812674647 ETH |
19911898 | 331 days ago | 202 | 0.00 TH | 14,807,550 (49.36%) | 0.06590112580482223 ETH |
19643377 | 369 days ago | 155 | 0.00 TH | 12,855,851 (42.85%) | 0.024157780121663412 ETH |
19573103 | 379 days ago | 116 | 0.00 TH | 11,329,875 (37.77%) | 0.00934986742458123 ETH |
19563786 | 380 days ago | 171 | 0.00 TH | 15,096,224 (50.32%) | 0.04114853917376647 ETH |
19261423 | 422 days ago | 213 | 0.00 TH | 18,092,935 (60.31%) | 0.03064572839476724 ETH |
19025947 | 455 days ago | 110 | 0.00 TH | 6,577,318 (21.92%) | 0.007885587543262084 ETH |
18730332 | 497 days ago | 160 | 0.00 TH | 14,959,668 (49.87%) | 0.019830012455998741 ETH |
18610754 | 514 days ago | 100 | 0.00 TH | 9,353,136 (31.18%) | 0.027781191186884696 ETH |
18481387 | 532 days ago | 103 | 0.00 TH | 11,407,359 (38.02%) | 0.11245883000558259 ETH |
18469733 | 533 days ago | 113 | 0.00 TH | 10,295,044 (34.32%) | 0.062548417942208964 ETH |
18185926 | 573 days ago | 150 | 0.00 TH | 14,925,880 (49.75%) | 0.150166096704770304 ETH |
18128845 | 581 days ago | 119 | 0.00 TH | 18,751,985 (62.51%) | 0.041516102354396276 ETH |
18085546 | 587 days ago | 116 | 0.00 TH | 11,690,211 (38.97%) | 0.026039877959821826 ETH |
18062067 | 590 days ago | 116 | 0.00 TH | 16,146,360 (53.82%) | 0.029544189261481805 ETH |
18037971 | 594 days ago | 82 | 0.00 TH | 10,064,075 (33.55%) | 0.016592689953119542 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 4808 withdrawals (1,334.185941565 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1293178 | 22281580 | 18 hrs ago | 0.019318998 ETH |
1293177 | 22281580 | 18 hrs ago | 0.019351596 ETH |
1293176 | 22281580 | 18 hrs ago | 0.019354928 ETH |
1292915 | 22281568 | 18 hrs ago | 0.019295896 ETH |
1292914 | 22281568 | 18 hrs ago | 0.019299042 ETH |
1292913 | 22281568 | 18 hrs ago | 0.063281881 ETH |
1292912 | 22281568 | 18 hrs ago | 0.065077525 ETH |
1268425 | 22280750 | 21 hrs ago | 0.019328851 ETH |
1268065 | 22280730 | 21 hrs ago | 0.019296017 ETH |
895482 | 22267798 | 2 days ago | 0.019376016 ETH |
880892 | 22267255 | 2 days ago | 0.019350436 ETH |
880891 | 22267255 | 2 days ago | 0.019338533 ETH |
880886 | 22267255 | 2 days ago | 0.01936336 ETH |
880880 | 22267255 | 2 days ago | 0.019356892 ETH |
880879 | 22267255 | 2 days ago | 0.019366146 ETH |
811563 | 22264919 | 3 days ago | 0.01936515 ETH |
811531 | 22264919 | 3 days ago | 0.01936306 ETH |
749706 | 22262555 | 3 days ago | 0.019348804 ETH |
717032 | 22261590 | 3 days ago | 0.01934365 ETH |
637644 | 22259130 | 3 days ago | 0.019378387 ETH |
637615 | 22259130 | 3 days ago | 0.01935821 ETH |
637581 | 22259130 | 3 days ago | 0.019368179 ETH |
637250 | 22259130 | 3 days ago | 0.019376091 ETH |
588492 | 22257842 | 4 days ago | 0.065057145 ETH |
549566 | 22256600 | 4 days ago | 0.01936436 ETH |
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.