More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,018 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21275226 | 33 mins ago | IN | 0.07805777 ETH | 0.00018119 | ||||
Transfer | 21274476 | 3 hrs ago | IN | 0.06975532 ETH | 0.00028246 | ||||
Transfer | 21272820 | 8 hrs ago | IN | 0.04892174 ETH | 0.00038471 | ||||
Transfer | 21272309 | 10 hrs ago | IN | 0.0314846 ETH | 0.00042951 | ||||
Transfer | 21268197 | 24 hrs ago | IN | 0.13771992 ETH | 0.00018759 | ||||
Transfer | 21264522 | 36 hrs ago | IN | 0.45532638 ETH | 0.00040141 | ||||
Transfer | 21258659 | 2 days ago | IN | 0.0249555 ETH | 0.00025187 | ||||
Transfer | 21252418 | 3 days ago | IN | 0.02335705 ETH | 0.00033545 | ||||
Transfer | 21248876 | 3 days ago | IN | 0.04035448 ETH | 0.00025999 | ||||
Transfer | 21247032 | 3 days ago | IN | 0.02182016 ETH | 0.00032024 | ||||
Exec Transaction | 21244347 | 4 days ago | IN | 0 ETH | 0.027155 | ||||
Transfer | 21242531 | 4 days ago | IN | 0.01503676 ETH | 0.00026764 | ||||
Transfer | 21240132 | 4 days ago | IN | 0.21018382 ETH | 0.00023198 | ||||
Transfer | 21235973 | 5 days ago | IN | 0.30340107 ETH | 0.00032675 | ||||
Transfer | 21235013 | 5 days ago | IN | 0.02941349 ETH | 0.00027805 | ||||
Transfer | 21233651 | 5 days ago | IN | 0.04354368 ETH | 0.00026625 | ||||
Exec Transaction | 21232026 | 6 days ago | IN | 0 ETH | 0.00137835 | ||||
Transfer | 21229794 | 6 days ago | IN | 0.04069954 ETH | 0.00044466 | ||||
Transfer | 21227874 | 6 days ago | IN | 0.0346408 ETH | 0.00025885 | ||||
Transfer | 21211483 | 8 days ago | IN | 0.04120136 ETH | 0.00028347 | ||||
Transfer | 21205287 | 9 days ago | IN | 0.09303394 ETH | 0.00025248 | ||||
Transfer | 21204497 | 9 days ago | IN | 0.07938149 ETH | 0.00033269 | ||||
Transfer | 21203627 | 10 days ago | IN | 0.01565976 ETH | 0.00024138 | ||||
Transfer | 21201090 | 10 days ago | IN | 0.04192939 ETH | 0.00051304 | ||||
Transfer | 21200764 | 10 days ago | IN | 0.09824684 ETH | 0.00034597 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21223977 | 7 days ago | 0.00134501 ETH | ||||
21131574 | 20 days ago | 18.12586174 ETH | ||||
20966298 | 43 days ago | 1.70073354 ETH | ||||
20938431 | 47 days ago | 15.22824092 ETH | ||||
20797671 | 66 days ago | 11.32085463 ETH | ||||
20780447 | 69 days ago | 12.03042223 ETH | ||||
20730557 | 76 days ago | 1.36542114 ETH | ||||
20587270 | 96 days ago | 5.87063524 ETH | ||||
20572301 | 98 days ago | 0.73672278 ETH | ||||
20571612 | 98 days ago | 0.0035057 ETH | ||||
20522722 | 105 days ago | 17.34890525 ETH | ||||
20522703 | 105 days ago | 3.8585689 ETH | ||||
20514391 | 106 days ago | 0.00258129 ETH | ||||
20386391 | 124 days ago | 12.44114633 ETH | ||||
20360821 | 127 days ago | 0.00117894 ETH | ||||
20360821 | 127 days ago | 0.00149881 ETH | ||||
20360821 | 127 days ago | 0.00492897 ETH | ||||
20360821 | 127 days ago | 0.00806076 ETH | ||||
20242737 | 144 days ago | 10.38195048 ETH | ||||
20242715 | 144 days ago | 2.02479407 ETH | ||||
20216925 | 147 days ago | 0.00009913 ETH | ||||
20216925 | 147 days ago | 0.0002774 ETH | ||||
20216925 | 147 days ago | 0.00077289 ETH | ||||
20204107 | 149 days ago | 0.00014791 ETH | ||||
20204107 | 149 days ago | 0.0075435 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
[{"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 produced
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21223977 | 7 days ago | 150 | 0.00 TH | 13,226,559 (44.09%) | 0.046485378860437216 ETH |
20913189 | 50 days ago | 155 | 0.00 TH | 10,759,249 (35.86%) | 0.023829828031000956 ETH |
20732625 | 75 days ago | 127 | 0.00 TH | 10,671,898 (35.57%) | 0.037002111390063731 ETH |
20664013 | 85 days ago | 133 | 0.00 TH | 11,406,523 (38.02%) | 0.038346903447566072 ETH |
20571612 | 98 days ago | 221 | 0.00 TH | 22,817,771 (76.06%) | 0.044219103997099131 ETH |
20514391 | 106 days ago | 170 | 0.00 TH | 18,346,263 (61.15%) | 0.045897410234821684 ETH |
20459409 | 113 days ago | 122 | 0.00 TH | 11,248,950 (37.50%) | 0.175550472388770393 ETH |
20411357 | 120 days ago | 131 | 0.00 TH | 12,102,415 (40.34%) | 0.032528421257857192 ETH |
20396300 | 122 days ago | 154 | 0.00 TH | 14,561,426 (48.54%) | 0.035943863225148191 ETH |
20360821 | 127 days ago | 124 | 0.00 TH | 12,739,131 (42.46%) | 0.033166566163533278 ETH |
20341393 | 130 days ago | 247 | 0.00 TH | 19,850,510 (66.17%) | 0.090370092153733099 ETH |
20293479 | 137 days ago | 210 | 0.00 TH | 17,562,809 (58.54%) | 0.026803361579674914 ETH |
20216925 | 147 days ago | 149 | 0.00 TH | 17,499,798 (58.33%) | 0.041763356633979884 ETH |
19813849 | 204 days ago | 181 | 0.00 TH | 18,731,018 (62.44%) | 0.016874144164063957 ETH |
19752560 | 212 days ago | 568 | 0.00 TH | 29,995,245 (99.98%) | 0.043499625889545676 ETH |
19589490 | 235 days ago | 138 | 0.00 TH | 13,862,469 (46.21%) | 0.028314042088842764 ETH |
19528176 | 244 days ago | 187 | 0.00 TH | 14,169,022 (47.23%) | 0.106145101942650599 ETH |
19492600 | 249 days ago | 208 | 0.00 TH | 20,806,513 (69.36%) | 0.032574504611730997 ETH |
19454268 | 254 days ago | 162 | 0.00 TH | 18,717,915 (62.39%) | 0.024670535815107001 ETH |
19433483 | 257 days ago | 201 | 0.00 TH | 13,931,644 (46.44%) | 0.029811330244839495 ETH |
19433404 | 257 days ago | 217 | 0.00 TH | 18,558,075 (61.86%) | 0.070313427257601893 ETH |
19432903 | 257 days ago | 309 | 0.00 TH | 25,289,381 (84.30%) | 0.026609104090971202 ETH |
19430868 | 257 days ago | 200 | 0.00 TH | 15,891,044 (52.97%) | 0.038264237843964857 ETH |
19422146 | 259 days ago | 143 | 0.00 TH | 10,544,195 (35.15%) | 0.021574895845710478 ETH |
19343079 | 270 days ago | 202 | 0.00 TH | 17,669,982 (58.90%) | 0.076918575252530782 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 10396 withdrawals (217.252279092 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
873511 | 21272330 | 10 hrs ago | 0.065636962 ETH |
873510 | 21272330 | 10 hrs ago | 0.019486422 ETH |
873509 | 21272330 | 10 hrs ago | 0.01947965 ETH |
873508 | 21272330 | 10 hrs ago | 0.019479915 ETH |
873507 | 21272330 | 10 hrs ago | 0.019450412 ETH |
873506 | 21272330 | 10 hrs ago | 0.019485188 ETH |
873505 | 21272330 | 10 hrs ago | 0.019473622 ETH |
873504 | 21272330 | 10 hrs ago | 0.019464096 ETH |
873503 | 21272330 | 10 hrs ago | 0.019504103 ETH |
873502 | 21272330 | 10 hrs ago | 0.019450135 ETH |
873501 | 21272330 | 10 hrs ago | 0.019488626 ETH |
873500 | 21272330 | 10 hrs ago | 0.019472367 ETH |
873499 | 21272330 | 10 hrs ago | 0.01944799 ETH |
873498 | 21272329 | 10 hrs ago | 0.019511157 ETH |
873497 | 21272329 | 10 hrs ago | 0.019488313 ETH |
873496 | 21272329 | 10 hrs ago | 0.019449741 ETH |
873495 | 21272329 | 10 hrs ago | 0.191105869 ETH |
873494 | 21272329 | 10 hrs ago | 0.019492873 ETH |
873493 | 21272329 | 10 hrs ago | 0.019474718 ETH |
873492 | 21272329 | 10 hrs ago | 0.019463825 ETH |
873491 | 21272329 | 10 hrs ago | 0.019467984 ETH |
873490 | 21272329 | 10 hrs ago | 0.019414522 ETH |
873489 | 21272329 | 10 hrs ago | 0.019486939 ETH |
873488 | 21272329 | 10 hrs ago | 0.019447971 ETH |
873487 | 21272329 | 10 hrs ago | 0.019483876 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.