Overview
ETH Balance
1.120230124054975949 ETH
Eth Value
$3,793.95 (@ $3,386.76/ETH)Token Holdings
More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 1,415 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Transfer | 21444804 | 3 days ago | IN | 0.06250704 ETH | 0.00098515 | ||||
Exec Transaction | 21437457 | 4 days ago | IN | 0 ETH | 0.02143805 | ||||
Transfer | 21410245 | 8 days ago | IN | 0.02622276 ETH | 0.00027375 | ||||
Transfer | 21408271 | 8 days ago | IN | 0.02444654 ETH | 0.00025322 | ||||
Transfer | 21393438 | 10 days ago | IN | 0.02780433 ETH | 0.00030833 | ||||
Exec Transaction | 21391616 | 10 days ago | IN | 0 ETH | 0.00149806 | ||||
Transfer | 21384543 | 11 days ago | IN | 0.08389689 ETH | 0.00036125 | ||||
Transfer | 21355617 | 15 days ago | IN | 0.08070106 ETH | 0.00020913 | ||||
Exec Transaction | 21321109 | 20 days ago | IN | 0 ETH | 0.00229174 | ||||
Exec Transaction | 21321104 | 20 days ago | IN | 0 ETH | 0.0051602 | ||||
Exec Transaction | 21270822 | 27 days ago | IN | 0 ETH | 0.00155225 | ||||
Transfer | 21264700 | 28 days ago | IN | 0.04367079 ETH | 0.00031245 | ||||
Transfer | 21261808 | 29 days ago | IN | 0.01734167 ETH | 0.0002043 | ||||
Transfer | 21260942 | 29 days ago | IN | 0.10595794 ETH | 0.00017709 | ||||
Transfer | 21254436 | 30 days ago | IN | 0.04501929 ETH | 0.00022661 | ||||
Transfer | 21252116 | 30 days ago | IN | 0.06679861 ETH | 0.00047278 | ||||
Transfer | 21247348 | 31 days ago | IN | 0.01550866 ETH | 0.00030377 | ||||
Transfer | 21240398 | 32 days ago | IN | 0.1315417 ETH | 0.00029557 | ||||
Exec Transaction | 21220052 | 34 days ago | IN | 0 ETH | 0.00521879 | ||||
Exec Transaction | 21211908 | 36 days ago | IN | 0 ETH | 0.00128739 | ||||
Transfer | 21172370 | 41 days ago | IN | 0.05913943 ETH | 0.00072604 | ||||
Transfer | 21168559 | 42 days ago | IN | 0.0491491 ETH | 0.00073331 | ||||
Exec Transaction | 21162873 | 42 days ago | IN | 0 ETH | 0.00148105 | ||||
Exec Transaction | 21162860 | 42 days ago | IN | 0 ETH | 0.00734162 | ||||
Transfer | 21154520 | 44 days ago | IN | 0.03099793 ETH | 0.00017101 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 ETH | ||||
21437457 | 4 days ago | 32 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 110 blocks with 5.59 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
20434806 | 144 days ago | 107 | 0.00 TH | 6,856,492 (22.85%) | 0.021775605021555297 ETH |
20426114 | 145 days ago | 88 | 0.00 TH | 11,023,177 (36.74%) | 0.018858857692832969 ETH |
20422176 | 146 days ago | 115 | 0.00 TH | 6,570,834 (21.90%) | 0.018992886780891874 ETH |
20421237 | 146 days ago | 106 | 0.00 TH | 7,104,911 (23.68%) | 0.019125906917237873 ETH |
20415837 | 147 days ago | 82 | 0.00 TH | 6,363,483 (21.21%) | 0.006564093737185262 ETH |
20404129 | 148 days ago | 97 | 0.00 TH | 13,369,400 (44.56%) | 0.009245756893036601 ETH |
20403954 | 148 days ago | 81 | 0.00 TH | 6,421,812 (21.41%) | 0.008048017021801984 ETH |
20384474 | 151 days ago | 119 | 0.00 TH | 7,046,756 (23.49%) | 0.013967852827035808 ETH |
20377871 | 152 days ago | 106 | 0.00 TH | 8,892,495 (29.64%) | 0.00742643881702447 ETH |
20377032 | 152 days ago | 105 | 0.00 TH | 7,186,982 (23.96%) | 0.015494996888663929 ETH |
20372769 | 153 days ago | 101 | 0.00 TH | 7,088,360 (23.63%) | 0.008453595156331069 ETH |
20363388 | 154 days ago | 103 | 0.00 TH | 7,025,861 (23.42%) | 0.028273848470452511 ETH |
20353318 | 155 days ago | 83 | 0.00 TH | 22,661,342 (75.54%) | 0.006834119687698694 ETH |
20337424 | 158 days ago | 150 | 0.00 TH | 12,146,215 (40.49%) | 0.012962927294683545 ETH |
20308425 | 162 days ago | 79 | 0.00 TH | 6,501,861 (21.67%) | 0.004682670486688527 ETH |
20296937 | 163 days ago | 75 | 0.00 TH | 5,590,068 (18.63%) | 0.004670906707689328 ETH |
20243355 | 171 days ago | 104 | 0.00 TH | 8,315,353 (27.72%) | 0.006522404976390618 ETH |
20141108 | 185 days ago | 309 | 0.00 TH | 21,957,680 (73.19%) | 0.022538962325439255 ETH |
20113767 | 189 days ago | 118 | 0.00 TH | 8,182,301 (27.27%) | 0.006089941888686842 ETH |
20091183 | 192 days ago | 119 | 0.00 TH | 8,576,821 (28.59%) | 0.00899266435819744 ETH |
20084821 | 193 days ago | 54 | 0.00 TH | 3,393,081 (11.31%) | 0.008861872464465984 ETH |
20079456 | 194 days ago | 77 | 0.00 TH | 4,802,663 (16.01%) | 0.011745761900831731 ETH |
20069282 | 195 days ago | 85 | 0.00 TH | 4,380,803 (14.60%) | 0.013049245598402057 ETH |
19576102 | 264 days ago | 240 | 0.00 TH | 22,894,323 (76.31%) | 0.103406958012884877 ETH |
19506022 | 274 days ago | 156 | 0.00 TH | 15,334,890 (51.12%) | 0.217063564537898473 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 24777 withdrawals (27,812.463536616 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
844719 | 21405615 | 8 days ago | 0.019417139 ETH |
844718 | 21405615 | 8 days ago | 0.019451058 ETH |
844717 | 21405615 | 8 days ago | 0.019412545 ETH |
844716 | 21405615 | 8 days ago | 0.019405436 ETH |
844715 | 21405615 | 8 days ago | 0.019424236 ETH |
844714 | 21405615 | 8 days ago | 0.019427626 ETH |
844713 | 21405615 | 8 days ago | 0.019426673 ETH |
844712 | 21405615 | 8 days ago | 0.019437069 ETH |
844711 | 21405615 | 8 days ago | 0.019409888 ETH |
844710 | 21405615 | 8 days ago | 0.019415193 ETH |
844709 | 21405614 | 8 days ago | 0.019435832 ETH |
844708 | 21405614 | 8 days ago | 0.019432729 ETH |
844707 | 21405614 | 8 days ago | 0.019394188 ETH |
844706 | 21405614 | 8 days ago | 0.065230553 ETH |
844705 | 21405614 | 8 days ago | 0.019405783 ETH |
844704 | 21405614 | 8 days ago | 0.019400213 ETH |
844703 | 21405614 | 8 days ago | 0.019418875 ETH |
844702 | 21405614 | 8 days ago | 0.019398306 ETH |
844701 | 21405614 | 8 days ago | 0.019435507 ETH |
844700 | 21405614 | 8 days ago | 0.019461874 ETH |
844699 | 21405614 | 8 days ago | 0.01941022 ETH |
844698 | 21405614 | 8 days ago | 0.019450936 ETH |
844697 | 21405614 | 8 days ago | 0.019356237 ETH |
844696 | 21405614 | 8 days ago | 0.064741114 ETH |
844695 | 21405614 | 8 days ago | 0.01942448 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.