Overview
ETH Balance
411.269039189255428698 ETH
Eth Value
$1,454,531.44 (@ $3,536.69/ETH)Token Holdings
Latest 25 from a total of 555 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21229319 | 7 days ago | IN | 0.02969122 ETH | 0.00038223 | ||||
Transfer | 21217160 | 8 days ago | IN | 0.09853507 ETH | 0.00059992 | ||||
Transfer | 21193399 | 12 days ago | IN | 0.0919572 ETH | 0.00065445 | ||||
Transfer | 21187568 | 12 days ago | IN | 0.13751789 ETH | 0.00080974 | ||||
Transfer | 21173919 | 14 days ago | IN | 0.0476101 ETH | 0.00078284 | ||||
Transfer | 21161622 | 16 days ago | IN | 0.16406093 ETH | 0.00038977 | ||||
Transfer | 21139461 | 19 days ago | IN | 0.03965061 ETH | 0.00033769 | ||||
Transfer | 21119261 | 22 days ago | IN | 0.0600868 ETH | 0.00006513 | ||||
Transfer | 21117751 | 22 days ago | IN | 0.02670724 ETH | 0.00014022 | ||||
Transfer | 21115225 | 22 days ago | IN | 0.05739857 ETH | 0.00022836 | ||||
Transfer | 21110973 | 23 days ago | IN | 0.05757775 ETH | 0.00009353 | ||||
Transfer | 21103958 | 24 days ago | IN | 0.01979577 ETH | 0.00007172 | ||||
Transfer | 21088077 | 26 days ago | IN | 0.03443042 ETH | 0.00019427 | ||||
Transfer | 21067374 | 29 days ago | IN | 0.02338495 ETH | 0.00024432 | ||||
Transfer | 21038806 | 33 days ago | IN | 0.04580102 ETH | 0.00014138 | ||||
Transfer | 21018110 | 36 days ago | IN | 0.04899041 ETH | 0.00015803 | ||||
Transfer | 21006048 | 38 days ago | IN | 0.02391591 ETH | 0.0002066 | ||||
Transfer | 20997876 | 39 days ago | IN | 0.02070262 ETH | 0.00023924 | ||||
Transfer | 20990077 | 40 days ago | IN | 0.03794822 ETH | 0.00055455 | ||||
Transfer | 20984734 | 41 days ago | IN | 0.03348771 ETH | 0.00039124 | ||||
Transfer | 20982434 | 41 days ago | IN | 0.08747013 ETH | 0.00023349 | ||||
Transfer | 20961313 | 44 days ago | IN | 0.04202429 ETH | 0.00037063 | ||||
Transfer | 20951564 | 45 days ago | IN | 0.99185546 ETH | 0.00027208 | ||||
Transfer | 20932524 | 48 days ago | IN | 0.06088365 ETH | 0.00023977 | ||||
Transfer | 20928555 | 49 days ago | IN | 0.05229178 ETH | 0.00067863 |
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 | 92 days ago | 115 | 0.00 TH | 12,650,044 (42.17%) | 0.027291123246578909 ETH |
19849812 | 199 days ago | 128 | 0.00 TH | 12,837,285 (42.79%) | 0.062894919697986307 ETH |
19453751 | 255 days ago | 142 | 0.00 TH | 11,579,936 (38.60%) | 0.0200783391456445 ETH |
19397953 | 263 days ago | 147 | 0.00 TH | 13,079,598 (43.60%) | 0.061371322234832655 ETH |
19355761 | 268 days ago | 156 | 0.00 TH | 15,726,641 (52.42%) | 0.026797165388723345 ETH |
19350470 | 269 days ago | 252 | 0.00 TH | 21,004,962 (70.02%) | 0.046831282765154666 ETH |
18956261 | 324 days ago | 233 | 0.00 TH | 18,925,859 (63.09%) | 0.173579703666495815 ETH |
18916421 | 330 days ago | 102 | 0.00 TH | 10,185,102 (33.95%) | 0.026307382663910073 ETH |
18849638 | 339 days ago | 160 | 0.00 TH | 16,769,690 (55.90%) | 0.040817379983527045 ETH |
18805795 | 346 days ago | 134 | 0.00 TH | 11,147,591 (37.16%) | 0.0379375369890292 ETH |
18765415 | 351 days ago | 146 | 0.00 TH | 23,303,137 (77.68%) | 0.090527936698723293 ETH |
18750156 | 353 days ago | 289 | 0.00 TH | 26,419,558 (88.07%) | 0.048402717403891011 ETH |
18717063 | 358 days ago | 140 | 0.00 TH | 12,458,430 (41.53%) | 0.443608325041523488 ETH |
18701034 | 360 days ago | 107 | 0.00 TH | 11,374,132 (37.91%) | 0.021483153198475844 ETH |
18593617 | 375 days ago | 230 | 0.00 TH | 11,784,191 (39.28%) | 0.037970581036434999 ETH |
18471352 | 392 days ago | 191 | 0.00 TH | 13,382,750 (44.61%) | 0.039741543929034509 ETH |
17941035 | 467 days ago | 107 | 0.00 TH | 8,896,868 (29.66%) | 0.013773773482548304 ETH |
17866576 | 477 days ago | 126 | 0.00 TH | 16,646,509 (55.49%) | 0.160700306014964164 ETH |
17855510 | 479 days ago | 388 | 0.00 TH | 29,975,969 (99.92%) | 0.052988832283069826 ETH |
17854779 | 479 days ago | 101 | 0.00 TH | 13,645,230 (45.48%) | 0.406890096887030144 ETH |
17826003 | 483 days ago | 182 | 0.00 TH | 23,318,974 (77.73%) | 0.088725957331180533 ETH |
17492451 | 530 days ago | 280 | 0.00 TH | 25,849,311 (86.16%) | 0.038985543649945182 ETH |
17394545 | 543 days ago | 247 | 0.00 TH | 25,343,168 (84.48%) | 0.032759709616919228 ETH |
16428978 | 679 days ago | 156 | 0.00 TH | 16,190,432 (53.97%) | 0.031598497264306213 ETH |
16243245 | 705 days ago | 82 | 0.00 TH | 19,569,842 (65.23%) | 0.029523642219524312 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 7266 withdrawals (194.880653121 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
833845 | 21270763 | 30 hrs ago | 0.019481982 ETH |
833844 | 21270763 | 30 hrs ago | 0.019449493 ETH |
833843 | 21270763 | 30 hrs ago | 0.019444243 ETH |
833842 | 21270763 | 30 hrs ago | 0.019479938 ETH |
833841 | 21270763 | 30 hrs ago | 0.019453332 ETH |
833840 | 21270763 | 30 hrs ago | 0.019477726 ETH |
833839 | 21270763 | 30 hrs ago | 0.019478478 ETH |
833838 | 21270763 | 30 hrs ago | 0.019470757 ETH |
833837 | 21270763 | 30 hrs ago | 0.019460107 ETH |
833836 | 21270763 | 30 hrs ago | 0.019447176 ETH |
833835 | 21270763 | 30 hrs ago | 0.019457188 ETH |
833834 | 21270763 | 30 hrs ago | 0.019459557 ETH |
833833 | 21270763 | 30 hrs ago | 0.019437491 ETH |
833832 | 21270763 | 30 hrs ago | 0.019466479 ETH |
833831 | 21270763 | 30 hrs ago | 0.019463893 ETH |
833830 | 21270763 | 30 hrs ago | 0.01939224 ETH |
833829 | 21270762 | 30 hrs ago | 0.019459932 ETH |
833828 | 21270762 | 30 hrs ago | 0.019455478 ETH |
833827 | 21270762 | 30 hrs ago | 0.019475473 ETH |
833826 | 21270762 | 30 hrs ago | 0.019512618 ETH |
833825 | 21270762 | 30 hrs ago | 0.01945807 ETH |
833824 | 21270762 | 30 hrs ago | 0.019482536 ETH |
833823 | 21270762 | 30 hrs ago | 0.019409828 ETH |
833822 | 21270762 | 30 hrs ago | 0.019414819 ETH |
833821 | 21270762 | 30 hrs ago | 0.019473302 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.