Overview
ETH Balance
32.596217108573778542 ETH
Eth Value
$108,178.64 (@ $3,318.75/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 460 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21240887 | 19 hrs ago | IN | 0.10804053 ETH | 0.00031325 | ||||
Transfer | 21240397 | 20 hrs ago | IN | 0.03981949 ETH | 0.00029138 | ||||
Transfer | 21235072 | 38 hrs ago | IN | 0.01629831 ETH | 0.00028153 | ||||
Transfer | 21218430 | 3 days ago | IN | 0.24056219 ETH | 0.00025289 | ||||
Transfer | 21192058 | 7 days ago | IN | 0.04739524 ETH | 0.0003958 | ||||
Transfer | 21177390 | 9 days ago | IN | 0.05390342 ETH | 0.00045075 | ||||
Transfer | 21175679 | 9 days ago | IN | 0.06387529 ETH | 0.00069331 | ||||
Transfer | 21172953 | 10 days ago | IN | 0.03186471 ETH | 0.00089051 | ||||
Transfer | 21164494 | 11 days ago | IN | 0.04420467 ETH | 0.00046862 | ||||
Transfer | 21145737 | 14 days ago | IN | 0.13550283 ETH | 0.00026902 | ||||
Transfer | 21137330 | 15 days ago | IN | 0.03224151 ETH | 0.00055107 | ||||
Transfer | 21136215 | 15 days ago | IN | 0.0626206 ETH | 0.00039622 | ||||
Transfer | 21135749 | 15 days ago | IN | 0.07474158 ETH | 0.000425 | ||||
Transfer | 21133988 | 15 days ago | IN | 0.05009081 ETH | 0.00021033 | ||||
Transfer | 21132292 | 15 days ago | IN | 0.12955512 ETH | 0.00040347 | ||||
Transfer | 21116787 | 18 days ago | IN | 0.03439402 ETH | 0.0001509 | ||||
Transfer | 21113467 | 18 days ago | IN | 0.03025213 ETH | 0.00010457 | ||||
Transfer | 21093833 | 21 days ago | IN | 0.23032467 ETH | 0.00059734 | ||||
Transfer | 21067862 | 24 days ago | IN | 0.02555809 ETH | 0.00030848 | ||||
Transfer | 21065895 | 25 days ago | IN | 0.06676775 ETH | 0.00051642 | ||||
Transfer | 21058058 | 26 days ago | IN | 0.14121023 ETH | 0.00018201 | ||||
Transfer | 21053183 | 26 days ago | IN | 0.02320078 ETH | 0.000081 | ||||
Transfer | 21027970 | 30 days ago | IN | 0.03595715 ETH | 0.00014054 | ||||
Transfer | 21024346 | 31 days ago | IN | 0.07368374 ETH | 0.00012137 | ||||
Transfer | 20977262 | 37 days ago | IN | 0.03300332 ETH | 0.00031965 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
20595453 | 90 days ago | 33 ETH | ||||
19885901 | 189 days ago | 30.41133792 ETH | ||||
19526935 | 240 days ago | 0.05801622 ETH | ||||
19271061 | 276 days ago | 30.54565571 ETH | ||||
19100761 | 300 days ago | 0.0180773 ETH | ||||
19099344 | 300 days ago | 0.03312469 ETH | ||||
18971747 | 318 days ago | 0.0270577 ETH | ||||
18791789 | 343 days ago | 32 ETH | ||||
18596334 | 370 days ago | 0.03735884 ETH | ||||
18385724 | 400 days ago | 0.10195693 ETH | ||||
18274910 | 415 days ago | 0.01058219 ETH | ||||
18205857 | 425 days ago | 31.7430954 ETH | ||||
17884693 | 470 days ago | 0.00116528 ETH | ||||
17884693 | 470 days ago | 0.00456407 ETH | ||||
17631131 | 505 days ago | 32 ETH | ||||
17593806 | 511 days ago | 0.00242286 ETH | ||||
17469306 | 528 days ago | 0.00030056 ETH | ||||
17452971 | 531 days ago | 0.00091063 ETH | ||||
17450910 | 531 days ago | 0.00048496 ETH | ||||
17450910 | 531 days ago | 0.00104 ETH | ||||
17450910 | 531 days ago | 0.00203796 ETH | ||||
17374685 | 542 days ago | 0.0000149 ETH | ||||
17345523 | 546 days ago | 0.00139723 ETH | ||||
17345523 | 546 days ago | 0.004405 ETH | ||||
17246621 | 560 days ago | 0.00878172 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 76 blocks with 4.79 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
20531571 | 99 days ago | 127 | 0.00 TH | 14,228,184 (47.43%) | 0.044085222949242402 ETH |
20454072 | 110 days ago | 48 | 0.00 TH | 29,971,675 (99.91%) | 0.024732236456054389 ETH |
19618034 | 227 days ago | 185 | 0.00 TH | 29,087,655 (96.96%) | 0.046153581825773865 ETH |
19526935 | 240 days ago | 453 | 0.00 TH | 29,812,752 (99.38%) | 0.093945614087270457 ETH |
19407064 | 257 days ago | 146 | 0.00 TH | 13,016,922 (43.39%) | 0.028424531775342512 ETH |
19102554 | 299 days ago | 372 | 0.00 TH | 29,991,394 (99.97%) | 0.056162367046196158 ETH |
18944225 | 322 days ago | 144 | 0.00 TH | 10,326,873 (34.42%) | 0.014633525978942365 ETH |
18864814 | 333 days ago | 157 | 0.00 TH | 16,064,098 (53.55%) | 0.025009763456499363 ETH |
18629607 | 366 days ago | 133 | 0.00 TH | 10,990,852 (36.64%) | 0.262669847670968588 ETH |
18517420 | 381 days ago | 134 | 0.00 TH | 14,359,682 (47.87%) | 0.026288399432475119 ETH |
18512935 | 382 days ago | 153 | 0.00 TH | 16,930,770 (56.44%) | 0.039902488635899606 ETH |
18382724 | 400 days ago | 164 | 0.00 TH | 14,370,895 (47.90%) | 0.017752766961040689 ETH |
18133709 | 435 days ago | 267 | 0.00 TH | 18,195,753 (60.65%) | 0.115644290078638078 ETH |
18022241 | 451 days ago | 114 | 0.00 TH | 10,034,646 (33.45%) | 0.026548279633756931 ETH |
18017027 | 451 days ago | 100 | 0.00 TH | 12,446,780 (41.49%) | 0.063111322678388165 ETH |
18012775 | 452 days ago | 127 | 0.00 TH | 15,856,574 (52.86%) | 0.024471476865250152 ETH |
17976568 | 457 days ago | 129 | 0.00 TH | 15,327,774 (51.09%) | 0.031581180309444723 ETH |
17927077 | 464 days ago | 123 | 0.00 TH | 13,551,299 (45.17%) | 0.026078058916882857 ETH |
17913695 | 466 days ago | 164 | 0.00 TH | 16,772,193 (55.91%) | 0.111195418766938794 ETH |
17884693 | 470 days ago | 217 | 0.00 TH | 19,591,626 (65.31%) | 0.045716685754564299 ETH |
17750776 | 489 days ago | 96 | 0.00 TH | 10,193,292 (33.98%) | 0.060016823866417234 ETH |
17742492 | 490 days ago | 187 | 0.00 TH | 19,662,040 (65.54%) | 0.067882777484295307 ETH |
17733071 | 491 days ago | 110 | 0.00 TH | 22,116,655 (73.72%) | 0.027177467586815521 ETH |
17705333 | 495 days ago | 134 | 0.00 TH | 11,682,953 (38.94%) | 0.024484860097846663 ETH |
17690683 | 497 days ago | 114 | 0.00 TH | 11,923,545 (39.75%) | 0.021384943550313191 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 9578 withdrawals (647.110140063 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
2784 | 21243728 | 9 hrs ago | 0.065864023 ETH |
2783 | 21243728 | 9 hrs ago | 0.019558794 ETH |
2782 | 21243727 | 9 hrs ago | 0.019560854 ETH |
2781 | 21243727 | 9 hrs ago | 0.019571837 ETH |
2780 | 21243727 | 9 hrs ago | 0.019555729 ETH |
2779 | 21243727 | 9 hrs ago | 0.01955391 ETH |
2778 | 21243727 | 9 hrs ago | 0.019554347 ETH |
2777 | 21243727 | 9 hrs ago | 0.019562901 ETH |
2775 | 21243727 | 9 hrs ago | 0.019549151 ETH |
2774 | 21243727 | 9 hrs ago | 0.019547456 ETH |
2773 | 21243727 | 9 hrs ago | 0.019562962 ETH |
2772 | 21243727 | 9 hrs ago | 0.019556259 ETH |
2771 | 21243727 | 9 hrs ago | 0.019543138 ETH |
2770 | 21243727 | 9 hrs ago | 0.019567272 ETH |
2769 | 21243727 | 9 hrs ago | 0.019564775 ETH |
2768 | 21243727 | 9 hrs ago | 0.019547118 ETH |
2767 | 21243727 | 9 hrs ago | 0.019562838 ETH |
2766 | 21243726 | 9 hrs ago | 0.019565625 ETH |
2765 | 21243726 | 9 hrs ago | 0.019560847 ETH |
2764 | 21243726 | 9 hrs ago | 0.019519105 ETH |
2763 | 21243726 | 9 hrs ago | 0.019544952 ETH |
2762 | 21243726 | 9 hrs ago | 0.019534076 ETH |
2761 | 21243726 | 9 hrs ago | 0.019543093 ETH |
2760 | 21243726 | 9 hrs ago | 0.019546248 ETH |
2759 | 21243726 | 9 hrs ago | 0.019535409 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,318.75 | 32.5962 | $108,178.64 |
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.