More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,299 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 22276165 | 9 hrs ago | IN | 0.01350954 ETH | 0.00002127 | ||||
Transfer | 22272614 | 21 hrs ago | IN | 0.0214809 ETH | 0.00000973 | ||||
Transfer | 22271904 | 23 hrs ago | IN | 0.00986651 ETH | 0.00000912 | ||||
Transfer | 22271496 | 24 hrs ago | IN | 0.02074225 ETH | 0.00001043 | ||||
Transfer | 22271438 | 25 hrs ago | IN | 0.01104706 ETH | 0.0000109 | ||||
Transfer | 22271057 | 26 hrs ago | IN | 0.01918183 ETH | 0.00001073 | ||||
Transfer | 22268200 | 36 hrs ago | IN | 0.04167092 ETH | 0.00016515 | ||||
Transfer | 22267037 | 39 hrs ago | IN | 0.02515788 ETH | 0.00027158 | ||||
Transfer | 22266726 | 40 hrs ago | IN | 0.01898386 ETH | 0.00002723 | ||||
Transfer | 22265081 | 46 hrs ago | IN | 0.01203546 ETH | 0.00001281 | ||||
Transfer | 22264624 | 2 days ago | IN | 0.00766646 ETH | 0.00001321 | ||||
Transfer | 22262684 | 2 days ago | IN | 0.10356855 ETH | 0.0000175 | ||||
Transfer | 22262082 | 2 days ago | IN | 0.02970522 ETH | 0.00001424 | ||||
Transfer | 22258904 | 2 days ago | IN | 0.01444168 ETH | 0.00001288 | ||||
Transfer | 22258769 | 2 days ago | IN | 0.06457912 ETH | 0.00001219 | ||||
Transfer | 22255084 | 3 days ago | IN | 0.02472116 ETH | 0.00001278 | ||||
Transfer | 22253271 | 3 days ago | IN | 0.44605856 ETH | 0.00002503 | ||||
Transfer | 22248875 | 4 days ago | IN | 0.02099567 ETH | 0.00001085 | ||||
Transfer | 22248066 | 4 days ago | IN | 0.00975402 ETH | 0.00001451 | ||||
Transfer | 22247628 | 4 days ago | IN | 0.03050273 ETH | 0.00003666 | ||||
Transfer | 22244029 | 4 days ago | IN | 0.03006004 ETH | 0.00001334 | ||||
Transfer | 22237125 | 5 days ago | IN | 0.03014078 ETH | 0.0000393 | ||||
Transfer | 22236033 | 5 days ago | IN | 0.15761666 ETH | 0.00001306 | ||||
Transfer | 22234520 | 6 days ago | IN | 0.01226666 ETH | 0.00002086 | ||||
Transfer | 22233958 | 6 days ago | IN | 0.08471551 ETH | 0.00012254 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Method | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|---|
Transfer | 21881854 | 55 days ago | 0.00012589 ETH | ||||
Transfer | 21773818 | 70 days ago | 0.00062607 ETH | ||||
Transfer | 21773818 | 70 days ago | 0.00563842 ETH | ||||
Transfer | 21773818 | 70 days ago | 0.02942817 ETH | ||||
Transfer | 21185247 | 152 days ago | 0.01854309 ETH | ||||
Transfer | 21165022 | 155 days ago | 0.00015665 ETH | ||||
Transfer | 20479105 | 251 days ago | 0.01902301 ETH | ||||
Transfer | 20216740 | 287 days ago | 0.00009448 ETH | ||||
Transfer | 19621116 | 371 days ago | 0.09853758 ETH | ||||
Transfer | 19363316 | 407 days ago | 0.08741843 ETH | ||||
Transfer | 19158337 | 436 days ago | 0.01588371 ETH | ||||
Transfer | 19078355 | 447 days ago | 0.07650633 ETH | ||||
Transfer | 18949898 | 465 days ago | 0.01359378 ETH | ||||
Transfer | 18903319 | 471 days ago | 0.01462454 ETH | ||||
Transfer | 18897540 | 472 days ago | 0.04243844 ETH | ||||
Transfer | 18866322 | 477 days ago | 0.03312183 ETH | ||||
Transfer | 18749549 | 493 days ago | 0.01524623 ETH | ||||
Transfer | 18675591 | 503 days ago | 0.0003496 ETH | ||||
Transfer | 18606372 | 513 days ago | 0.00192549 ETH | ||||
Transfer | 18600833 | 514 days ago | 0.00016484 ETH | ||||
Transfer | 18600833 | 514 days ago | 0.00054484 ETH | ||||
Transfer | 18600833 | 514 days ago | 0.00054484 ETH | ||||
Transfer | 18600833 | 514 days ago | 0.00054484 ETH | ||||
Transfer | 18600833 | 514 days ago | 0.00054484 ETH | ||||
Transfer | 18600833 | 514 days ago | 0.00054484 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 96 blocks with 5.50 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
22239482 | 5 days ago | 156 | 0.00 TH | 10,743,413 (29.84%) | 0.014191850941913661 ETH |
22238559 | 5 days ago | 83 | 0.00 TH | 6,227,230 (17.31%) | 0.005674490330167536 ETH |
22205063 | 10 days ago | 95 | 0.00 TH | 8,911,629 (24.83%) | 0.011622508156761748 ETH |
22168168 | 15 days ago | 144 | 0.00 TH | 8,680,338 (24.11%) | 0.007330758178940757 ETH |
22158589 | 16 days ago | 111 | 0.00 TH | 20,973,698 (58.26%) | 0.001378386908258412 ETH |
22068855 | 29 days ago | 128 | 0.00 TH | 29,345,181 (82.08%) | 0.005514260322738958 ETH |
21935507 | 47 days ago | 103 | 0.00 TH | 7,859,776 (21.83%) | 0.004344512468499484 ETH |
21881854 | 55 days ago | 157 | 0.00 TH | 15,874,134 (44.14%) | 0.032702343086382325 ETH |
21773818 | 70 days ago | 125 | 0.00 TH | 12,601,728 (35.04%) | 0.166983315459628508 ETH |
21185247 | 152 days ago | 136 | 0.00 TH | 11,787,935 (39.29%) | 0.087255975126000196 ETH |
21165022 | 155 days ago | 181 | 0.00 TH | 13,414,826 (44.72%) | 0.039234673220523968 ETH |
21012184 | 176 days ago | 85 | 0.00 TH | 19,076,468 (63.59%) | 0.005025174524828295 ETH |
20882400 | 194 days ago | 56 | 0.00 TH | 3,504,048 (11.68%) | 0.003986804110244926 ETH |
20814686 | 204 days ago | 130 | 0.00 TH | 8,896,181 (29.65%) | 0.015051081826980085 ETH |
20778884 | 209 days ago | 162 | 0.00 TH | 8,583,906 (28.61%) | 0.012368251531868727 ETH |
20751301 | 213 days ago | 106 | 0.00 TH | 9,394,734 (31.32%) | 0.004939435995495341 ETH |
20563143 | 239 days ago | 115 | 0.00 TH | 11,695,122 (38.98%) | 0.050993066340521044 ETH |
20479105 | 251 days ago | 113 | 0.00 TH | 11,781,869 (39.27%) | 0.047546296150957212 ETH |
20248635 | 283 days ago | 145 | 0.00 TH | 14,103,290 (47.01%) | 0.026602644397085262 ETH |
20216740 | 287 days ago | 108 | 0.00 TH | 10,281,274 (34.27%) | 0.073457589023216681 ETH |
20175022 | 293 days ago | 88 | 0.00 TH | 4,619,108 (15.40%) | 0.004756998430259049 ETH |
20138408 | 298 days ago | 79 | 0.00 TH | 9,707,703 (32.36%) | 0.010306720824161324 ETH |
19645477 | 367 days ago | 175 | 0.00 TH | 14,529,002 (48.43%) | 0.077638163073001322 ETH |
19611993 | 372 days ago | 163 | 0.00 TH | 11,726,330 (39.09%) | 0.057770433282790162 ETH |
19444633 | 396 days ago | 75 | 0.00 TH | 5,826,160 (19.42%) | 0.026401149971744481 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 37199 withdrawals (810.272124188 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
873774 | 22266965 | 40 hrs ago | 0.019380964 ETH |
873773 | 22266965 | 40 hrs ago | 0.019279321 ETH |
873772 | 22266965 | 40 hrs ago | 0.019341966 ETH |
873771 | 22266965 | 40 hrs ago | 0.019283914 ETH |
873770 | 22266965 | 40 hrs ago | 0.064873382 ETH |
873769 | 22266965 | 40 hrs ago | 0.019348831 ETH |
873768 | 22266964 | 40 hrs ago | 0.019376844 ETH |
873767 | 22266964 | 40 hrs ago | 0.01931156 ETH |
873766 | 22266964 | 40 hrs ago | 0.019350998 ETH |
873765 | 22266964 | 40 hrs ago | 0.019372311 ETH |
873764 | 22266964 | 40 hrs ago | 0.019289469 ETH |
873763 | 22266964 | 40 hrs ago | 0.019359946 ETH |
873762 | 22266964 | 40 hrs ago | 0.019374768 ETH |
873761 | 22266964 | 40 hrs ago | 0.01938558 ETH |
873760 | 22266964 | 40 hrs ago | 0.019356475 ETH |
873759 | 22266964 | 40 hrs ago | 0.019369275 ETH |
873758 | 22266964 | 40 hrs ago | 0.019344482 ETH |
873757 | 22266964 | 40 hrs ago | 0.019365253 ETH |
873756 | 22266964 | 40 hrs ago | 0.019256674 ETH |
873755 | 22266964 | 40 hrs ago | 0.019351496 ETH |
873754 | 22266964 | 40 hrs ago | 0.019361256 ETH |
873753 | 22266964 | 40 hrs ago | 0.019281619 ETH |
873752 | 22266963 | 40 hrs ago | 0.019342074 ETH |
873751 | 22266963 | 40 hrs ago | 0.019247689 ETH |
873750 | 22266963 | 40 hrs ago | 0.019358303 ETH |
Multichain Portfolio | 34 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | 100.00% | $1,592.27 | 988.5511 | $1,574,045.21 |
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.