More Info
Private Name Tags
ContractCreator
Latest 5 from a total of 5 transactions
Latest 14 internal transactions
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
20829224 | 111 days ago | 453.73916992 ETH | ||||
20828808 | 111 days ago | 0.01 ETH | ||||
19302749 | 324 days ago | 0.0055887 ETH | ||||
18577500 | 426 days ago | 0.005 ETH | ||||
17532001 | 572 days ago | 0.00112644 ETH | ||||
17481741 | 579 days ago | 0.00043904 ETH | ||||
17466156 | 582 days ago | 0.00056042 ETH | ||||
17427873 | 587 days ago | 0.00003353 ETH | ||||
17261974 | 610 days ago | 0.00134288 ETH | ||||
17253959 | 611 days ago | 0.00171248 ETH | ||||
17065237 | 638 days ago | 0.001288 ETH | ||||
15739219 | 824 days ago | 0.00260921 ETH | ||||
15739219 | 824 days ago | 0.00438667 ETH | ||||
15277424 | 894 days ago | Contract Creation | 0 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,242 blocks with 32.65 Ether produced)
Block | Transaction | Difficulty | Gas Used | Reward | |
---|---|---|---|---|---|
21620379 | 16 hrs ago | 88 | 0.00 TH | 7,854,846 (26.18%) | 0.006069445140548408 ETH |
21618555 | 22 hrs ago | 82 | 0.00 TH | 6,877,046 (22.88%) | 0.00829436678219638 ETH |
21613000 | 41 hrs ago | 77 | 0.00 TH | 4,622,471 (15.41%) | 0.004249929332931671 ETH |
21604210 | 2 days ago | 90 | 0.00 TH | 7,635,271 (25.45%) | 0.006309931880545852 ETH |
21589406 | 5 days ago | 122 | 0.00 TH | 9,277,286 (30.92%) | 0.012548651199095559 ETH |
21582454 | 5 days ago | 80 | 0.00 TH | 6,116,527 (20.39%) | 0.006615329710289371 ETH |
21573344 | 7 days ago | 226 | 0.00 TH | 21,549,244 (71.83%) | 0.05425908112004123 ETH |
21570761 | 7 days ago | 215 | 0.00 TH | 17,872,515 (59.58%) | 0.012845318619652152 ETH |
21567603 | 8 days ago | 124 | 0.00 TH | 6,839,545 (22.80%) | 0.011348567714175693 ETH |
21565734 | 8 days ago | 88 | 0.00 TH | 5,687,972 (18.96%) | 0.014549610428805127 ETH |
21552953 | 10 days ago | 96 | 0.00 TH | 7,425,813 (24.75%) | 0.013297527898862747 ETH |
21548549 | 10 days ago | 73 | 0.00 TH | 7,174,171 (23.91%) | 0.007651913380334827 ETH |
21546560 | 10 days ago | 94 | 0.00 TH | 6,082,817 (20.28%) | 0.013341797562698677 ETH |
21545139 | 11 days ago | 96 | 0.00 TH | 7,633,083 (25.44%) | 0.023122830475328946 ETH |
21544317 | 11 days ago | 98 | 0.00 TH | 21,716,205 (72.39%) | 0.005093054327478228 ETH |
21537871 | 12 days ago | 95 | 0.00 TH | 6,551,172 (21.84%) | 0.008692242047954352 ETH |
21528916 | 13 days ago | 54 | 0.00 TH | 4,488,620 (14.96%) | 0.004538809373995646 ETH |
21524597 | 14 days ago | 91 | 0.00 TH | 5,621,000 (18.74%) | 0.015834484576691749 ETH |
21521751 | 14 days ago | 91 | 0.00 TH | 6,807,186 (22.69%) | 0.011029062557214831 ETH |
21515923 | 15 days ago | 207 | 0.00 TH | 12,407,639 (41.36%) | 0.021742620862015758 ETH |
21513005 | 15 days ago | 117 | 0.00 TH | 7,269,175 (24.23%) | 0.010157500115057462 ETH |
21494275 | 18 days ago | 76 | 0.00 TH | 6,409,465 (21.36%) | 0.006769898324228619 ETH |
21491857 | 18 days ago | 80 | 0.00 TH | 5,524,544 (18.42%) | 0.005535220173875973 ETH |
21489468 | 18 days ago | 109 | 0.00 TH | 12,245,125 (40.82%) | 0.0080395177478688 ETH |
21488339 | 19 days ago | 147 | 0.00 TH | 9,036,924 (30.12%) | 0.020846585102930089 ETH |
Loading...
Loading
Loading...
Loading
Latest 25 from a total of 3720 withdrawals (443.059370348 ETH withdrawn)
Validator Index | Block | Amount | |
---|---|---|---|
6181 | 21580122 | 6 days ago | 0.019280502 ETH |
6180 | 21580122 | 6 days ago | 0.019298947 ETH |
6179 | 21580122 | 6 days ago | 0.019287232 ETH |
6178 | 21580122 | 6 days ago | 0.019267175 ETH |
6177 | 21580122 | 6 days ago | 0.065173571 ETH |
6176 | 21580122 | 6 days ago | 0.065145363 ETH |
6175 | 21580122 | 6 days ago | 0.019300588 ETH |
6174 | 21580121 | 6 days ago | 0.019274075 ETH |
6172 | 21580121 | 6 days ago | 0.019291874 ETH |
6171 | 21580121 | 6 days ago | 0.064939862 ETH |
6170 | 21580121 | 6 days ago | 0.019260365 ETH |
6169 | 21580121 | 6 days ago | 0.019259782 ETH |
6168 | 21580121 | 6 days ago | 0.01928959 ETH |
6167 | 21580121 | 6 days ago | 0.019253357 ETH |
6166 | 21580121 | 6 days ago | 0.019298635 ETH |
6165 | 21580121 | 6 days ago | 0.01932599 ETH |
6164 | 21580121 | 6 days ago | 0.019308177 ETH |
6163 | 21580121 | 6 days ago | 0.019277611 ETH |
6162 | 21580121 | 6 days ago | 0.065124014 ETH |
6161 | 21580121 | 6 days ago | 0.019273714 ETH |
6160 | 21580121 | 6 days ago | 0.019278532 ETH |
6159 | 21580121 | 6 days ago | 0.01930294 ETH |
6158 | 21580121 | 6 days ago | 0.019239543 ETH |
6157 | 21580120 | 6 days ago | 0.065168065 ETH |
6156 | 21580120 | 6 days ago | 0.019269185 ETH |
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
ETH | Ether (ETH) | 100.00% | $3,216.23 | 21.9716 | $70,665.65 |
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.