Overview
ETH Balance
403.990819311395793768 ETH
Eth Value
$964,381.87 (@ $2,387.14/ETH)Token Holdings
Latest 25 from a total of 546 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21115225 | 6 hrs ago | IN | 0.05739857 ETH | 0.00022836 | ||||
Transfer | 21110973 | 20 hrs ago | IN | 0.05757775 ETH | 0.00009353 | ||||
Transfer | 21103958 | 43 hrs ago | IN | 0.01979577 ETH | 0.00007172 | ||||
Transfer | 21088077 | 4 days ago | IN | 0.03443042 ETH | 0.00019427 | ||||
Transfer | 21067374 | 6 days ago | IN | 0.02338495 ETH | 0.00024432 | ||||
Transfer | 21038806 | 10 days ago | IN | 0.04580102 ETH | 0.00014138 | ||||
Transfer | 21018110 | 13 days ago | IN | 0.04899041 ETH | 0.00015803 | ||||
Transfer | 21006048 | 15 days ago | IN | 0.02391591 ETH | 0.0002066 | ||||
Transfer | 20997876 | 16 days ago | IN | 0.02070262 ETH | 0.00023924 | ||||
Transfer | 20990077 | 17 days ago | IN | 0.03794822 ETH | 0.00055455 | ||||
Transfer | 20984734 | 18 days ago | IN | 0.03348771 ETH | 0.00039124 | ||||
Transfer | 20982434 | 18 days ago | IN | 0.08747013 ETH | 0.00023349 | ||||
Transfer | 20961313 | 21 days ago | IN | 0.04202429 ETH | 0.00037063 | ||||
Transfer | 20951564 | 23 days ago | IN | 0.99185546 ETH | 0.00027208 | ||||
Transfer | 20932524 | 25 days ago | IN | 0.06088365 ETH | 0.00023977 | ||||
Transfer | 20928555 | 26 days ago | IN | 0.05229178 ETH | 0.00067863 | ||||
Transfer | 20924882 | 26 days ago | IN | 0.08747646 ETH | 0.00066153 | ||||
Transfer | 20898150 | 30 days ago | IN | 0.0318125 ETH | 0.00011485 | ||||
Transfer | 20875337 | 33 days ago | IN | 0.02724096 ETH | 0.00013947 | ||||
Transfer | 20874875 | 33 days ago | IN | 0.0211053 ETH | 0.00014057 | ||||
Transfer | 20862038 | 35 days ago | IN | 0.06065395 ETH | 0.00021213 | ||||
Transfer | 20845290 | 37 days ago | IN | 0.03574439 ETH | 0.00020683 | ||||
Transfer | 20845158 | 37 days ago | IN | 0.08807381 ETH | 0.0002155 | ||||
Transfer | 20844645 | 38 days ago | IN | 0.03111873 ETH | 0.00025036 | ||||
Transfer | 20839797 | 38 days ago | IN | 0.06758556 ETH | 0.00027713 |
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 26 blocks with 2.09 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
20614877 | 70 days ago | 115 | 0.00 TH | 12,650,044 (42.17%) | 0.027291123246578909 ETH |
19849812 | 176 days ago | 128 | 0.00 TH | 12,837,285 (42.79%) | 0.062894919697986307 ETH |
19453751 | 232 days ago | 142 | 0.00 TH | 11,579,936 (38.60%) | 0.0200783391456445 ETH |
19397953 | 240 days ago | 147 | 0.00 TH | 13,079,598 (43.60%) | 0.061371322234832655 ETH |
19355761 | 246 days ago | 156 | 0.00 TH | 15,726,641 (52.42%) | 0.026797165388723345 ETH |
19350470 | 246 days ago | 252 | 0.00 TH | 21,004,962 (70.02%) | 0.046831282765154666 ETH |
18956261 | 302 days ago | 233 | 0.00 TH | 18,925,859 (63.09%) | 0.173579703666495815 ETH |
18916421 | 307 days ago | 102 | 0.00 TH | 10,185,102 (33.95%) | 0.026307382663910073 ETH |
18849638 | 317 days ago | 160 | 0.00 TH | 16,769,690 (55.90%) | 0.040817379983527045 ETH |
18805795 | 323 days ago | 134 | 0.00 TH | 11,147,591 (37.16%) | 0.0379375369890292 ETH |
18765415 | 329 days ago | 146 | 0.00 TH | 23,303,137 (77.68%) | 0.090527936698723293 ETH |
18750156 | 331 days ago | 289 | 0.00 TH | 26,419,558 (88.07%) | 0.048402717403891011 ETH |
18717063 | 335 days ago | 140 | 0.00 TH | 12,458,430 (41.53%) | 0.443608325041523488 ETH |
18701034 | 338 days ago | 107 | 0.00 TH | 11,374,132 (37.91%) | 0.021483153198475844 ETH |
18593617 | 353 days ago | 230 | 0.00 TH | 11,784,191 (39.28%) | 0.037970581036434999 ETH |
18471352 | 370 days ago | 191 | 0.00 TH | 13,382,750 (44.61%) | 0.039741543929034509 ETH |
17941035 | 444 days ago | 107 | 0.00 TH | 8,896,868 (29.66%) | 0.013773773482548304 ETH |
17866576 | 454 days ago | 126 | 0.00 TH | 16,646,509 (55.49%) | 0.160700306014964164 ETH |
17855510 | 456 days ago | 388 | 0.00 TH | 29,975,969 (99.92%) | 0.052988832283069826 ETH |
17854779 | 456 days ago | 101 | 0.00 TH | 13,645,230 (45.48%) | 0.406890096887030144 ETH |
17826003 | 460 days ago | 182 | 0.00 TH | 23,318,974 (77.73%) | 0.088725957331180533 ETH |
17492451 | 507 days ago | 280 | 0.00 TH | 25,849,311 (86.16%) | 0.038985543649945182 ETH |
17394545 | 521 days ago | 247 | 0.00 TH | 25,343,168 (84.48%) | 0.032759709616919228 ETH |
16428978 | 657 days ago | 156 | 0.00 TH | 16,190,432 (53.97%) | 0.031598497264306213 ETH |
16243245 | 682 days ago | 82 | 0.00 TH | 19,569,842 (65.23%) | 0.029523642219524312 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 6972 withdrawals (188.298250343 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
833845 | 21068253 | 6 days ago | 0.019388094 ETH |
833844 | 21068253 | 6 days ago | 0.019344994 ETH |
833843 | 21068253 | 6 days ago | 0.019372056 ETH |
833842 | 21068253 | 6 days ago | 0.019365277 ETH |
833841 | 21068253 | 6 days ago | 0.019368106 ETH |
833840 | 21068253 | 6 days ago | 0.019367318 ETH |
833839 | 21068253 | 6 days ago | 0.019363346 ETH |
833838 | 21068253 | 6 days ago | 0.019347303 ETH |
833837 | 21068253 | 6 days ago | 0.019376197 ETH |
833836 | 21068253 | 6 days ago | 0.019374039 ETH |
833835 | 21068253 | 6 days ago | 0.019368874 ETH |
833834 | 21068253 | 6 days ago | 0.01935193 ETH |
833833 | 21068252 | 6 days ago | 0.019363344 ETH |
833832 | 21068252 | 6 days ago | 0.019361296 ETH |
833831 | 21068252 | 6 days ago | 0.019359111 ETH |
833830 | 21068252 | 6 days ago | 0.019378376 ETH |
833829 | 21068252 | 6 days ago | 0.01937413 ETH |
833828 | 21068252 | 6 days ago | 0.019353516 ETH |
833827 | 21068252 | 6 days ago | 0.019380921 ETH |
833826 | 21068252 | 6 days ago | 0.019360365 ETH |
833825 | 21068252 | 6 days ago | 0.065216832 ETH |
833824 | 21068252 | 6 days ago | 0.019356578 ETH |
833823 | 21068252 | 6 days ago | 0.019379361 ETH |
833822 | 21068252 | 6 days ago | 0.019356838 ETH |
833821 | 21068252 | 6 days ago | 0.019367024 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.