Overview
ETH Balance
0.019215061 ETH
Eth Value
$70.65 (@ $3,676.63/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 107 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 21263623 | 5 days ago | IN | 0 ETH | 0.00044762 | ||||
Transfer | 21223706 | 10 days ago | IN | 0.1197855 ETH | 0.00067725 | ||||
Exec Transaction | 21078711 | 31 days ago | IN | 0 ETH | 0.00069786 | ||||
Transfer | 21049032 | 35 days ago | IN | 0.01963781 ETH | 0.00010044 | ||||
Exec Transaction | 20832550 | 65 days ago | IN | 0 ETH | 0.00075403 | ||||
Transfer | 20800853 | 69 days ago | IN | 0.06691969 ETH | 0.00029443 | ||||
Transfer | 20627994 | 94 days ago | IN | 0.05703245 ETH | 0.00009333 | ||||
Transfer | 20580368 | 100 days ago | IN | 0.01654921 ETH | 0.00002111 | ||||
Transfer | 20574071 | 101 days ago | IN | 0.02129233 ETH | 0.0000185 | ||||
Transfer | 20554388 | 104 days ago | IN | 0.03389523 ETH | 0.00003639 | ||||
Transfer | 20494677 | 112 days ago | IN | 0.02024093 ETH | 0.00003761 | ||||
Exec Transaction | 20475873 | 115 days ago | IN | 0 ETH | 0.00020656 | ||||
Transfer | 20469093 | 116 days ago | IN | 0.03176786 ETH | 0.00005284 | ||||
Transfer | 20445616 | 119 days ago | IN | 0.01957146 ETH | 0.00003559 | ||||
Transfer | 20216169 | 151 days ago | IN | 0.02836949 ETH | 0.00006614 | ||||
Exec Transaction | 20156822 | 159 days ago | IN | 0 ETH | 0.00022453 | ||||
Transfer | 20155923 | 159 days ago | IN | 0.02585392 ETH | 0.00006581 | ||||
Transfer | 20122415 | 164 days ago | IN | 0.11719426 ETH | 0.00018166 | ||||
Exec Transaction | 20099949 | 167 days ago | IN | 0 ETH | 0.000222 | ||||
Transfer | 20038797 | 176 days ago | IN | 0.15200259 ETH | 0.00050465 | ||||
Transfer | 20033512 | 177 days ago | IN | 0.05940621 ETH | 0.0005845 | ||||
Transfer | 20011213 | 180 days ago | IN | 0.04079226 ETH | 0.00028456 | ||||
Transfer | 19715620 | 221 days ago | IN | 0.06936998 ETH | 0.00018304 | ||||
Exec Transaction | 19667877 | 228 days ago | IN | 0 ETH | 0.00080384 | ||||
Exec Transaction | 19634752 | 232 days ago | IN | 0 ETH | 0.00202206 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
21263623 | 5 days ago | 0.4339824 ETH | ||||
21078711 | 31 days ago | 0.48328711 ETH | ||||
20832550 | 65 days ago | 0.92120863 ETH | ||||
20475873 | 115 days ago | 0.7766484 ETH | ||||
20156822 | 159 days ago | 0.25537483 ETH | ||||
20099949 | 167 days ago | 1.36524571 ETH | ||||
19667877 | 228 days ago | 0.43104872 ETH | ||||
19634695 | 232 days ago | 0.001639 ETH | ||||
19634671 | 232 days ago | 0.001871 ETH | ||||
19530515 | 247 days ago | 16.36951161 ETH | ||||
19530448 | 247 days ago | 8.15217482 ETH | ||||
19516801 | 249 days ago | 8.199158 ETH | ||||
19510508 | 250 days ago | 8.18456049 ETH | ||||
19510071 | 250 days ago | 8.18456049 ETH | ||||
19507534 | 250 days ago | 16.85567398 ETH | ||||
19507295 | 250 days ago | 8.14862317 ETH | ||||
19507139 | 250 days ago | 8.1636491 ETH | ||||
19454794 | 258 days ago | 0.51885762 ETH | ||||
19440356 | 260 days ago | 0.12552984 ETH | ||||
19297765 | 280 days ago | 0.23375138 ETH | ||||
19160826 | 299 days ago | 0.81267426 ETH | ||||
18893988 | 336 days ago | 16.24435031 ETH | ||||
18893095 | 336 days ago | 8.08356895 ETH | ||||
18893094 | 336 days ago | 8.08443225 ETH | ||||
18851733 | 342 days ago | 8.88817459 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 29 blocks with 0.80 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
19034295 | 317 days ago | 102 | 0.00 TH | 8,405,192 (28.02%) | 0.01403116238390318 ETH |
18939924 | 330 days ago | 85 | 0.00 TH | 13,667,085 (45.56%) | 0.01627088171067567 ETH |
18884046 | 338 days ago | 177 | 0.00 TH | 14,136,706 (47.12%) | 0.023863195943087078 ETH |
18627809 | 374 days ago | 168 | 0.00 TH | 11,028,949 (36.76%) | 0.061856776266861297 ETH |
18474276 | 395 days ago | 78 | 0.00 TH | 6,867,049 (22.89%) | 0.011069223699559233 ETH |
18444621 | 399 days ago | 94 | 0.00 TH | 9,092,961 (30.31%) | 0.051744450647637914 ETH |
18424490 | 402 days ago | 155 | 0.00 TH | 16,549,373 (55.16%) | 0.013381806095118365 ETH |
18287656 | 421 days ago | 46 | 0.00 TH | 28,655,725 (95.52%) | 0.005389157241108802 ETH |
18246341 | 427 days ago | 89 | 0.00 TH | 8,780,685 (29.27%) | 0.004981229605146961 ETH |
18211107 | 432 days ago | 44 | 0.00 TH | 25,572,342 (85.24%) | 0.002494635007925933 ETH |
18112577 | 446 days ago | 102 | 0.00 TH | 8,803,566 (29.35%) | 0.013802733510428981 ETH |
18033941 | 457 days ago | 95 | 0.00 TH | 14,214,474 (47.38%) | 0.016171743804021835 ETH |
17864974 | 480 days ago | 264 | 0.00 TH | 20,881,397 (69.60%) | 0.028663159252045878 ETH |
17833682 | 485 days ago | 100 | 0.00 TH | 11,282,508 (37.61%) | 0.02573880500069049 ETH |
17776665 | 493 days ago | 603 | 0.00 TH | 28,514,260 (95.05%) | 0.076201233571062112 ETH |
17683763 | 506 days ago | 140 | 0.00 TH | 10,536,506 (35.12%) | 0.014009048859606889 ETH |
17670185 | 508 days ago | 156 | 0.00 TH | 10,229,827 (34.10%) | 0.009292399198059749 ETH |
17569279 | 522 days ago | 112 | 0.00 TH | 7,648,632 (25.50%) | 0.009351460777206651 ETH |
17470537 | 536 days ago | 97 | 0.00 TH | 9,105,575 (30.32%) | 0.025179388819832683 ETH |
17428439 | 542 days ago | 100 | 0.00 TH | 29,599,466 (98.66%) | 0.007366907807042105 ETH |
17345997 | 553 days ago | 96 | 0.00 TH | 14,990,389 (49.92%) | 0.095876092673182984 ETH |
17264113 | 565 days ago | 125 | 0.00 TH | 10,993,207 (36.61%) | 0.06683581020113686 ETH |
17253021 | 566 days ago | 104 | 0.00 TH | 8,506,703 (28.33%) | 0.031540524169891855 ETH |
17247427 | 567 days ago | 107 | 0.00 TH | 14,881,739 (49.56%) | 0.081342042771609137 ETH |
17189436 | 575 days ago | 123 | 0.00 TH | 11,086,311 (36.95%) | 0.034024963645474426 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 459 withdrawals (24.176560047 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
844196 | 21271033 | 4 days ago | 0.019215061 ETH |
441654 | 21256177 | 6 days ago | 0.018892116 ETH |
428992 | 21255911 | 6 days ago | 0.018962489 ETH |
36414 | 21244704 | 7 days ago | 0.018967812 ETH |
26159 | 21244441 | 7 days ago | 0.018950959 ETH |
14440 | 21244192 | 8 days ago | 0.019043171 ETH |
844196 | 21203655 | 13 days ago | 0.017428581 ETH |
441654 | 21188596 | 15 days ago | 0.017226001 ETH |
428992 | 21188330 | 15 days ago | 0.017385079 ETH |
36414 | 21176981 | 17 days ago | 0.017386892 ETH |
26159 | 21176718 | 17 days ago | 0.017452819 ETH |
14440 | 21176468 | 17 days ago | 0.01736308 ETH |
844196 | 21135997 | 23 days ago | 0.019017422 ETH |
441654 | 21120783 | 25 days ago | 0.019212938 ETH |
428992 | 21120516 | 25 days ago | 0.019290016 ETH |
36414 | 21109090 | 26 days ago | 0.019225948 ETH |
26159 | 21108828 | 26 days ago | 0.019192805 ETH |
14440 | 21108578 | 26 days ago | 0.019198775 ETH |
844196 | 21068541 | 32 days ago | 0.019159595 ETH |
441654 | 21053140 | 34 days ago | 0.019341332 ETH |
428992 | 21052874 | 34 days ago | 0.019321182 ETH |
36414 | 21041320 | 36 days ago | 0.019391091 ETH |
26159 | 21041057 | 36 days ago | 0.019250713 ETH |
14440 | 21040806 | 36 days ago | 0.019317501 ETH |
844196 | 21001455 | 41 days ago | 0.019291296 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,676.68 | 0.0192 | $70.65 |
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.