Overview
ETH Balance
745.00338070258073406 ETH
Eth Value
$2,466,130.46 (@ $3,310.23/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 478 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21446647 | 2 days ago | IN | 0.01464646 ETH | 0.00033417 | ||||
Transfer | 21414359 | 6 days ago | IN | 0.03100054 ETH | 0.00027958 | ||||
Transfer | 21405425 | 8 days ago | IN | 0.04507417 ETH | 0.00020503 | ||||
Transfer | 21400639 | 8 days ago | IN | 0.02923191 ETH | 0.00021828 | ||||
Transfer | 21399713 | 8 days ago | IN | 0.04437873 ETH | 0.00021262 | ||||
Transfer | 21386325 | 10 days ago | IN | 0.06040751 ETH | 0.00049538 | ||||
Transfer | 21378052 | 11 days ago | IN | 0.02829508 ETH | 0.00032687 | ||||
Transfer | 21359065 | 14 days ago | IN | 0.02703743 ETH | 0.00040443 | ||||
Transfer | 21346444 | 16 days ago | IN | 0.0705102 ETH | 0.00050952 | ||||
Transfer | 21337253 | 17 days ago | IN | 0.06533453 ETH | 0.00079326 | ||||
Transfer | 21337114 | 17 days ago | IN | 0.0226011 ETH | 0.00071537 | ||||
Transfer | 21336845 | 17 days ago | IN | 0.14705478 ETH | 0.00063254 | ||||
Transfer | 21330989 | 18 days ago | IN | 0.05935609 ETH | 0.00072711 | ||||
Transfer | 21313650 | 20 days ago | IN | 0.02196827 ETH | 0.00040723 | ||||
Transfer | 21277450 | 25 days ago | IN | 0.01321433 ETH | 0.00026037 | ||||
Transfer | 21269268 | 27 days ago | IN | 0.01563529 ETH | 0.00015169 | ||||
Transfer | 21266077 | 27 days ago | IN | 0.03138578 ETH | 0.00058489 | ||||
Transfer | 21264250 | 27 days ago | IN | 0.04404824 ETH | 0.00041606 | ||||
Transfer | 21240887 | 31 days ago | IN | 0.10804053 ETH | 0.00031325 | ||||
Transfer | 21240397 | 31 days ago | IN | 0.03981949 ETH | 0.00029138 | ||||
Transfer | 21235072 | 31 days ago | IN | 0.01629831 ETH | 0.00028153 | ||||
Transfer | 21218430 | 34 days ago | IN | 0.24056219 ETH | 0.00025289 | ||||
Transfer | 21192058 | 37 days ago | IN | 0.04739524 ETH | 0.0003958 | ||||
Transfer | 21177390 | 39 days ago | IN | 0.05390342 ETH | 0.00045075 | ||||
Transfer | 21175679 | 40 days ago | IN | 0.06387529 ETH | 0.00069331 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20595453 | 121 days ago | 33 ETH | ||||
19885901 | 220 days ago | 30.41133792 ETH | ||||
19526935 | 270 days ago | 0.05801622 ETH | ||||
19271061 | 306 days ago | 30.54565571 ETH | ||||
19100761 | 330 days ago | 0.0180773 ETH | ||||
19099344 | 330 days ago | 0.03312469 ETH | ||||
18971747 | 348 days ago | 0.0270577 ETH | ||||
18791789 | 373 days ago | 32 ETH | ||||
18596334 | 401 days ago | 0.03735884 ETH | ||||
18385724 | 430 days ago | 0.10195693 ETH | ||||
18274910 | 446 days ago | 0.01058219 ETH | ||||
18205857 | 455 days ago | 31.7430954 ETH | ||||
17884693 | 500 days ago | 0.00116528 ETH | ||||
17884693 | 500 days ago | 0.00456407 ETH | ||||
17631131 | 536 days ago | 32 ETH | ||||
17593806 | 541 days ago | 0.00242286 ETH | ||||
17469306 | 558 days ago | 0.00030056 ETH | ||||
17452971 | 561 days ago | 0.00091063 ETH | ||||
17450910 | 561 days ago | 0.00048496 ETH | ||||
17450910 | 561 days ago | 0.00104 ETH | ||||
17450910 | 561 days ago | 0.00203796 ETH | ||||
17374685 | 572 days ago | 0.0000149 ETH | ||||
17345523 | 576 days ago | 0.00139723 ETH | ||||
17345523 | 576 days ago | 0.004405 ETH | ||||
17246621 | 590 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 | 130 days ago | 127 | 0.00 TH | 14,228,184 (47.43%) | 0.044085222949242402 ETH |
20454072 | 140 days ago | 48 | 0.00 TH | 29,971,675 (99.91%) | 0.024732236456054389 ETH |
19618034 | 257 days ago | 185 | 0.00 TH | 29,087,655 (96.96%) | 0.046153581825773865 ETH |
19526935 | 270 days ago | 453 | 0.00 TH | 29,812,752 (99.38%) | 0.093945614087270457 ETH |
19407064 | 287 days ago | 146 | 0.00 TH | 13,016,922 (43.39%) | 0.028424531775342512 ETH |
19102554 | 330 days ago | 372 | 0.00 TH | 29,991,394 (99.97%) | 0.056162367046196158 ETH |
18944225 | 352 days ago | 144 | 0.00 TH | 10,326,873 (34.42%) | 0.014633525978942365 ETH |
18864814 | 363 days ago | 157 | 0.00 TH | 16,064,098 (53.55%) | 0.025009763456499363 ETH |
18629607 | 396 days ago | 133 | 0.00 TH | 10,990,852 (36.64%) | 0.262669847670968588 ETH |
18517420 | 412 days ago | 134 | 0.00 TH | 14,359,682 (47.87%) | 0.026288399432475119 ETH |
18512935 | 412 days ago | 153 | 0.00 TH | 16,930,770 (56.44%) | 0.039902488635899606 ETH |
18382724 | 430 days ago | 164 | 0.00 TH | 14,370,895 (47.90%) | 0.017752766961040689 ETH |
18133709 | 465 days ago | 267 | 0.00 TH | 18,195,753 (60.65%) | 0.115644290078638078 ETH |
18022241 | 481 days ago | 114 | 0.00 TH | 10,034,646 (33.45%) | 0.026548279633756931 ETH |
18017027 | 482 days ago | 100 | 0.00 TH | 12,446,780 (41.49%) | 0.063111322678388165 ETH |
18012775 | 482 days ago | 127 | 0.00 TH | 15,856,574 (52.86%) | 0.024471476865250152 ETH |
17976568 | 487 days ago | 129 | 0.00 TH | 15,327,774 (51.09%) | 0.031581180309444723 ETH |
17927077 | 494 days ago | 123 | 0.00 TH | 13,551,299 (45.17%) | 0.026078058916882857 ETH |
17913695 | 496 days ago | 164 | 0.00 TH | 16,772,193 (55.91%) | 0.111195418766938794 ETH |
17884693 | 500 days ago | 217 | 0.00 TH | 19,591,626 (65.31%) | 0.045716685754564299 ETH |
17750776 | 519 days ago | 96 | 0.00 TH | 10,193,292 (33.98%) | 0.060016823866417234 ETH |
17742492 | 520 days ago | 187 | 0.00 TH | 19,662,040 (65.54%) | 0.067882777484295307 ETH |
17733071 | 521 days ago | 110 | 0.00 TH | 22,116,655 (73.72%) | 0.027177467586815521 ETH |
17705333 | 525 days ago | 134 | 0.00 TH | 11,682,953 (38.94%) | 0.024484860097846663 ETH |
17690683 | 527 days ago | 114 | 0.00 TH | 11,923,545 (39.75%) | 0.021384943550313191 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 9942 withdrawals (1,358.746123115 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
2784 | 21446429 | 2 days ago | 0.019497311 ETH |
2783 | 21446429 | 2 days ago | 0.019517963 ETH |
2782 | 21446429 | 2 days ago | 0.019535376 ETH |
2781 | 21446429 | 2 days ago | 0.01952192 ETH |
2780 | 21446429 | 2 days ago | 0.019540178 ETH |
2779 | 21446429 | 2 days ago | 0.019549237 ETH |
2778 | 21446429 | 2 days ago | 0.019521725 ETH |
2777 | 21446428 | 2 days ago | 0.019536845 ETH |
2775 | 21446428 | 2 days ago | 0.019574485 ETH |
2774 | 21446428 | 2 days ago | 0.019561394 ETH |
2773 | 21446428 | 2 days ago | 0.019526427 ETH |
2772 | 21446428 | 2 days ago | 0.019508579 ETH |
2771 | 21446428 | 2 days ago | 0.065361583 ETH |
2770 | 21446428 | 2 days ago | 0.019506617 ETH |
2769 | 21446428 | 2 days ago | 0.019535742 ETH |
2768 | 21446428 | 2 days ago | 0.01954936 ETH |
2767 | 21446428 | 2 days ago | 0.019481364 ETH |
2766 | 21446428 | 2 days ago | 0.019546013 ETH |
2765 | 21446428 | 2 days ago | 0.019526535 ETH |
2764 | 21446428 | 2 days ago | 0.019538549 ETH |
2763 | 21446428 | 2 days ago | 0.019543594 ETH |
2762 | 21446428 | 2 days ago | 0.019522957 ETH |
2761 | 21446427 | 2 days ago | 0.019521898 ETH |
2760 | 21446427 | 2 days ago | 0.019556372 ETH |
2759 | 21446427 | 2 days ago | 0.019515687 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,310.23 | 745.0034 | $2,466,130.46 |
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.