Overview
ETH Balance
2.570947783053887534 ETH
Eth Value
$9,443.54 (@ $3,673.17/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 230 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Exec Transaction | 21308746 | 17 days ago | IN | 0 ETH | 0.00167957 | ||||
Transfer | 21296220 | 19 days ago | IN | 0.11184644 ETH | 0.00027849 | ||||
Transfer | 21274662 | 22 days ago | IN | 0.06148075 ETH | 0.00027549 | ||||
Transfer | 21176283 | 35 days ago | IN | 0.06532734 ETH | 0.00071347 | ||||
Transfer | 21175516 | 35 days ago | IN | 0.12125759 ETH | 0.00094537 | ||||
Exec Transaction | 21165396 | 37 days ago | IN | 0 ETH | 0.00225532 | ||||
Exec Transaction | 21165386 | 37 days ago | IN | 0 ETH | 0.00366184 | ||||
Exec Transaction | 21165350 | 37 days ago | IN | 0 ETH | 0.00212556 | ||||
Transfer | 21096087 | 46 days ago | IN | 0.06977151 ETH | 0.00011954 | ||||
Exec Transaction | 21092242 | 47 days ago | IN | 0 ETH | 0.00044622 | ||||
Transfer | 21071605 | 50 days ago | IN | 0.08814836 ETH | 0.00037919 | ||||
Transfer | 21026059 | 56 days ago | IN | 0.05178179 ETH | 0.00015542 | ||||
Transfer | 20989498 | 61 days ago | IN | 0.0519377 ETH | 0.00049986 | ||||
Transfer | 20989498 | 61 days ago | IN | 1 wei | 0.01647938 | ||||
Transfer | 20982237 | 62 days ago | IN | 0.09610103 ETH | 0.00025224 | ||||
Transfer | 20967801 | 64 days ago | IN | 0.06473149 ETH | 0.00048669 | ||||
Transfer | 20919870 | 71 days ago | IN | 0.14341428 ETH | 0.0003773 | ||||
Exec Transaction | 20870904 | 78 days ago | IN | 0 ETH | 0.00101809 | ||||
Transfer | 20864615 | 79 days ago | IN | 0.09941043 ETH | 0.00073129 | ||||
Transfer | 20842269 | 82 days ago | IN | 0.05012769 ETH | 0.00043802 | ||||
Transfer | 20836490 | 83 days ago | IN | 0.10051281 ETH | 0.00063765 | ||||
Transfer | 20763209 | 93 days ago | IN | 0.07735849 ETH | 0.00018648 | ||||
Exec Transaction | 20655425 | 108 days ago | IN | 0 ETH | 0.00004318 | ||||
Transfer | 20653060 | 108 days ago | IN | 0.0574675 ETH | 0.00001715 | ||||
Transfer | 20581863 | 118 days ago | IN | 0.05169393 ETH | 0.00002917 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21308746 | 17 days ago | 4.3283 ETH | ||||
21165350 | 37 days ago | 33.7102898 ETH | ||||
21092242 | 47 days ago | 4.9659602 ETH | ||||
20870904 | 78 days ago | 4.1044002 ETH | ||||
20655425 | 108 days ago | 5.5386502 ETH | ||||
20632096 | 111 days ago | 0.00001 ETH | ||||
20433632 | 139 days ago | 1.5028802 ETH | ||||
20262184 | 163 days ago | 0.7522501 ETH | ||||
20210828 | 170 days ago | 1.7969005 ETH | ||||
19995783 | 200 days ago | 2.34203126 ETH | ||||
19774939 | 231 days ago | 4.02444815 ETH | ||||
19585447 | 257 days ago | 0.71853017 ETH | ||||
19560419 | 261 days ago | 2.93225038 ETH | ||||
19340459 | 292 days ago | 2.17517596 ETH | ||||
19132486 | 321 days ago | 2.20928992 ETH | ||||
18912824 | 352 days ago | 2.6506648 ETH | ||||
18690804 | 383 days ago | 2.437432 ETH | ||||
18542441 | 404 days ago | 0.01 ETH | ||||
18476187 | 413 days ago | 2.06912 ETH | ||||
18334675 | 433 days ago | 172.49265 ETH | ||||
18330992 | 433 days ago | 0.02463694 ETH | ||||
18256368 | 444 days ago | 3.67856972 ETH | ||||
18041842 | 474 days ago | 3.92332428 ETH | ||||
17822057 | 505 days ago | 3.56165072 ETH | ||||
17630113 | 532 days ago | 0.04339533 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 86 blocks with 2.84 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21420884 | 38 hrs ago | 73 | 0.00 TH | 3,756,599 (12.52%) | 0.004924548884892715 ETH |
21403682 | 3 days ago | 84 | 0.00 TH | 5,492,672 (18.31%) | 0.006067922481328396 ETH |
21384625 | 6 days ago | 115 | 0.00 TH | 5,322,090 (17.74%) | 0.01390407231127904 ETH |
21371397 | 8 days ago | 103 | 0.00 TH | 7,347,389 (24.49%) | 0.012860152791819323 ETH |
21317045 | 16 days ago | 118 | 0.00 TH | 5,724,306 (19.08%) | 0.012444290530826824 ETH |
21317003 | 16 days ago | 101 | 0.00 TH | 5,481,633 (18.27%) | 0.012579919533960511 ETH |
21290121 | 19 days ago | 89 | 0.00 TH | 7,492,560 (24.98%) | 0.006277167209388752 ETH |
21258215 | 24 days ago | 144 | 0.00 TH | 9,336,714 (31.12%) | 0.008790210538423036 ETH |
21254915 | 24 days ago | 125 | 0.00 TH | 14,114,385 (47.05%) | 0.016425751645087063 ETH |
21123950 | 43 days ago | 78 | 0.00 TH | 6,480,545 (21.60%) | 0.00851639797833653 ETH |
21096547 | 46 days ago | 95 | 0.00 TH | 6,149,072 (20.50%) | 0.005744863782325169 ETH |
21078714 | 49 days ago | 104 | 0.00 TH | 6,375,934 (21.25%) | 0.010190067134170749 ETH |
21073926 | 50 days ago | 117 | 0.00 TH | 10,892,667 (36.31%) | 0.011250571436097477 ETH |
21073225 | 50 days ago | 143 | 0.00 TH | 9,330,961 (31.10%) | 0.011545259713908768 ETH |
21071126 | 50 days ago | 118 | 0.00 TH | 7,128,393 (23.76%) | 0.010827345236078749 ETH |
21038634 | 54 days ago | 89 | 0.00 TH | 5,976,581 (19.92%) | 0.006681439099624045 ETH |
21012216 | 58 days ago | 92 | 0.00 TH | 18,473,644 (61.58%) | 0.008363889782644617 ETH |
21005074 | 59 days ago | 100 | 0.00 TH | 8,467,138 (28.22%) | 0.006326974919755363 ETH |
20994781 | 61 days ago | 59 | 0.00 TH | 3,143,471 (10.48%) | 0.004111450265772038 ETH |
20989131 | 61 days ago | 107 | 0.00 TH | 21,072,224 (70.24%) | 0.02517689557331421 ETH |
20985933 | 62 days ago | 96 | 0.00 TH | 6,434,713 (21.45%) | 0.011674162026969516 ETH |
20968597 | 64 days ago | 99 | 0.00 TH | 6,880,568 (22.94%) | 0.008186400144462402 ETH |
20905272 | 73 days ago | 63 | 0.00 TH | 5,924,335 (19.75%) | 0.004530035071712124 ETH |
20892416 | 75 days ago | 88 | 0.00 TH | 6,734,819 (22.45%) | 0.006321523728366623 ETH |
20881603 | 76 days ago | 61 | 0.00 TH | 3,732,986 (12.44%) | 0.004076848363110492 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 4456 withdrawals (339.545869744 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
1339248 | 21426256 | 20 hrs ago | 0.019410123 ETH |
1339247 | 21426255 | 20 hrs ago | 0.019425756 ETH |
111907 | 21381290 | 7 days ago | 0.019507387 ETH |
90395 | 21380787 | 7 days ago | 0.019497992 ETH |
90058 | 21380781 | 7 days ago | 0.01953366 ETH |
30717 | 21379945 | 7 days ago | 0.019524172 ETH |
30125 | 21379922 | 7 days ago | 0.019505972 ETH |
30124 | 21379922 | 7 days ago | 0.019531006 ETH |
30123 | 21379922 | 7 days ago | 0.019526448 ETH |
30122 | 21379922 | 7 days ago | 0.019530523 ETH |
30121 | 21379922 | 7 days ago | 0.019540696 ETH |
30120 | 21379922 | 7 days ago | 0.019519587 ETH |
30119 | 21379922 | 7 days ago | 0.019514915 ETH |
30118 | 21379922 | 7 days ago | 0.019524093 ETH |
30117 | 21379922 | 7 days ago | 0.019506057 ETH |
30116 | 21379922 | 7 days ago | 0.019528147 ETH |
30115 | 21379922 | 7 days ago | 0.019523795 ETH |
30114 | 21379922 | 7 days ago | 0.019533476 ETH |
30113 | 21379921 | 7 days ago | 0.019508564 ETH |
30112 | 21379921 | 7 days ago | 0.019521355 ETH |
30111 | 21379921 | 7 days ago | 0.019510605 ETH |
30110 | 21379921 | 7 days ago | 0.019503801 ETH |
30109 | 21379921 | 7 days ago | 0.019535357 ETH |
30108 | 21379921 | 7 days ago | 0.019517498 ETH |
30107 | 21379921 | 7 days ago | 0.019503392 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,668.59 | 2.5709 | $9,431.76 |
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.