Overview
ETH Balance
1,021.903536584189641377 ETH
Eth Value
$3,368,265.32 (@ $3,296.07/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 8,736 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21461969 | 4 hrs ago | IN | 0.04631942 ETH | 0.00011998 | ||||
Transfer | 21461691 | 5 hrs ago | IN | 0.01439215 ETH | 0.00012686 | ||||
Transfer | 21461036 | 7 hrs ago | IN | 0.03175866 ETH | 0.00015405 | ||||
Transfer | 21460296 | 10 hrs ago | IN | 0.08274335 ETH | 0.00019551 | ||||
Transfer | 21458510 | 16 hrs ago | IN | 0.01974844 ETH | 0.00019507 | ||||
Transfer | 21458419 | 16 hrs ago | IN | 0.01792292 ETH | 0.00016555 | ||||
Transfer | 21458400 | 16 hrs ago | IN | 0.01945023 ETH | 0.00017299 | ||||
Transfer | 21456118 | 24 hrs ago | IN | 0.02047286 ETH | 0.00014133 | ||||
Transfer | 21455756 | 25 hrs ago | IN | 0.01173135 ETH | 0.0001489 | ||||
Transfer | 21454314 | 30 hrs ago | IN | 0.06540468 ETH | 0.00018506 | ||||
Transfer | 21452880 | 35 hrs ago | IN | 0.03604623 ETH | 0.00025348 | ||||
Transfer | 21451433 | 40 hrs ago | IN | 0.30239507 ETH | 0.00021333 | ||||
Transfer | 21448590 | 2 days ago | IN | 0.0411774 ETH | 0.00018287 | ||||
Transfer | 21448134 | 2 days ago | IN | 0.01623831 ETH | 0.0001866 | ||||
Transfer | 21443674 | 2 days ago | IN | 0.06963077 ETH | 0.00120294 | ||||
Transfer | 21442499 | 2 days ago | IN | 0.04933319 ETH | 0.00036408 | ||||
Transfer | 21439542 | 3 days ago | IN | 0.05446255 ETH | 0.00039859 | ||||
Transfer | 21436698 | 3 days ago | IN | 0.03549824 ETH | 0.00031523 | ||||
Transfer | 21434346 | 4 days ago | IN | 0.02919064 ETH | 0.00029402 | ||||
Transfer | 21434286 | 4 days ago | IN | 0.02293364 ETH | 0.00026947 | ||||
Transfer | 21433984 | 4 days ago | IN | 0.03421787 ETH | 0.00028927 | ||||
Exec Transaction | 21431977 | 4 days ago | IN | 0 ETH | 0.00299635 | ||||
Transfer | 21431770 | 4 days ago | IN | 0.08671164 ETH | 0.00211347 | ||||
Transfer | 21431377 | 4 days ago | IN | 0.04375301 ETH | 0.00051827 | ||||
Transfer | 21430822 | 4 days ago | IN | 0.03279657 ETH | 0.00065557 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21431977 | 4 days ago | 1,000 ETH | ||||
21368600 | 13 days ago | 0.00991656 ETH | ||||
21331796 | 18 days ago | 1,316.1001841 ETH | ||||
21322930 | 19 days ago | 2,000 ETH | ||||
21315401 | 20 days ago | 2,000 ETH | ||||
21313740 | 20 days ago | 0.00138528 ETH | ||||
21313740 | 20 days ago | 0.01598795 ETH | ||||
21272815 | 26 days ago | 2,000 ETH | ||||
21265565 | 27 days ago | 2,000 ETH | ||||
21244147 | 30 days ago | 1,000 ETH | ||||
21244134 | 30 days ago | 1,000 ETH | ||||
21230605 | 32 days ago | 1,000 ETH | ||||
21222497 | 33 days ago | 2,000 ETH | ||||
21188510 | 38 days ago | 1,000 ETH | ||||
21180200 | 39 days ago | 1,000 ETH | ||||
21172123 | 40 days ago | 1,500 ETH | ||||
21144523 | 44 days ago | 1,200 ETH | ||||
21136637 | 45 days ago | 1,200 ETH | ||||
21129127 | 46 days ago | 2,500 ETH | ||||
21116750 | 48 days ago | 1,500 ETH | ||||
21093654 | 51 days ago | 1,200 ETH | ||||
21078048 | 53 days ago | 0.0001007 ETH | ||||
21067871 | 55 days ago | 0.0000566 ETH | ||||
20966837 | 69 days ago | 0.0222 ETH | ||||
20910858 | 77 days ago | 0.0000268 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 1,293 blocks with 84.21 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21448644 | 2 days ago | 78 | 0.00 TH | 5,467,681 (18.23%) | 0.005368207777025661 ETH |
21437572 | 3 days ago | 116 | 0.00 TH | 7,248,439 (24.16%) | 0.009142993669848155 ETH |
21368600 | 13 days ago | 100 | 0.00 TH | 8,562,555 (28.54%) | 0.144118236979252705 ETH |
21363528 | 13 days ago | 121 | 0.00 TH | 5,849,040 (19.50%) | 0.009498512029124017 ETH |
21333900 | 18 days ago | 81 | 0.00 TH | 6,154,076 (20.51%) | 0.008363829749898836 ETH |
21331960 | 18 days ago | 78 | 0.00 TH | 4,959,317 (16.53%) | 0.014076048547077021 ETH |
21325689 | 19 days ago | 102 | 0.00 TH | 6,384,880 (21.28%) | 0.00677008980414013 ETH |
21313740 | 20 days ago | 166 | 0.00 TH | 10,187,338 (33.96%) | 0.035378276398940321 ETH |
21299308 | 22 days ago | 117 | 0.00 TH | 10,017,447 (33.39%) | 0.009439696972018542 ETH |
21212456 | 35 days ago | 134 | 0.00 TH | 6,791,036 (22.64%) | 0.009080199073625446 ETH |
21137636 | 45 days ago | 91 | 0.00 TH | 6,252,476 (20.84%) | 0.010581140618551793 ETH |
21106274 | 49 days ago | 74 | 0.00 TH | 5,307,172 (17.69%) | 0.002981215813495706 ETH |
21078048 | 53 days ago | 211 | 0.00 TH | 14,427,772 (48.09%) | 0.026439299726034531 ETH |
21067871 | 55 days ago | 276 | 0.00 TH | 24,710,917 (82.37%) | 0.038444630922123582 ETH |
21024544 | 61 days ago | 48 | 0.00 TH | 12,655,141 (42.18%) | 0.008231996673271633 ETH |
20966837 | 69 days ago | 85 | 0.00 TH | 8,849,099 (29.50%) | 0.112422157324997736 ETH |
20948591 | 71 days ago | 126 | 0.00 TH | 12,809,824 (42.70%) | 0.011782013732749807 ETH |
20923207 | 75 days ago | 110 | 0.00 TH | 6,276,295 (20.92%) | 0.024334515655899281 ETH |
20910858 | 77 days ago | 148 | 0.00 TH | 12,269,273 (40.90%) | 0.034218745827764154 ETH |
20908699 | 77 days ago | 74 | 0.00 TH | 5,568,697 (18.56%) | 0.005745790916586907 ETH |
20890071 | 80 days ago | 111 | 0.00 TH | 7,253,413 (24.18%) | 0.006667423702150367 ETH |
20881055 | 81 days ago | 70 | 0.00 TH | 4,452,114 (14.84%) | 0.004289813072138209 ETH |
20872830 | 82 days ago | 96 | 0.00 TH | 6,943,282 (23.14%) | 0.01074742710835275 ETH |
20755489 | 98 days ago | 111 | 0.00 TH | 8,109,842 (27.03%) | 0.014768742644981414 ETH |
20742845 | 100 days ago | 251 | 0.00 TH | 19,569,437 (65.23%) | 0.032232320632382622 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 151076 withdrawals (55,407.531322276 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
308079 | 21453008 | 34 hrs ago | 0.019341594 ETH |
308073 | 21453008 | 34 hrs ago | 0.065011853 ETH |
308072 | 21453008 | 34 hrs ago | 0.019388194 ETH |
308068 | 21453008 | 34 hrs ago | 0.019421926 ETH |
308067 | 21453008 | 34 hrs ago | 0.019415214 ETH |
308064 | 21453008 | 34 hrs ago | 0.019411884 ETH |
308061 | 21453008 | 34 hrs ago | 0.019440476 ETH |
308057 | 21453008 | 34 hrs ago | 0.019432766 ETH |
308055 | 21453007 | 34 hrs ago | 0.019336468 ETH |
308054 | 21453007 | 34 hrs ago | 0.0194815 ETH |
308052 | 21453007 | 34 hrs ago | 0.019389835 ETH |
308049 | 21453007 | 34 hrs ago | 0.019376032 ETH |
308048 | 21453007 | 34 hrs ago | 0.019425966 ETH |
308047 | 21453007 | 34 hrs ago | 0.019434031 ETH |
308045 | 21453007 | 34 hrs ago | 0.019353262 ETH |
308044 | 21453007 | 34 hrs ago | 0.019371799 ETH |
308041 | 21453007 | 34 hrs ago | 0.019302289 ETH |
308037 | 21453007 | 34 hrs ago | 0.019430677 ETH |
308034 | 21453007 | 34 hrs ago | 0.019379251 ETH |
308033 | 21453007 | 34 hrs ago | 0.019406464 ETH |
307958 | 21453002 | 34 hrs ago | 0.019367584 ETH |
307957 | 21453002 | 34 hrs ago | 0.019331799 ETH |
307955 | 21453002 | 34 hrs ago | 0.019436626 ETH |
307954 | 21453002 | 34 hrs ago | 0.019304606 ETH |
307951 | 21453002 | 34 hrs ago | 0.019442062 ETH |
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.