Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
4,089.91774393511544933 ETH
Eth Value
$13,868,548.52 (@ $3,390.91/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 2,011 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21243639 | 18 hrs ago | IN | 1.4543352 ETH | 0.00051962 | ||||
Transfer | 21238110 | 37 hrs ago | IN | 0.18518059 ETH | 0.00083408 | ||||
Transfer | 21232382 | 2 days ago | IN | 0.03893046 ETH | 0.00021805 | ||||
Transfer | 21228978 | 2 days ago | IN | 0.15296841 ETH | 0.00027831 | ||||
Transfer | 21218182 | 4 days ago | IN | 0.04588246 ETH | 0.00027827 | ||||
Transfer | 21210129 | 5 days ago | IN | 0.01846495 ETH | 0.00025584 | ||||
Transfer | 21190724 | 8 days ago | IN | 0.05093128 ETH | 0.00039812 | ||||
Transfer | 21187289 | 8 days ago | IN | 0.09255919 ETH | 0.00074125 | ||||
Transfer | 21180614 | 9 days ago | IN | 0.13108284 ETH | 0.00226465 | ||||
Transfer | 21171345 | 10 days ago | IN | 0.04400465 ETH | 0.00070771 | ||||
Transfer | 21168087 | 11 days ago | IN | 0.84863846 ETH | 0.00077579 | ||||
Transfer | 21165872 | 11 days ago | IN | 0.09426171 ETH | 0.00131221 | ||||
Transfer | 21153359 | 13 days ago | IN | 0.04082801 ETH | 0.00028531 | ||||
Transfer | 21152965 | 13 days ago | IN | 0.06748753 ETH | 0.00027 | ||||
Transfer | 21135025 | 15 days ago | IN | 0.04408669 ETH | 0.00051828 | ||||
Transfer | 21133200 | 16 days ago | IN | 0.06096127 ETH | 0.00037277 | ||||
Transfer | 21132275 | 16 days ago | IN | 0.04844935 ETH | 0.00031819 | ||||
Transfer | 21132237 | 16 days ago | IN | 0.16572117 ETH | 0.00034411 | ||||
Transfer | 21120813 | 17 days ago | IN | 0.04393055 ETH | 0.00013145 | ||||
Transfer | 21115706 | 18 days ago | IN | 0.0529483 ETH | 0.00026544 | ||||
Transfer | 21108259 | 19 days ago | IN | 0.05721474 ETH | 0.00021841 | ||||
Transfer | 21108259 | 19 days ago | IN | 1 wei | 0.02564143 | ||||
Transfer | 21107735 | 19 days ago | IN | 0.05847454 ETH | 0.00019523 | ||||
Transfer | 21102355 | 20 days ago | IN | 0.02157318 ETH | 0.00012486 | ||||
Transfer | 21097885 | 21 days ago | IN | 0.09510219 ETH | 0.00007921 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20958533 | 40 days ago | 0.33799802 ETH | ||||
20778673 | 65 days ago | 1,240.46218874 ETH | ||||
20778519 | 65 days ago | 0.01 ETH | ||||
20226149 | 142 days ago | 0.00728691 ETH | ||||
20133468 | 155 days ago | 0.0001 ETH | ||||
19919465 | 185 days ago | 0.01261765 ETH | ||||
19040833 | 308 days ago | 0.0001 ETH | ||||
18914488 | 326 days ago | 0.03055155 ETH | ||||
18902911 | 328 days ago | 0.00844518 ETH | ||||
18781120 | 345 days ago | 0.00135799 ETH | ||||
18439762 | 393 days ago | 0.00072105 ETH | ||||
18200512 | 426 days ago | 0.00362602 ETH | ||||
17748840 | 489 days ago | 0.01408521 ETH | ||||
17686387 | 498 days ago | 0.00137453 ETH | ||||
17686387 | 498 days ago | 0.00313231 ETH | ||||
17680264 | 499 days ago | 0.00010221 ETH | ||||
17680264 | 499 days ago | 0.00010866 ETH | ||||
17680264 | 499 days ago | 0.00037371 ETH | ||||
17676368 | 499 days ago | 0.00020212 ETH | ||||
17676368 | 499 days ago | 0.00044036 ETH | ||||
17676368 | 499 days ago | 0.00068402 ETH | ||||
17676368 | 499 days ago | 0.0008318 ETH | ||||
17676368 | 499 days ago | 0.00391456 ETH | ||||
17656114 | 502 days ago | 0.01286288 ETH | ||||
17654657 | 503 days ago | 0.01760871 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 (From a total of 569 blocks with 29.12 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21115515 | 18 days ago | 112 | 0.00 TH | 7,753,511 (25.85%) | 0.008272280843159015 ETH |
21112617 | 19 days ago | 76 | 0.00 TH | 4,349,362 (14.50%) | 0.003842671818502842 ETH |
20788326 | 64 days ago | 143 | 0.00 TH | 8,056,886 (26.86%) | 0.008655225394328614 ETH |
20226149 | 142 days ago | 141 | 0.00 TH | 13,006,550 (43.36%) | 0.041359431401429525 ETH |
19919465 | 185 days ago | 125 | 0.00 TH | 10,248,252 (34.16%) | 0.077424283214093632 ETH |
19909348 | 187 days ago | 123 | 0.00 TH | 12,108,661 (40.36%) | 0.017607383427854533 ETH |
19727627 | 212 days ago | 197 | 0.00 TH | 14,165,845 (47.22%) | 0.036878242118963186 ETH |
19585581 | 232 days ago | 207 | 0.00 TH | 17,749,874 (59.17%) | 0.046925429586191539 ETH |
19539712 | 238 days ago | 222 | 0.00 TH | 19,697,020 (65.66%) | 0.048277912001872164 ETH |
19479492 | 247 days ago | 277 | 0.00 TH | 15,296,696 (50.99%) | 0.033113013446854541 ETH |
19457848 | 250 days ago | 135 | 0.00 TH | 11,428,697 (38.10%) | 0.017771321695891617 ETH |
19419137 | 255 days ago | 153 | 0.00 TH | 13,347,972 (44.49%) | 0.039683089837652653 ETH |
19406934 | 257 days ago | 241 | 0.00 TH | 29,971,533 (99.91%) | 0.129765865402474484 ETH |
19397177 | 258 days ago | 184 | 0.00 TH | 16,792,285 (55.97%) | 0.048853315985601336 ETH |
19375406 | 261 days ago | 199 | 0.00 TH | 25,220,400 (84.07%) | 0.086596911141501519 ETH |
19374240 | 262 days ago | 37 | 0.00 TH | 3,382,695 (11.28%) | 0.017623464969277505 ETH |
19340439 | 266 days ago | 68 | 0.00 TH | 2,479,800 (8.27%) | 0.011661204539869386 ETH |
19215190 | 284 days ago | 154 | 0.00 TH | 17,540,916 (58.47%) | 0.04710022115783288 ETH |
19185840 | 288 days ago | 148 | 0.00 TH | 15,540,885 (51.80%) | 0.051158480527331153 ETH |
19040833 | 308 days ago | 122 | 0.00 TH | 12,100,903 (40.34%) | 0.017415078655749454 ETH |
18931700 | 324 days ago | 216 | 0.00 TH | 17,635,672 (58.79%) | 0.039045504325334951 ETH |
18840947 | 336 days ago | 148 | 0.00 TH | 11,511,968 (38.37%) | 0.038057889443643461 ETH |
18817638 | 340 days ago | 123 | 0.00 TH | 12,287,858 (40.96%) | 0.039486916839841233 ETH |
18812452 | 340 days ago | 518 | 0.00 TH | 27,365,836 (91.22%) | 0.033577377105870088 ETH |
18795642 | 343 days ago | 95 | 0.00 TH | 8,348,716 (27.83%) | 0.039013882330797695 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 25331 withdrawals (5,636.653446807 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
602398 | 21194383 | 7 days ago | 0.019434547 ETH |
602396 | 21194383 | 7 days ago | 0.019502886 ETH |
602394 | 21194383 | 7 days ago | 0.019467456 ETH |
602393 | 21194383 | 7 days ago | 0.019507394 ETH |
602391 | 21194383 | 7 days ago | 0.019462838 ETH |
602389 | 21194382 | 7 days ago | 0.019428575 ETH |
602388 | 21194382 | 7 days ago | 0.019475752 ETH |
602387 | 21194382 | 7 days ago | 0.019500934 ETH |
602386 | 21194382 | 7 days ago | 0.01949967 ETH |
602385 | 21194382 | 7 days ago | 0.019471394 ETH |
602383 | 21194382 | 7 days ago | 0.019483003 ETH |
602382 | 21194382 | 7 days ago | 0.019483968 ETH |
308394 | 21183448 | 9 days ago | 0.019531526 ETH |
308393 | 21183448 | 9 days ago | 0.019531312 ETH |
308391 | 21183448 | 9 days ago | 0.019469845 ETH |
308388 | 21183448 | 9 days ago | 0.019510723 ETH |
308387 | 21183448 | 9 days ago | 0.019488153 ETH |
308386 | 21183448 | 9 days ago | 0.019488191 ETH |
308385 | 21183448 | 9 days ago | 0.019522784 ETH |
308384 | 21183447 | 9 days ago | 0.019545642 ETH |
308381 | 21183447 | 9 days ago | 0.019549236 ETH |
308378 | 21183447 | 9 days ago | 0.01954097 ETH |
308377 | 21183447 | 9 days ago | 0.019502119 ETH |
308376 | 21183447 | 9 days ago | 0.019543163 ETH |
308375 | 21183447 | 9 days ago | 0.019528872 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.