Overview
ETH Balance
8.445660412027981962 ETH
Eth Value
$27,966.82 (@ $3,311.38/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 532 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21462010 | 16 hrs ago | IN | 0.05136105 ETH | 0.00011494 | ||||
Transfer | 21460013 | 23 hrs ago | IN | 0.03767844 ETH | 0.00016329 | ||||
Transfer | 21442811 | 3 days ago | IN | 0.05208703 ETH | 0.00086718 | ||||
Transfer | 21440430 | 3 days ago | IN | 0.04038748 ETH | 0.00028241 | ||||
Transfer | 21433839 | 4 days ago | IN | 0.10438947 ETH | 0.00042098 | ||||
Transfer | 21433168 | 4 days ago | IN | 0.01819048 ETH | 0.00033807 | ||||
Transfer | 21432792 | 4 days ago | IN | 0.09364333 ETH | 0.000304 | ||||
Transfer | 21430896 | 5 days ago | IN | 0.03869143 ETH | 0.00067791 | ||||
Transfer | 21430187 | 5 days ago | IN | 0.03144263 ETH | 0.00064181 | ||||
Transfer | 21425458 | 5 days ago | IN | 0.04077989 ETH | 0.00043151 | ||||
Exec Transaction | 21424486 | 5 days ago | IN | 0 ETH | 0.00289674 | ||||
Transfer | 21417959 | 6 days ago | IN | 0.04723186 ETH | 0.0003855 | ||||
Transfer | 21416393 | 7 days ago | IN | 0.02568908 ETH | 0.00090295 | ||||
Transfer | 21414369 | 7 days ago | IN | 0.06542271 ETH | 0.00028634 | ||||
Transfer | 21412742 | 7 days ago | IN | 0.04511944 ETH | 0.00022187 | ||||
Transfer | 21412259 | 7 days ago | IN | 0.01511687 ETH | 0.00031581 | ||||
Transfer | 21410504 | 7 days ago | IN | 0.02611718 ETH | 0.00027335 | ||||
Transfer | 21407813 | 8 days ago | IN | 0.02018864 ETH | 0.00017898 | ||||
Transfer | 21402463 | 9 days ago | IN | 0.02807494 ETH | 0.00026681 | ||||
Transfer | 21402131 | 9 days ago | IN | 0.02380728 ETH | 0.0002502 | ||||
Transfer | 21398780 | 9 days ago | IN | 0.01443148 ETH | 0.00022015 | ||||
Transfer | 21394468 | 10 days ago | IN | 0.0400215 ETH | 0.00061331 | ||||
Transfer | 21390570 | 10 days ago | IN | 0.01861976 ETH | 0.00032159 | ||||
Transfer | 21387350 | 11 days ago | IN | 0.06574825 ETH | 0.0008372 | ||||
Transfer | 21379305 | 12 days ago | IN | 0.05159782 ETH | 0.00049212 |
Latest 17 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21424486 | 5 days ago | 0.00283659 ETH | ||||
21424486 | 5 days ago | 90 ETH | ||||
20679743 | 109 days ago | 0.00129659 ETH | ||||
20679743 | 109 days ago | 20 ETH | ||||
20679591 | 109 days ago | 0.00411292 ETH | ||||
20472071 | 138 days ago | 0.00075214 ETH | ||||
20472071 | 138 days ago | 52 ETH | ||||
20092248 | 191 days ago | 0.00171007 ETH | ||||
20092248 | 191 days ago | 62 ETH | ||||
19527910 | 270 days ago | 0.00627284 ETH | ||||
19527910 | 270 days ago | 100 ETH | ||||
19359195 | 294 days ago | 100 ETH | ||||
18716101 | 384 days ago | 0.00960833 ETH | ||||
18716101 | 384 days ago | 0.5 ETH | ||||
18715723 | 384 days ago | 0.5 ETH | ||||
18715667 | 384 days ago | 0.01663908 ETH | ||||
18715542 | 384 days ago | Contract Creation | 0 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 74 blocks with 1.20 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21457360 | 32 hrs ago | 73 | 0.00 TH | 5,645,708 (18.82%) | 0.006402047489061109 ETH |
21449141 | 2 days ago | 92 | 0.00 TH | 6,037,426 (20.09%) | 0.006615449521601446 ETH |
21435686 | 4 days ago | 79 | 0.00 TH | 5,618,672 (18.73%) | 0.007445501689256345 ETH |
21419399 | 6 days ago | 182 | 0.00 TH | 9,916,312 (33.05%) | 0.010639106197697847 ETH |
21416076 | 7 days ago | 86 | 0.00 TH | 6,123,595 (20.41%) | 0.00840993075720464 ETH |
21408480 | 8 days ago | 175 | 0.00 TH | 13,855,419 (46.18%) | 0.019092209098737474 ETH |
21404781 | 8 days ago | 87 | 0.00 TH | 7,848,733 (26.16%) | 0.010408626518512492 ETH |
21395610 | 9 days ago | 87 | 0.00 TH | 6,354,650 (21.18%) | 0.01096743362745369 ETH |
21370268 | 13 days ago | 93 | 0.00 TH | 10,901,207 (36.34%) | 0.008410997834924931 ETH |
21369440 | 13 days ago | 145 | 0.00 TH | 9,401,432 (31.34%) | 0.025823643422990215 ETH |
21353352 | 15 days ago | 104 | 0.00 TH | 6,117,698 (20.39%) | 0.011702656468609758 ETH |
21277591 | 26 days ago | 85 | 0.00 TH | 6,158,927 (20.53%) | 0.008463448787158502 ETH |
21224354 | 33 days ago | 131 | 0.00 TH | 8,162,113 (27.21%) | 0.024590011148830966 ETH |
21222061 | 34 days ago | 145 | 0.00 TH | 8,725,461 (29.08%) | 0.023187720360733971 ETH |
21210490 | 35 days ago | 130 | 0.00 TH | 8,015,618 (26.72%) | 0.010052100769859195 ETH |
21168690 | 41 days ago | 143 | 0.00 TH | 8,351,752 (27.84%) | 0.01860787548161241 ETH |
21163212 | 42 days ago | 88 | 0.00 TH | 5,879,543 (19.60%) | 0.015042786130191626 ETH |
21157577 | 43 days ago | 112 | 0.00 TH | 6,631,693 (22.11%) | 0.015238998509400736 ETH |
21155702 | 43 days ago | 96 | 0.00 TH | 7,423,838 (24.75%) | 0.009164559171760594 ETH |
21151056 | 44 days ago | 196 | 0.00 TH | 10,814,187 (36.05%) | 0.022823939502706008 ETH |
21145327 | 44 days ago | 111 | 0.00 TH | 8,035,755 (26.79%) | 0.016059678450959557 ETH |
21135922 | 46 days ago | 154 | 0.00 TH | 8,701,580 (29.01%) | 0.0102676407127177 ETH |
21131439 | 46 days ago | 127 | 0.00 TH | 7,198,276 (23.99%) | 0.01022149000365324 ETH |
21121865 | 48 days ago | 125 | 0.00 TH | 10,812,674 (36.04%) | 0.00925054546414262 ETH |
21110555 | 49 days ago | 68 | 0.00 TH | 6,789,663 (22.63%) | 0.006635361465989 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 8486 withdrawals (190.058524491 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1353097 | 21426715 | 5 days ago | 0.019318708 ETH |
1353096 | 21426715 | 5 days ago | 0.01936503 ETH |
1306911 | 21425133 | 5 days ago | 0.019331937 ETH |
1306910 | 21425132 | 5 days ago | 0.019385776 ETH |
1300951 | 21424911 | 5 days ago | 0.065500959 ETH |
1300949 | 21424911 | 5 days ago | 0.019374898 ETH |
1300948 | 21424911 | 5 days ago | 0.019365487 ETH |
1300946 | 21424911 | 5 days ago | 0.065285033 ETH |
1300945 | 21424911 | 5 days ago | 0.019347869 ETH |
1300944 | 21424911 | 5 days ago | 0.01937453 ETH |
1300942 | 21424911 | 5 days ago | 0.019378852 ETH |
1300941 | 21424911 | 5 days ago | 0.019300241 ETH |
1300939 | 21424911 | 5 days ago | 0.01940901 ETH |
1300938 | 21424911 | 5 days ago | 0.01937461 ETH |
1300936 | 21424911 | 5 days ago | 0.019397144 ETH |
1300935 | 21424911 | 5 days ago | 0.01936124 ETH |
1300933 | 21424911 | 5 days ago | 0.019402165 ETH |
1300932 | 21424911 | 5 days ago | 0.019359914 ETH |
1300890 | 21424908 | 5 days ago | 0.019380959 ETH |
1300888 | 21424908 | 5 days ago | 0.01937285 ETH |
1300887 | 21424908 | 5 days ago | 0.065239787 ETH |
1300886 | 21424908 | 5 days ago | 0.019363621 ETH |
1300884 | 21424908 | 5 days ago | 0.019365626 ETH |
1300883 | 21424908 | 5 days ago | 0.019336026 ETH |
1300882 | 21424908 | 5 days ago | 0.019401786 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,314.66 | 8.4457 | $27,994.49 |
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.