Overview
ETH Balance
411.854428138658092028 ETH
Eth Value
$1,364,761.00 (@ $3,313.70/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 3,990 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21245935 | 1 hr ago | IN | 0.0176854 ETH | 0.00041623 | ||||
Transfer | 21245666 | 2 hrs ago | IN | 0.02325464 ETH | 0.00030648 | ||||
Transfer | 21244169 | 7 hrs ago | IN | 0.09873131 ETH | 0.00038195 | ||||
Transfer | 21244011 | 8 hrs ago | IN | 0.92233478 ETH | 0.000401 | ||||
Transfer | 21243759 | 9 hrs ago | IN | 0.03021125 ETH | 0.00045703 | ||||
Transfer | 21243044 | 11 hrs ago | IN | 0.03538353 ETH | 0.00025663 | ||||
Transfer | 21242094 | 14 hrs ago | IN | 0.03161095 ETH | 0.00027553 | ||||
Transfer | 21241147 | 17 hrs ago | IN | 0.01628201 ETH | 0.00027048 | ||||
Transfer | 21239087 | 24 hrs ago | IN | 0.0472298 ETH | 0.0003484 | ||||
Transfer | 21239064 | 24 hrs ago | IN | 0.0156909 ETH | 0.0003643 | ||||
Transfer | 21237742 | 29 hrs ago | IN | 0.07435495 ETH | 0.00045437 | ||||
Transfer | 21237438 | 30 hrs ago | IN | 0.02304572 ETH | 0.000474 | ||||
Transfer | 21236498 | 33 hrs ago | IN | 0.02431927 ETH | 0.00068991 | ||||
Transfer | 21235329 | 37 hrs ago | IN | 0.0291589 ETH | 0.00029936 | ||||
Transfer | 21234781 | 39 hrs ago | IN | 0.02574475 ETH | 0.00023783 | ||||
Transfer | 21234519 | 40 hrs ago | IN | 0.02711711 ETH | 0.00027643 | ||||
Transfer | 21233918 | 42 hrs ago | IN | 0.01568398 ETH | 0.00038379 | ||||
Transfer | 21232691 | 46 hrs ago | IN | 0.01618329 ETH | 0.00022902 | ||||
Transfer | 21232017 | 2 days ago | IN | 0.01849509 ETH | 0.00025495 | ||||
Transfer | 21227756 | 2 days ago | IN | 0.01797327 ETH | 0.00022413 | ||||
Transfer | 21227571 | 2 days ago | IN | 0.02948968 ETH | 0.00017709 | ||||
Transfer | 21227388 | 2 days ago | IN | 0.01850863 ETH | 0.00020775 | ||||
Transfer | 21226928 | 2 days ago | IN | 0.02533387 ETH | 0.00021127 | ||||
Transfer | 21226905 | 2 days ago | IN | 0.03445244 ETH | 0.00022841 | ||||
Transfer | 21226672 | 2 days ago | IN | 0.01598159 ETH | 0.00024099 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20552108 | 96 days ago | 0.05 ETH | ||||
20547755 | 97 days ago | 4.13265079 ETH | ||||
20456475 | 110 days ago | 0.2121395 ETH | ||||
20427632 | 114 days ago | 0.00060694 ETH | ||||
20422518 | 115 days ago | 248.61358344 ETH | ||||
20125556 | 156 days ago | 0.31379624 ETH | ||||
20124627 | 156 days ago | 0.01366181 ETH | ||||
20118203 | 157 days ago | 0.001 ETH | ||||
19928369 | 184 days ago | 37.59178294 ETH | ||||
19841134 | 196 days ago | 54.7 ETH | ||||
19755731 | 208 days ago | 64.19691783 ETH | ||||
19612796 | 228 days ago | 859.50864688 ETH | ||||
19612385 | 228 days ago | 1 ETH | ||||
19561349 | 235 days ago | 0.00120541 ETH | ||||
19553898 | 236 days ago | 0.01323525 ETH | ||||
19488177 | 245 days ago | 0.08018046 ETH | ||||
19400833 | 257 days ago | 0.01599179 ETH | ||||
19357533 | 264 days ago | 0.00520816 ETH | ||||
19348893 | 265 days ago | 0.05555 ETH | ||||
19258830 | 277 days ago | 0.00719062 ETH | ||||
19159705 | 291 days ago | 0.02470135 ETH | ||||
19158325 | 291 days ago | 0.01032885 ETH | ||||
19147885 | 293 days ago | 0.02127688 ETH | ||||
19095636 | 300 days ago | 0.01230213 ETH | ||||
19052124 | 306 days ago | 0.15908419 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 251 blocks with 10.88 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21213102 | 4 days ago | 59 | 0.00 TH | 5,650,989 (18.84%) | 0.005443460199474095 ETH |
21203354 | 6 days ago | 107 | 0.00 TH | 6,404,430 (21.35%) | 0.008514185057333436 ETH |
21100855 | 20 days ago | 217 | 0.00 TH | 16,115,604 (53.72%) | 0.020381991567390559 ETH |
21006303 | 33 days ago | 247 | 0.00 TH | 12,318,254 (41.06%) | 0.019912060580527051 ETH |
20863886 | 53 days ago | 114 | 0.00 TH | 6,967,635 (23.23%) | 0.013259638948041764 ETH |
20521352 | 101 days ago | 134 | 0.00 TH | 10,299,445 (34.33%) | 0.020057612299610901 ETH |
20485046 | 106 days ago | 80 | 0.00 TH | 10,694,674 (35.65%) | 0.031031660413275116 ETH |
20427632 | 114 days ago | 138 | 0.00 TH | 13,077,596 (43.59%) | 0.041101423994601792 ETH |
20423907 | 114 days ago | 125 | 0.00 TH | 11,015,353 (36.72%) | 0.013121319188357264 ETH |
20333797 | 127 days ago | 67 | 0.00 TH | 4,500,941 (15.00%) | 0.013006947288811966 ETH |
20244168 | 139 days ago | 69 | 0.00 TH | 4,771,886 (15.91%) | 0.004271173510611083 ETH |
20195464 | 146 days ago | 206 | 0.00 TH | 15,435,402 (51.45%) | 0.018771990011848971 ETH |
20180358 | 148 days ago | 103 | 0.00 TH | 15,504,196 (51.68%) | 0.017098582316712463 ETH |
20156532 | 152 days ago | 123 | 0.00 TH | 10,477,405 (34.92%) | 0.047309344228305071 ETH |
20124627 | 156 days ago | 175 | 0.00 TH | 14,411,767 (48.04%) | 0.01676099364133946 ETH |
20118203 | 157 days ago | 187 | 0.00 TH | 12,886,675 (42.96%) | 0.017082876607284855 ETH |
20062864 | 165 days ago | 202 | 0.00 TH | 17,181,096 (57.27%) | 0.020577080443826309 ETH |
20062596 | 165 days ago | 103 | 0.00 TH | 6,560,544 (21.87%) | 0.007479762723754444 ETH |
19983348 | 176 days ago | 90 | 0.00 TH | 7,069,456 (23.56%) | 0.006238437802638114 ETH |
19917100 | 185 days ago | 251 | 0.00 TH | 29,911,628 (99.71%) | 0.104151117142312304 ETH |
19908516 | 186 days ago | 144 | 0.00 TH | 19,403,348 (64.68%) | 0.038221167979370951 ETH |
19889112 | 189 days ago | 126 | 0.00 TH | 11,920,839 (39.74%) | 0.047566199529885343 ETH |
19859823 | 193 days ago | 150 | 0.00 TH | 16,735,397 (55.78%) | 0.061399336536039741 ETH |
19840715 | 196 days ago | 347 | 0.00 TH | 23,321,727 (77.74%) | 0.026429468626872997 ETH |
19825680 | 198 days ago | 179 | 0.00 TH | 27,051,208 (90.17%) | 0.017496463457769614 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 63951 withdrawals (1,362.744226609 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1263667 | 21222175 | 3 days ago | 0.019113441 ETH |
1263666 | 21222175 | 3 days ago | 0.065302505 ETH |
1263665 | 21222175 | 3 days ago | 0.019060391 ETH |
1263664 | 21222175 | 3 days ago | 0.018949694 ETH |
1263663 | 21222175 | 3 days ago | 0.018903333 ETH |
1263662 | 21222175 | 3 days ago | 0.019106137 ETH |
1263661 | 21222175 | 3 days ago | 0.018983121 ETH |
1263660 | 21222175 | 3 days ago | 0.019062649 ETH |
1263659 | 21222175 | 3 days ago | 0.019018496 ETH |
1263658 | 21222175 | 3 days ago | 0.018996741 ETH |
1263657 | 21222175 | 3 days ago | 0.019076632 ETH |
1263656 | 21222175 | 3 days ago | 0.018907934 ETH |
1263655 | 21222175 | 3 days ago | 0.018988374 ETH |
1263654 | 21222175 | 3 days ago | 0.018940853 ETH |
1263653 | 21222175 | 3 days ago | 0.018940683 ETH |
1263652 | 21222175 | 3 days ago | 0.018939913 ETH |
1263651 | 21222174 | 3 days ago | 0.019007729 ETH |
1263650 | 21222174 | 3 days ago | 0.019081074 ETH |
1263649 | 21222174 | 3 days ago | 0.018916227 ETH |
1263648 | 21222174 | 3 days ago | 0.018994392 ETH |
1263647 | 21222174 | 3 days ago | 0.018946143 ETH |
1263646 | 21222174 | 3 days ago | 0.019072176 ETH |
1263645 | 21222174 | 3 days ago | 0.019068094 ETH |
1263644 | 21222174 | 3 days ago | 0.018931452 ETH |
1263643 | 21222174 | 3 days ago | 0.019044019 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,313.7 | 411.8544 | $1,364,761 |
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.